From 2f118864f6e6cf7e5c1bc23a018c8c568f79e66f Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 24 Nov 2024 19:05:49 +0100 Subject: [PATCH 1/5] Add schema to grammar for in-editor typechecking. --- grammar.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grammar.js b/grammar.js index d50eee0..e48b781 100644 --- a/grammar.js +++ b/grammar.js @@ -1,3 +1,6 @@ +/// +// @ts-check + // Aliases that make things easier to read prec_r = prec.right; prec_l = prec.left; From fa8183dfb9cbd9770f868d8b26b961a02c5fba55 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 24 Nov 2024 18:16:06 +0100 Subject: [PATCH 2/5] Fix parsing of IDs with more than two parts --- grammar.js | 2 +- test/corpus/expressions | 45 +++++++++++++++++++++++++++-------------- 2 files changed, 31 insertions(+), 16 deletions(-) diff --git a/grammar.js b/grammar.js index e48b781..5607fb0 100644 --- a/grammar.js +++ b/grammar.js @@ -431,7 +431,7 @@ module.exports = grammar({ event_hdr: ($) => seq($.id, "(", optional($.expr_list), ")"), - id: () => /(([A-Za-z_][A-Za-z_0-9]*)?::)?[A-Za-z_][A-Za-z_0-9]*/, + id: () => /(::)?([A-Za-z_][A-Za-z_0-9]*)(::[A-Za-z_][A-Za-z_0-9]*)*/, file: ($) => /[^ \t\r\n]+/, pattern: ($) => /\/((\\\/)?[^\r\n\/]?)*\/i?/, diff --git a/test/corpus/expressions b/test/corpus/expressions index d6ece1f..d85674d 100644 --- a/test/corpus/expressions +++ b/test/corpus/expressions @@ -40,25 +40,40 @@ f(1) + f(1); (nl)) ================================================================================ -Global IDs +IDs ================================================================================ -global x: ::X; -global x: GLOBAL::X; - +a; +a01231; +a::b; +::a; +GLOBAL::a; # Legacy syntax. +Cluster::Supervisor::__init_cluster_nodes(); --- (source_file (nl) - (decl - (global_decl - (id) - (type - (id)))) + (stmt + (expr + (id))) (nl) - (decl - (global_decl - (id) - (type - (id)))) - (nl)) + (stmt + (expr + (id))) + (nl) + (stmt + (expr + (id))) + (nl) + (stmt + (expr + (id))) + (nl) + (stmt + (expr + (id))) + (minor_comment) + (nl) + (stmt + (expr + (id)))) From e09ed0e2a065faeaa6d9efa9f9811613a78d9ff5 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 24 Nov 2024 18:35:47 +0100 Subject: [PATCH 3/5] Add parsing for record redefs removing field attributes --- grammar.js | 12 ++++++------ test/corpus/statements | 31 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 6 deletions(-) diff --git a/grammar.js b/grammar.js index 5607fb0..d1dca9d 100644 --- a/grammar.js +++ b/grammar.js @@ -89,12 +89,10 @@ module.exports = grammar({ seq( "redef", "record", - $.id, - "+=", - "{", - repeat($.type_spec), - "}", - optional($.attr_list), + choice( + seq($.id, "+=", "{", repeat($.type_spec), "}", optional($.attr_list)), + seq($.expr, "-=", "{", $.attr_list, "}"), + ), ";", ), type_decl: ($) => @@ -483,6 +481,8 @@ module.exports = grammar({ nl: ($) => /\r?\n/, }, + conflicts: ($) => [[$.expr, $.redef_record_decl]], + extras: ($) => [ /[ \t]+/, $.nl, diff --git a/test/corpus/statements b/test/corpus/statements index 078a5b0..a071aa5 100644 --- a/test/corpus/statements +++ b/test/corpus/statements @@ -31,3 +31,34 @@ assert 1 == 1; (constant (integer))))) (nl)) + +================================================================================ +Redef record +================================================================================ + +redef record Foo += { foo: Info &optional; }; +redef record Conn::Info$ip_proto -= { &log }; + +-------------------------------------------------------------------------------- + +(source_file + (nl) + (decl + (redef_record_decl + (id) + (type_spec + (id) + (type + (id)) + (attr_list + (attr))))) + (nl) + (decl + (redef_record_decl + (expr + (expr + (id)) + (id)) + (attr_list + (attr)))) + (nl)) From f9ad01862302398a0bdc50c61ba9afe21b586432 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 24 Nov 2024 19:03:49 +0100 Subject: [PATCH 4/5] Add support for parsing `@pragma` constructs This follows the approach of existing preprocessor constructs in that we do not allow them everywhere (e.g., by adding them to `extras`), but only if they surround fully parseable constructs like full statements. --- grammar.js | 4 ++++ test/corpus/preproc | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 test/corpus/preproc diff --git a/grammar.js b/grammar.js index d1dca9d..ebbd8f2 100644 --- a/grammar.js +++ b/grammar.js @@ -422,8 +422,12 @@ module.exports = grammar({ seq("@ifndef", "(", $.id, ")"), "@endif", "@else", + $.pragma, ), + pragma: () => + seq(token("@pragma"), choice("push", "pop"), /[A-Za-z0-9][A-Za-z0-9\-]*/), + // These directives return strings. string_directive: ($) => choice("@DIR", "@FILENAME"), diff --git a/test/corpus/preproc b/test/corpus/preproc new file mode 100644 index 0000000..438c430 --- /dev/null +++ b/test/corpus/preproc @@ -0,0 +1,45 @@ +================================================================================ +Pragma +================================================================================ + +event run_sync_hook() { + hook Telemetry::sync(); +@pragma push ignore-deprecations + schedule sync_interval { run_sync_hook() }; +@pragma pop ignore-deprecations +} + +-------------------------------------------------------------------------------- + +(source_file + (nl) + (decl + (func_decl + (func_hdr + (event + (id) + (func_params))) + (func_body + (nl) + (stmt_list + (stmt + (expr + (expr + (id)))) + (nl) + (stmt + (preproc_directive + (pragma))) + (nl) + (stmt + (expr + (expr + (id)) + (event_hdr + (id)))) + (nl) + (stmt + (preproc_directive + (pragma)))) + (nl)))) + (nl)) From a2d079d7c7ab6431f3106a99a5dd93c5ad973bd0 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Sun, 24 Nov 2024 18:17:15 +0100 Subject: [PATCH 5/5] Regenerate parser --- src/grammar.json | 129 +- src/node-types.json | 25 + src/parser.c | 178559 +++++++++++++++++++++-------------------- 3 files changed, 90678 insertions(+), 88035 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index b52c329..c94d316 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -406,38 +406,73 @@ "type": "STRING", "value": "record" }, - { - "type": "SYMBOL", - "name": "id" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_spec" - } - }, - { - "type": "STRING", - "value": "}" - }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "attr_list" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "id" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "type_spec" + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attr_list" + }, + { + "type": "BLANK" + } + ] + } + ] }, { - "type": "BLANK" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expr" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "attr_list" + }, + { + "type": "STRING", + "value": "}" + } + ] } ] }, @@ -4281,6 +4316,39 @@ { "type": "STRING", "value": "@else" + }, + { + "type": "SYMBOL", + "name": "pragma" + } + ] + }, + "pragma": { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "@pragma" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "push" + }, + { + "type": "STRING", + "value": "pop" + } + ] + }, + { + "type": "PATTERN", + "value": "[A-Za-z0-9][A-Za-z0-9\\-]*" } ] }, @@ -4328,7 +4396,7 @@ }, "id": { "type": "PATTERN", - "value": "(([A-Za-z_][A-Za-z_0-9]*)?::)?[A-Za-z_][A-Za-z_0-9]*" + "value": "(::)?([A-Za-z_][A-Za-z_0-9]*)(::[A-Za-z_][A-Za-z_0-9]*)*" }, "file": { "type": "PATTERN", @@ -4452,7 +4520,12 @@ "name": "minor_comment" } ], - "conflicts": [], + "conflicts": [ + [ + "expr", + "redef_record_decl" + ] + ], "precedences": [], "externals": [], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 19cc73c..a66b6d7 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -738,6 +738,11 @@ ] } }, + { + "type": "pragma", + "named": true, + "fields": {} + }, { "type": "preproc_directive", "named": true, @@ -758,6 +763,10 @@ "type": "id", "named": true }, + { + "type": "pragma", + "named": true + }, { "type": "string", "named": true @@ -823,6 +832,10 @@ "type": "attr_list", "named": true }, + { + "type": "expr", + "named": true + }, { "type": "id", "named": true @@ -1276,6 +1289,10 @@ "type": "@load-sigs", "named": false }, + { + "type": "@pragma", + "named": false + }, { "type": "@prefixes", "named": false @@ -1492,6 +1509,10 @@ "type": "pattern", "named": false }, + { + "type": "pop", + "named": false + }, { "type": "port", "named": true @@ -1504,6 +1525,10 @@ "type": "print", "named": false }, + { + "type": "push", + "named": false + }, { "type": "record", "named": false diff --git a/src/parser.c b/src/parser.c index d0576e4..5a15b70 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2840 -#define LARGE_STATE_COUNT 809 -#define SYMBOL_COUNT 206 +#define STATE_COUNT 2890 +#define LARGE_STATE_COUNT 824 +#define SYMBOL_COUNT 211 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 146 +#define TOKEN_COUNT 150 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 12 @@ -37,59 +37,59 @@ enum ts_symbol_identifiers { anon_sym_enum = 11, anon_sym_PLUS_EQ = 12, anon_sym_record = 13, - anon_sym_type = 14, - anon_sym_print = 15, - anon_sym_event = 16, - anon_sym_if = 17, - anon_sym_LPAREN = 18, - anon_sym_RPAREN = 19, - anon_sym_else = 20, - anon_sym_switch = 21, - anon_sym_for = 22, - anon_sym_COMMA = 23, - anon_sym_in = 24, - anon_sym_LBRACK = 25, - anon_sym_RBRACK = 26, - anon_sym_while = 27, - anon_sym_next = 28, - anon_sym_break = 29, - anon_sym_fallthrough = 30, - anon_sym_return = 31, - anon_sym_add = 32, - anon_sym_delete = 33, - anon_sym_local = 34, - anon_sym_when = 35, - anon_sym_timeout = 36, - anon_sym_EQ = 37, - anon_sym_assert = 38, - anon_sym_case = 39, - anon_sym_default = 40, - anon_sym_as = 41, - anon_sym_addr = 42, - anon_sym_any = 43, - anon_sym_bool = 44, - anon_sym_count = 45, - anon_sym_double = 46, - anon_sym_int = 47, - anon_sym_interval = 48, - anon_sym_string = 49, - anon_sym_subnet = 50, - anon_sym_pattern = 51, - anon_sym_port = 52, - anon_sym_table = 53, - anon_sym_of = 54, - anon_sym_set = 55, - anon_sym_time = 56, - anon_sym_timer = 57, - anon_sym_union = 58, - anon_sym_list = 59, - anon_sym_vector = 60, - anon_sym_function = 61, - anon_sym_hook = 62, - anon_sym_file = 63, - anon_sym_opaque = 64, - anon_sym_AMPdeprecated = 65, - anon_sym_DASH_EQ = 66, + anon_sym_DASH_EQ = 14, + anon_sym_type = 15, + anon_sym_print = 16, + anon_sym_event = 17, + anon_sym_if = 18, + anon_sym_LPAREN = 19, + anon_sym_RPAREN = 20, + anon_sym_else = 21, + anon_sym_switch = 22, + anon_sym_for = 23, + anon_sym_COMMA = 24, + anon_sym_in = 25, + anon_sym_LBRACK = 26, + anon_sym_RBRACK = 27, + anon_sym_while = 28, + anon_sym_next = 29, + anon_sym_break = 30, + anon_sym_fallthrough = 31, + anon_sym_return = 32, + anon_sym_add = 33, + anon_sym_delete = 34, + anon_sym_local = 35, + anon_sym_when = 36, + anon_sym_timeout = 37, + anon_sym_EQ = 38, + anon_sym_assert = 39, + anon_sym_case = 40, + anon_sym_default = 41, + anon_sym_as = 42, + anon_sym_addr = 43, + anon_sym_any = 44, + anon_sym_bool = 45, + anon_sym_count = 46, + anon_sym_double = 47, + anon_sym_int = 48, + anon_sym_interval = 49, + anon_sym_string = 50, + anon_sym_subnet = 51, + anon_sym_pattern = 52, + anon_sym_port = 53, + anon_sym_table = 54, + anon_sym_of = 55, + anon_sym_set = 56, + anon_sym_time = 57, + anon_sym_timer = 58, + anon_sym_union = 59, + anon_sym_list = 60, + anon_sym_vector = 61, + anon_sym_function = 62, + anon_sym_hook = 63, + anon_sym_file = 64, + anon_sym_opaque = 65, + anon_sym_AMPdeprecated = 66, anon_sym_AMPbroker_allow_complex_type = 67, anon_sym_AMPerror_handler = 68, anon_sym_AMPis_assigned = 69, @@ -151,84 +151,89 @@ enum ts_symbol_identifiers { anon_sym_ATifndef = 125, anon_sym_ATendif = 126, anon_sym_ATelse = 127, - anon_sym_ATDIR = 128, - anon_sym_ATFILENAME = 129, - sym_id = 130, - sym_file = 131, - sym_pattern = 132, - sym_ipv6 = 133, - sym_ipv4 = 134, - sym_port = 135, - sym_floatp = 136, - sym_hex = 137, - sym_time_unit = 138, - sym_hostname = 139, - aux_sym_string_token1 = 140, - sym_zeekygen_head_comment = 141, - sym_zeekygen_prev_comment = 142, - sym_zeekygen_next_comment = 143, - sym_minor_comment = 144, - sym_nl = 145, - sym_source_file = 146, - sym_decl = 147, - sym_module_decl = 148, - sym_export_decl = 149, - sym_global_decl = 150, - sym_option_decl = 151, - sym_const_decl = 152, - sym_redef_decl = 153, - sym_redef_enum_decl = 154, - sym_redef_record_decl = 155, - sym_type_decl = 156, - sym_func_decl = 157, - sym_stmt = 158, - sym_stmt_list = 159, - sym_case_list = 160, - sym_case_type_list = 161, - sym_assert_msg = 162, - sym_type = 163, - sym_enum_body = 164, - sym_enum_body_elem = 165, - sym_deprecated = 166, - sym_func_params = 167, - sym_formal_args = 168, - sym_formal_arg = 169, - sym_type_spec = 170, - sym_initializer = 171, - sym_init_class = 172, - sym_attr_list = 173, - sym_attr = 174, - sym_expr = 175, - sym_expr_list = 176, - sym_constant = 177, - sym_func_hdr = 178, - sym_func = 179, - sym_hook = 180, - sym_event = 181, - sym_func_body = 182, - sym_index_slice = 183, - sym_begin_lambda = 184, - sym_capture_list = 185, - sym_capture = 186, - sym_preproc_directive = 187, - sym_string_directive = 188, - sym_event_hdr = 189, - sym_integer = 190, - sym_interval = 191, - sym_string = 192, - aux_sym_source_file_repeat1 = 193, - aux_sym_source_file_repeat2 = 194, - aux_sym_redef_record_decl_repeat1 = 195, - aux_sym_func_decl_repeat1 = 196, - aux_sym_stmt_repeat1 = 197, - aux_sym_case_list_repeat1 = 198, - aux_sym_case_type_list_repeat1 = 199, - aux_sym_type_repeat1 = 200, - aux_sym_enum_body_repeat1 = 201, - aux_sym_formal_args_repeat1 = 202, - aux_sym_attr_list_repeat1 = 203, - aux_sym_expr_list_repeat1 = 204, - aux_sym_capture_list_repeat1 = 205, + anon_sym_ATpragma = 128, + anon_sym_push = 129, + anon_sym_pop = 130, + aux_sym_pragma_token1 = 131, + anon_sym_ATDIR = 132, + anon_sym_ATFILENAME = 133, + sym_id = 134, + sym_file = 135, + sym_pattern = 136, + sym_ipv6 = 137, + sym_ipv4 = 138, + sym_port = 139, + sym_floatp = 140, + sym_hex = 141, + sym_time_unit = 142, + sym_hostname = 143, + aux_sym_string_token1 = 144, + sym_zeekygen_head_comment = 145, + sym_zeekygen_prev_comment = 146, + sym_zeekygen_next_comment = 147, + sym_minor_comment = 148, + sym_nl = 149, + sym_source_file = 150, + sym_decl = 151, + sym_module_decl = 152, + sym_export_decl = 153, + sym_global_decl = 154, + sym_option_decl = 155, + sym_const_decl = 156, + sym_redef_decl = 157, + sym_redef_enum_decl = 158, + sym_redef_record_decl = 159, + sym_type_decl = 160, + sym_func_decl = 161, + sym_stmt = 162, + sym_stmt_list = 163, + sym_case_list = 164, + sym_case_type_list = 165, + sym_assert_msg = 166, + sym_type = 167, + sym_enum_body = 168, + sym_enum_body_elem = 169, + sym_deprecated = 170, + sym_func_params = 171, + sym_formal_args = 172, + sym_formal_arg = 173, + sym_type_spec = 174, + sym_initializer = 175, + sym_init_class = 176, + sym_attr_list = 177, + sym_attr = 178, + sym_expr = 179, + sym_expr_list = 180, + sym_constant = 181, + sym_func_hdr = 182, + sym_func = 183, + sym_hook = 184, + sym_event = 185, + sym_func_body = 186, + sym_index_slice = 187, + sym_begin_lambda = 188, + sym_capture_list = 189, + sym_capture = 190, + sym_preproc_directive = 191, + sym_pragma = 192, + sym_string_directive = 193, + sym_event_hdr = 194, + sym_integer = 195, + sym_interval = 196, + sym_string = 197, + aux_sym_source_file_repeat1 = 198, + aux_sym_source_file_repeat2 = 199, + aux_sym_redef_record_decl_repeat1 = 200, + aux_sym_func_decl_repeat1 = 201, + aux_sym_stmt_repeat1 = 202, + aux_sym_case_list_repeat1 = 203, + aux_sym_case_type_list_repeat1 = 204, + aux_sym_type_repeat1 = 205, + aux_sym_enum_body_repeat1 = 206, + aux_sym_formal_args_repeat1 = 207, + aux_sym_attr_list_repeat1 = 208, + aux_sym_expr_list_repeat1 = 209, + aux_sym_capture_list_repeat1 = 210, }; static const char * const ts_symbol_names[] = { @@ -246,6 +251,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_enum] = "enum", [anon_sym_PLUS_EQ] = "+=", [anon_sym_record] = "record", + [anon_sym_DASH_EQ] = "-=", [anon_sym_type] = "type", [anon_sym_print] = "print", [anon_sym_event] = "event", @@ -298,7 +304,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_file] = "file", [anon_sym_opaque] = "opaque", [anon_sym_AMPdeprecated] = "&deprecated", - [anon_sym_DASH_EQ] = "-=", [anon_sym_AMPbroker_allow_complex_type] = "&broker_allow_complex_type", [anon_sym_AMPerror_handler] = "&error_handler", [anon_sym_AMPis_assigned] = "&is_assigned", @@ -360,6 +365,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_ATifndef] = "@ifndef", [anon_sym_ATendif] = "@endif", [anon_sym_ATelse] = "@else", + [anon_sym_ATpragma] = "@pragma", + [anon_sym_push] = "push", + [anon_sym_pop] = "pop", + [aux_sym_pragma_token1] = "pragma_token1", [anon_sym_ATDIR] = "@DIR", [anon_sym_ATFILENAME] = "@FILENAME", [sym_id] = "id", @@ -420,6 +429,7 @@ static const char * const ts_symbol_names[] = { [sym_capture_list] = "capture_list", [sym_capture] = "capture", [sym_preproc_directive] = "preproc_directive", + [sym_pragma] = "pragma", [sym_string_directive] = "string_directive", [sym_event_hdr] = "event_hdr", [sym_integer] = "integer", @@ -455,6 +465,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_enum] = anon_sym_enum, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_record] = anon_sym_record, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_type] = anon_sym_type, [anon_sym_print] = anon_sym_print, [anon_sym_event] = anon_sym_event, @@ -507,7 +518,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_file] = anon_sym_file, [anon_sym_opaque] = anon_sym_opaque, [anon_sym_AMPdeprecated] = anon_sym_AMPdeprecated, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, [anon_sym_AMPbroker_allow_complex_type] = anon_sym_AMPbroker_allow_complex_type, [anon_sym_AMPerror_handler] = anon_sym_AMPerror_handler, [anon_sym_AMPis_assigned] = anon_sym_AMPis_assigned, @@ -569,6 +579,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_ATifndef] = anon_sym_ATifndef, [anon_sym_ATendif] = anon_sym_ATendif, [anon_sym_ATelse] = anon_sym_ATelse, + [anon_sym_ATpragma] = anon_sym_ATpragma, + [anon_sym_push] = anon_sym_push, + [anon_sym_pop] = anon_sym_pop, + [aux_sym_pragma_token1] = aux_sym_pragma_token1, [anon_sym_ATDIR] = anon_sym_ATDIR, [anon_sym_ATFILENAME] = anon_sym_ATFILENAME, [sym_id] = sym_id, @@ -629,6 +643,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_capture_list] = sym_capture_list, [sym_capture] = sym_capture, [sym_preproc_directive] = sym_preproc_directive, + [sym_pragma] = sym_pragma, [sym_string_directive] = sym_string_directive, [sym_event_hdr] = sym_event_hdr, [sym_integer] = sym_integer, @@ -706,6 +721,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_type] = { .visible = true, .named = false, @@ -914,10 +933,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, [anon_sym_AMPbroker_allow_complex_type] = { .visible = true, .named = false, @@ -1162,6 +1177,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_ATpragma] = { + .visible = true, + .named = false, + }, + [anon_sym_push] = { + .visible = true, + .named = false, + }, + [anon_sym_pop] = { + .visible = true, + .named = false, + }, + [aux_sym_pragma_token1] = { + .visible = false, + .named = false, + }, [anon_sym_ATDIR] = { .visible = true, .named = false, @@ -1402,6 +1433,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_pragma] = { + .visible = true, + .named = true, + }, [sym_string_directive] = { .visible = true, .named = true, @@ -1491,11 +1526,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 2, + [6] = 3, [7] = 7, - [8] = 7, + [8] = 8, [9] = 7, - [10] = 10, + [10] = 7, [11] = 7, [12] = 7, [13] = 7, @@ -1509,280 +1544,280 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [21] = 21, [22] = 22, [23] = 23, - [24] = 21, - [25] = 25, - [26] = 21, - [27] = 21, - [28] = 21, - [29] = 21, - [30] = 21, - [31] = 21, - [32] = 21, - [33] = 33, - [34] = 21, - [35] = 21, - [36] = 21, - [37] = 21, + [24] = 23, + [25] = 23, + [26] = 23, + [27] = 23, + [28] = 23, + [29] = 23, + [30] = 23, + [31] = 23, + [32] = 23, + [33] = 23, + [34] = 23, + [35] = 23, + [36] = 36, + [37] = 37, [38] = 38, [39] = 39, [40] = 40, [41] = 41, - [42] = 42, + [42] = 40, [43] = 43, [44] = 44, - [45] = 40, - [46] = 46, - [47] = 43, - [48] = 44, - [49] = 40, - [50] = 50, - [51] = 43, - [52] = 44, - [53] = 40, - [54] = 54, + [45] = 41, + [46] = 43, + [47] = 44, + [48] = 43, + [49] = 44, + [50] = 41, + [51] = 41, + [52] = 43, + [53] = 44, + [54] = 41, [55] = 43, [56] = 44, - [57] = 40, - [58] = 58, - [59] = 43, - [60] = 40, - [61] = 40, - [62] = 62, - [63] = 43, - [64] = 44, - [65] = 40, - [66] = 66, + [57] = 41, + [58] = 43, + [59] = 44, + [60] = 41, + [61] = 43, + [62] = 44, + [63] = 41, + [64] = 43, + [65] = 44, + [66] = 41, [67] = 43, [68] = 44, - [69] = 40, - [70] = 42, - [71] = 43, - [72] = 44, + [69] = 41, + [70] = 43, + [71] = 44, + [72] = 41, [73] = 43, [74] = 44, - [75] = 40, - [76] = 42, - [77] = 43, - [78] = 44, - [79] = 40, - [80] = 43, - [81] = 43, - [82] = 44, - [83] = 40, - [84] = 44, - [85] = 44, + [75] = 41, + [76] = 43, + [77] = 44, + [78] = 40, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 38, + [83] = 38, + [84] = 84, + [85] = 85, [86] = 86, - [87] = 86, - [88] = 88, + [87] = 87, + [88] = 39, [89] = 89, - [90] = 89, - [91] = 86, - [92] = 89, - [93] = 86, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, [94] = 94, - [95] = 39, + [95] = 95, [96] = 96, - [97] = 38, - [98] = 89, - [99] = 86, - [100] = 89, - [101] = 86, - [102] = 89, + [97] = 97, + [98] = 98, + [99] = 95, + [100] = 92, + [101] = 93, + [102] = 94, [103] = 103, - [104] = 89, - [105] = 86, - [106] = 106, + [104] = 96, + [105] = 97, + [106] = 98, [107] = 107, - [108] = 89, - [109] = 86, - [110] = 89, - [111] = 88, - [112] = 89, - [113] = 106, - [114] = 86, - [115] = 89, - [116] = 86, - [117] = 89, - [118] = 86, - [119] = 103, - [120] = 38, - [121] = 107, - [122] = 122, - [123] = 86, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 125, - [131] = 126, - [132] = 128, - [133] = 129, - [134] = 124, - [135] = 135, - [136] = 135, - [137] = 129, - [138] = 124, - [139] = 129, - [140] = 124, - [141] = 129, - [142] = 124, - [143] = 129, - [144] = 124, - [145] = 129, - [146] = 124, - [147] = 129, - [148] = 124, - [149] = 129, - [150] = 124, - [151] = 129, - [152] = 124, - [153] = 129, - [154] = 124, - [155] = 129, - [156] = 124, + [108] = 92, + [109] = 93, + [110] = 94, + [111] = 95, + [112] = 96, + [113] = 97, + [114] = 98, + [115] = 96, + [116] = 92, + [117] = 93, + [118] = 94, + [119] = 95, + [120] = 96, + [121] = 97, + [122] = 98, + [123] = 123, + [124] = 92, + [125] = 93, + [126] = 94, + [127] = 95, + [128] = 96, + [129] = 97, + [130] = 98, + [131] = 97, + [132] = 92, + [133] = 93, + [134] = 94, + [135] = 95, + [136] = 96, + [137] = 97, + [138] = 98, + [139] = 92, + [140] = 93, + [141] = 94, + [142] = 95, + [143] = 96, + [144] = 97, + [145] = 98, + [146] = 98, + [147] = 147, + [148] = 148, + [149] = 107, + [150] = 150, + [151] = 151, + [152] = 123, + [153] = 151, + [154] = 154, + [155] = 155, + [156] = 91, [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 161, - [162] = 161, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 158, - [167] = 159, - [168] = 160, - [169] = 158, - [170] = 161, - [171] = 163, - [172] = 164, - [173] = 165, - [174] = 158, - [175] = 159, - [176] = 160, - [177] = 177, - [178] = 161, - [179] = 163, - [180] = 164, - [181] = 165, - [182] = 158, - [183] = 159, - [184] = 160, - [185] = 161, - [186] = 163, - [187] = 164, - [188] = 165, - [189] = 158, - [190] = 159, - [191] = 160, - [192] = 161, - [193] = 163, - [194] = 164, - [195] = 165, - [196] = 158, - [197] = 159, - [198] = 160, - [199] = 161, - [200] = 163, - [201] = 164, - [202] = 165, - [203] = 158, - [204] = 159, - [205] = 160, - [206] = 157, - [207] = 159, - [208] = 161, - [209] = 163, - [210] = 210, - [211] = 164, - [212] = 177, - [213] = 165, - [214] = 157, - [215] = 158, - [216] = 216, - [217] = 159, - [218] = 163, - [219] = 210, - [220] = 160, - [221] = 177, - [222] = 160, - [223] = 157, - [224] = 216, - [225] = 164, - [226] = 216, - [227] = 210, - [228] = 161, - [229] = 177, - [230] = 163, - [231] = 157, - [232] = 165, - [233] = 165, - [234] = 210, - [235] = 164, - [236] = 177, - [237] = 165, + [158] = 150, + [159] = 123, + [160] = 154, + [161] = 155, + [162] = 91, + [163] = 157, + [164] = 154, + [165] = 92, + [166] = 92, + [167] = 150, + [168] = 123, + [169] = 154, + [170] = 155, + [171] = 91, + [172] = 157, + [173] = 93, + [174] = 94, + [175] = 155, + [176] = 150, + [177] = 123, + [178] = 154, + [179] = 155, + [180] = 91, + [181] = 157, + [182] = 95, + [183] = 150, + [184] = 96, + [185] = 150, + [186] = 123, + [187] = 154, + [188] = 155, + [189] = 91, + [190] = 157, + [191] = 97, + [192] = 98, + [193] = 147, + [194] = 150, + [195] = 123, + [196] = 154, + [197] = 93, + [198] = 92, + [199] = 93, + [200] = 94, + [201] = 150, + [202] = 123, + [203] = 154, + [204] = 95, + [205] = 96, + [206] = 97, + [207] = 98, + [208] = 150, + [209] = 123, + [210] = 154, + [211] = 148, + [212] = 94, + [213] = 92, + [214] = 93, + [215] = 150, + [216] = 123, + [217] = 154, + [218] = 94, + [219] = 95, + [220] = 96, + [221] = 97, + [222] = 150, + [223] = 123, + [224] = 154, + [225] = 98, + [226] = 157, + [227] = 92, + [228] = 93, + [229] = 150, + [230] = 123, + [231] = 94, + [232] = 95, + [233] = 96, + [234] = 97, + [235] = 154, + [236] = 155, + [237] = 91, [238] = 157, - [239] = 216, - [240] = 158, - [241] = 159, - [242] = 210, - [243] = 158, - [244] = 177, - [245] = 159, - [246] = 157, - [247] = 216, - [248] = 160, - [249] = 210, - [250] = 160, - [251] = 161, - [252] = 210, - [253] = 163, - [254] = 164, - [255] = 210, - [256] = 165, - [257] = 158, - [258] = 210, - [259] = 159, - [260] = 160, - [261] = 161, - [262] = 210, - [263] = 210, - [264] = 161, - [265] = 163, - [266] = 163, - [267] = 164, - [268] = 164, - [269] = 210, - [270] = 177, - [271] = 157, - [272] = 216, - [273] = 177, - [274] = 157, - [275] = 216, - [276] = 177, - [277] = 157, - [278] = 216, - [279] = 177, - [280] = 165, - [281] = 216, - [282] = 177, - [283] = 157, - [284] = 216, - [285] = 177, - [286] = 157, - [287] = 216, - [288] = 216, + [239] = 155, + [240] = 91, + [241] = 157, + [242] = 155, + [243] = 91, + [244] = 157, + [245] = 155, + [246] = 91, + [247] = 157, + [248] = 155, + [249] = 91, + [250] = 157, + [251] = 155, + [252] = 91, + [253] = 157, + [254] = 98, + [255] = 95, + [256] = 256, + [257] = 256, + [258] = 258, + [259] = 259, + [260] = 256, + [261] = 261, + [262] = 259, + [263] = 263, + [264] = 256, + [265] = 258, + [266] = 266, + [267] = 259, + [268] = 256, + [269] = 256, + [270] = 259, + [271] = 256, + [272] = 261, + [273] = 266, + [274] = 259, + [275] = 263, + [276] = 259, + [277] = 259, + [278] = 256, + [279] = 256, + [280] = 256, + [281] = 281, + [282] = 259, + [283] = 259, + [284] = 259, + [285] = 259, + [286] = 256, + [287] = 259, + [288] = 256, [289] = 289, [290] = 290, [291] = 291, [292] = 292, [293] = 293, - [294] = 50, - [295] = 295, - [296] = 54, - [297] = 58, + [294] = 294, + [295] = 5, + [296] = 296, + [297] = 297, [298] = 298, [299] = 299, [300] = 300, @@ -1790,15 +1825,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [302] = 302, [303] = 303, [304] = 304, - [305] = 62, - [306] = 41, + [305] = 305, + [306] = 306, [307] = 307, - [308] = 66, + [308] = 308, [309] = 309, [310] = 310, [311] = 311, [312] = 312, - [313] = 5, + [313] = 313, [314] = 314, [315] = 315, [316] = 316, @@ -1810,18 +1845,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [322] = 322, [323] = 323, [324] = 324, - [325] = 4, + [325] = 325, [326] = 326, [327] = 327, [328] = 328, [329] = 329, [330] = 330, - [331] = 331, + [331] = 4, [332] = 332, [333] = 333, [334] = 334, [335] = 335, - [336] = 46, + [336] = 336, [337] = 337, [338] = 338, [339] = 339, @@ -1829,7 +1864,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [341] = 341, [342] = 342, [343] = 343, - [344] = 337, + [344] = 344, [345] = 345, [346] = 346, [347] = 347, @@ -1847,983 +1882,983 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [359] = 359, [360] = 360, [361] = 361, - [362] = 309, + [362] = 362, [363] = 363, - [364] = 33, - [365] = 365, - [366] = 366, + [364] = 364, + [365] = 80, + [366] = 355, [367] = 367, [368] = 368, - [369] = 369, - [370] = 370, + [369] = 86, + [370] = 297, [371] = 371, - [372] = 372, - [373] = 373, + [372] = 36, + [373] = 81, [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 23, - [379] = 379, - [380] = 2, - [381] = 293, - [382] = 290, - [383] = 5, - [384] = 4, - [385] = 290, - [386] = 386, - [387] = 293, - [388] = 293, + [375] = 37, + [376] = 85, + [377] = 89, + [378] = 90, + [379] = 79, + [380] = 380, + [381] = 5, + [382] = 382, + [383] = 293, + [384] = 292, + [385] = 382, + [386] = 4, + [387] = 387, + [388] = 388, [389] = 389, - [390] = 290, - [391] = 365, - [392] = 5, - [393] = 4, + [390] = 390, + [391] = 3, + [392] = 392, + [393] = 393, [394] = 394, - [395] = 307, + [395] = 395, [396] = 396, - [397] = 354, - [398] = 320, + [397] = 397, + [398] = 398, [399] = 399, - [400] = 5, + [400] = 400, [401] = 401, - [402] = 4, + [402] = 402, [403] = 403, - [404] = 404, + [404] = 292, [405] = 405, - [406] = 406, + [406] = 4, [407] = 407, [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, + [409] = 293, + [410] = 292, + [411] = 313, + [412] = 4, + [413] = 5, [414] = 414, - [415] = 415, + [415] = 306, [416] = 416, - [417] = 412, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 413, - [422] = 399, - [423] = 389, + [417] = 352, + [418] = 354, + [419] = 296, + [420] = 394, + [421] = 396, + [422] = 398, + [423] = 408, [424] = 424, [425] = 425, [426] = 426, - [427] = 293, - [428] = 354, - [429] = 425, - [430] = 414, - [431] = 293, - [432] = 320, - [433] = 415, - [434] = 320, - [435] = 404, - [436] = 406, - [437] = 413, - [438] = 290, - [439] = 386, - [440] = 401, - [441] = 426, - [442] = 416, - [443] = 307, - [444] = 290, - [445] = 401, - [446] = 418, - [447] = 419, - [448] = 403, - [449] = 404, - [450] = 420, - [451] = 365, - [452] = 426, - [453] = 405, - [454] = 394, - [455] = 424, - [456] = 407, - [457] = 399, - [458] = 408, - [459] = 407, - [460] = 412, - [461] = 409, - [462] = 389, - [463] = 410, - [464] = 396, - [465] = 408, - [466] = 409, - [467] = 386, - [468] = 411, - [469] = 5, - [470] = 4, - [471] = 424, - [472] = 425, - [473] = 414, - [474] = 413, - [475] = 399, - [476] = 389, - [477] = 5, - [478] = 411, - [479] = 4, - [480] = 415, - [481] = 293, - [482] = 416, - [483] = 406, - [484] = 418, - [485] = 419, - [486] = 420, - [487] = 354, - [488] = 405, - [489] = 394, - [490] = 396, - [491] = 307, - [492] = 365, - [493] = 5, - [494] = 4, - [495] = 290, - [496] = 403, - [497] = 412, - [498] = 498, - [499] = 499, - [500] = 410, - [501] = 394, - [502] = 418, - [503] = 419, - [504] = 420, - [505] = 405, - [506] = 394, - [507] = 396, - [508] = 365, - [509] = 307, - [510] = 354, - [511] = 320, - [512] = 412, - [513] = 413, - [514] = 399, - [515] = 365, - [516] = 389, - [517] = 307, - [518] = 354, - [519] = 320, - [520] = 412, - [521] = 413, - [522] = 399, - [523] = 389, - [524] = 524, - [525] = 293, - [526] = 290, - [527] = 5, - [528] = 4, - [529] = 293, - [530] = 290, - [531] = 412, - [532] = 412, - [533] = 424, - [534] = 5, - [535] = 4, - [536] = 425, - [537] = 414, - [538] = 293, - [539] = 406, - [540] = 290, - [541] = 386, - [542] = 401, - [543] = 403, - [544] = 404, - [545] = 426, - [546] = 407, - [547] = 408, - [548] = 409, - [549] = 410, - [550] = 411, - [551] = 415, - [552] = 416, - [553] = 418, - [554] = 419, - [555] = 420, - [556] = 405, - [557] = 394, - [558] = 396, - [559] = 424, - [560] = 5, - [561] = 416, - [562] = 425, - [563] = 414, - [564] = 293, - [565] = 406, - [566] = 290, - [567] = 386, - [568] = 401, - [569] = 403, - [570] = 404, + [427] = 427, + [428] = 293, + [429] = 429, + [430] = 5, + [431] = 388, + [432] = 293, + [433] = 429, + [434] = 292, + [435] = 407, + [436] = 414, + [437] = 416, + [438] = 424, + [439] = 425, + [440] = 388, + [441] = 389, + [442] = 390, + [443] = 392, + [444] = 393, + [445] = 395, + [446] = 397, + [447] = 399, + [448] = 400, + [449] = 401, + [450] = 403, + [451] = 387, + [452] = 405, + [453] = 402, + [454] = 4, + [455] = 5, + [456] = 426, + [457] = 427, + [458] = 293, + [459] = 429, + [460] = 292, + [461] = 407, + [462] = 414, + [463] = 416, + [464] = 424, + [465] = 425, + [466] = 466, + [467] = 389, + [468] = 390, + [469] = 392, + [470] = 393, + [471] = 427, + [472] = 397, + [473] = 399, + [474] = 400, + [475] = 401, + [476] = 403, + [477] = 387, + [478] = 405, + [479] = 313, + [480] = 4, + [481] = 5, + [482] = 306, + [483] = 352, + [484] = 354, + [485] = 296, + [486] = 313, + [487] = 306, + [488] = 352, + [489] = 354, + [490] = 296, + [491] = 394, + [492] = 394, + [493] = 396, + [494] = 293, + [495] = 292, + [496] = 426, + [497] = 396, + [498] = 398, + [499] = 408, + [500] = 398, + [501] = 402, + [502] = 4, + [503] = 5, + [504] = 408, + [505] = 505, + [506] = 395, + [507] = 507, + [508] = 416, + [509] = 424, + [510] = 425, + [511] = 394, + [512] = 4, + [513] = 388, + [514] = 389, + [515] = 390, + [516] = 392, + [517] = 393, + [518] = 395, + [519] = 5, + [520] = 397, + [521] = 399, + [522] = 400, + [523] = 401, + [524] = 403, + [525] = 387, + [526] = 405, + [527] = 402, + [528] = 306, + [529] = 4, + [530] = 5, + [531] = 426, + [532] = 427, + [533] = 4, + [534] = 293, + [535] = 313, + [536] = 352, + [537] = 5, + [538] = 429, + [539] = 292, + [540] = 407, + [541] = 414, + [542] = 416, + [543] = 424, + [544] = 425, + [545] = 293, + [546] = 388, + [547] = 389, + [548] = 390, + [549] = 392, + [550] = 393, + [551] = 293, + [552] = 395, + [553] = 292, + [554] = 397, + [555] = 292, + [556] = 399, + [557] = 400, + [558] = 394, + [559] = 394, + [560] = 352, + [561] = 401, + [562] = 354, + [563] = 403, + [564] = 387, + [565] = 405, + [566] = 402, + [567] = 306, + [568] = 4, + [569] = 5, + [570] = 402, [571] = 426, - [572] = 407, - [573] = 408, - [574] = 409, - [575] = 410, - [576] = 411, - [577] = 415, - [578] = 416, - [579] = 418, - [580] = 419, - [581] = 420, - [582] = 405, - [583] = 396, - [584] = 424, - [585] = 365, - [586] = 586, - [587] = 587, - [588] = 413, - [589] = 399, - [590] = 389, - [591] = 413, - [592] = 399, - [593] = 389, - [594] = 5, - [595] = 4, - [596] = 425, - [597] = 414, - [598] = 307, - [599] = 406, - [600] = 354, - [601] = 386, - [602] = 401, - [603] = 320, - [604] = 403, - [605] = 404, - [606] = 426, - [607] = 407, - [608] = 408, - [609] = 409, - [610] = 410, - [611] = 411, - [612] = 415, - [613] = 4, - [614] = 410, - [615] = 414, - [616] = 293, - [617] = 307, - [618] = 406, - [619] = 354, - [620] = 386, - [621] = 401, - [622] = 320, - [623] = 403, - [624] = 404, - [625] = 426, - [626] = 407, - [627] = 408, - [628] = 409, - [629] = 410, - [630] = 411, - [631] = 415, - [632] = 412, - [633] = 416, - [634] = 418, - [635] = 419, - [636] = 420, - [637] = 413, - [638] = 405, - [639] = 394, - [640] = 396, - [641] = 424, - [642] = 365, - [643] = 386, - [644] = 401, - [645] = 425, - [646] = 414, - [647] = 412, - [648] = 307, - [649] = 406, - [650] = 354, - [651] = 412, - [652] = 386, - [653] = 401, - [654] = 320, - [655] = 403, - [656] = 404, - [657] = 426, - [658] = 413, - [659] = 407, - [660] = 408, - [661] = 409, - [662] = 5, - [663] = 399, - [664] = 411, - [665] = 415, - [666] = 416, - [667] = 418, - [668] = 419, - [669] = 420, - [670] = 405, - [671] = 394, - [672] = 396, - [673] = 365, - [674] = 403, - [675] = 414, - [676] = 404, - [677] = 293, - [678] = 307, - [679] = 354, - [680] = 426, - [681] = 290, - [682] = 320, - [683] = 407, - [684] = 389, - [685] = 408, - [686] = 409, - [687] = 410, - [688] = 406, - [689] = 411, - [690] = 425, - [691] = 4, - [692] = 365, - [693] = 412, - [694] = 416, - [695] = 389, - [696] = 307, - [697] = 418, - [698] = 419, - [699] = 354, - [700] = 420, - [701] = 320, - [702] = 405, - [703] = 394, - [704] = 396, - [705] = 424, - [706] = 425, - [707] = 414, - [708] = 406, - [709] = 386, - [710] = 401, - [711] = 399, - [712] = 403, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 404, - [723] = 720, - [724] = 413, - [725] = 399, - [726] = 389, + [572] = 427, + [573] = 396, + [574] = 306, + [575] = 429, + [576] = 426, + [577] = 352, + [578] = 354, + [579] = 407, + [580] = 414, + [581] = 296, + [582] = 416, + [583] = 424, + [584] = 425, + [585] = 388, + [586] = 389, + [587] = 390, + [588] = 392, + [589] = 393, + [590] = 395, + [591] = 398, + [592] = 397, + [593] = 394, + [594] = 408, + [595] = 396, + [596] = 399, + [597] = 400, + [598] = 401, + [599] = 599, + [600] = 427, + [601] = 396, + [602] = 398, + [603] = 408, + [604] = 396, + [605] = 398, + [606] = 408, + [607] = 293, + [608] = 296, + [609] = 429, + [610] = 292, + [611] = 403, + [612] = 387, + [613] = 405, + [614] = 398, + [615] = 296, + [616] = 313, + [617] = 408, + [618] = 354, + [619] = 407, + [620] = 414, + [621] = 621, + [622] = 313, + [623] = 623, + [624] = 394, + [625] = 403, + [626] = 387, + [627] = 405, + [628] = 402, + [629] = 313, + [630] = 425, + [631] = 405, + [632] = 426, + [633] = 427, + [634] = 402, + [635] = 306, + [636] = 429, + [637] = 401, + [638] = 400, + [639] = 352, + [640] = 354, + [641] = 407, + [642] = 414, + [643] = 389, + [644] = 296, + [645] = 416, + [646] = 390, + [647] = 424, + [648] = 392, + [649] = 425, + [650] = 396, + [651] = 388, + [652] = 408, + [653] = 389, + [654] = 390, + [655] = 392, + [656] = 393, + [657] = 393, + [658] = 395, + [659] = 397, + [660] = 399, + [661] = 400, + [662] = 401, + [663] = 395, + [664] = 403, + [665] = 387, + [666] = 405, + [667] = 313, + [668] = 397, + [669] = 399, + [670] = 400, + [671] = 401, + [672] = 293, + [673] = 426, + [674] = 306, + [675] = 394, + [676] = 403, + [677] = 387, + [678] = 352, + [679] = 394, + [680] = 354, + [681] = 405, + [682] = 402, + [683] = 313, + [684] = 296, + [685] = 292, + [686] = 4, + [687] = 5, + [688] = 427, + [689] = 426, + [690] = 427, + [691] = 429, + [692] = 306, + [693] = 394, + [694] = 396, + [695] = 429, + [696] = 352, + [697] = 398, + [698] = 354, + [699] = 408, + [700] = 407, + [701] = 414, + [702] = 402, + [703] = 4, + [704] = 5, + [705] = 296, + [706] = 426, + [707] = 427, + [708] = 293, + [709] = 416, + [710] = 429, + [711] = 398, + [712] = 292, + [713] = 407, + [714] = 414, + [715] = 424, + [716] = 407, + [717] = 425, + [718] = 313, + [719] = 416, + [720] = 414, + [721] = 424, + [722] = 388, + [723] = 425, + [724] = 399, + [725] = 725, + [726] = 726, [727] = 727, - [728] = 425, - [729] = 413, - [730] = 399, - [731] = 389, - [732] = 426, - [733] = 290, - [734] = 407, - [735] = 408, - [736] = 409, - [737] = 410, - [738] = 411, - [739] = 415, - [740] = 416, - [741] = 418, - [742] = 419, - [743] = 420, - [744] = 405, - [745] = 424, - [746] = 394, - [747] = 396, - [748] = 424, - [749] = 365, - [750] = 5, - [751] = 4, - [752] = 415, - [753] = 394, - [754] = 394, - [755] = 409, - [756] = 408, - [757] = 411, - [758] = 416, - [759] = 386, - [760] = 320, - [761] = 414, - [762] = 426, - [763] = 418, - [764] = 414, - [765] = 419, - [766] = 403, - [767] = 424, - [768] = 406, - [769] = 401, - [770] = 410, - [771] = 354, - [772] = 307, - [773] = 407, - [774] = 426, - [775] = 415, - [776] = 307, - [777] = 409, - [778] = 407, - [779] = 411, - [780] = 396, - [781] = 386, - [782] = 416, - [783] = 401, - [784] = 420, - [785] = 425, - [786] = 405, - [787] = 425, - [788] = 354, - [789] = 420, - [790] = 320, - [791] = 403, - [792] = 405, - [793] = 404, - [794] = 408, - [795] = 418, - [796] = 419, - [797] = 396, - [798] = 404, - [799] = 365, - [800] = 406, - [801] = 424, - [802] = 365, - [803] = 415, - [804] = 410, - [805] = 2, - [806] = 312, - [807] = 310, - [808] = 316, - [809] = 498, - [810] = 499, - [811] = 499, - [812] = 498, - [813] = 587, - [814] = 586, - [815] = 587, - [816] = 337, - [817] = 309, - [818] = 717, - [819] = 721, - [820] = 719, - [821] = 714, - [822] = 5, - [823] = 720, - [824] = 4, - [825] = 718, - [826] = 727, - [827] = 499, - [828] = 498, - [829] = 713, - [830] = 716, - [831] = 715, - [832] = 498, - [833] = 499, - [834] = 587, - [835] = 586, - [836] = 587, - [837] = 316, - [838] = 347, - [839] = 499, - [840] = 498, - [841] = 720, - [842] = 713, - [843] = 714, - [844] = 358, - [845] = 715, - [846] = 716, - [847] = 717, - [848] = 718, - [849] = 719, - [850] = 720, - [851] = 721, - [852] = 727, - [853] = 312, - [854] = 587, - [855] = 310, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 865, - [867] = 867, - [868] = 868, - [869] = 865, - [870] = 867, - [871] = 868, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 731, + [734] = 396, + [735] = 398, + [736] = 408, + [737] = 737, + [738] = 389, + [739] = 396, + [740] = 398, + [741] = 408, + [742] = 306, + [743] = 390, + [744] = 392, + [745] = 352, + [746] = 354, + [747] = 416, + [748] = 393, + [749] = 296, + [750] = 403, + [751] = 395, + [752] = 388, + [753] = 424, + [754] = 397, + [755] = 389, + [756] = 390, + [757] = 392, + [758] = 393, + [759] = 387, + [760] = 395, + [761] = 397, + [762] = 399, + [763] = 400, + [764] = 401, + [765] = 388, + [766] = 352, + [767] = 388, + [768] = 399, + [769] = 389, + [770] = 390, + [771] = 392, + [772] = 425, + [773] = 393, + [774] = 402, + [775] = 407, + [776] = 306, + [777] = 395, + [778] = 397, + [779] = 399, + [780] = 400, + [781] = 401, + [782] = 403, + [783] = 387, + [784] = 405, + [785] = 313, + [786] = 390, + [787] = 429, + [788] = 424, + [789] = 306, + [790] = 393, + [791] = 429, + [792] = 425, + [793] = 400, + [794] = 427, + [795] = 313, + [796] = 296, + [797] = 416, + [798] = 426, + [799] = 352, + [800] = 354, + [801] = 426, + [802] = 395, + [803] = 407, + [804] = 414, + [805] = 401, + [806] = 388, + [807] = 296, + [808] = 403, + [809] = 387, + [810] = 405, + [811] = 392, + [812] = 416, + [813] = 389, + [814] = 402, + [815] = 424, + [816] = 414, + [817] = 427, + [818] = 397, + [819] = 354, + [820] = 305, + [821] = 340, + [822] = 3, + [823] = 304, + [824] = 505, + [825] = 466, + [826] = 466, + [827] = 505, + [828] = 297, + [829] = 507, + [830] = 507, + [831] = 599, + [832] = 5, + [833] = 4, + [834] = 355, + [835] = 466, + [836] = 728, + [837] = 623, + [838] = 725, + [839] = 737, + [840] = 729, + [841] = 732, + [842] = 730, + [843] = 727, + [844] = 731, + [845] = 726, + [846] = 505, + [847] = 466, + [848] = 505, + [849] = 731, + [850] = 507, + [851] = 599, + [852] = 507, + [853] = 737, + [854] = 728, + [855] = 623, + [856] = 725, + [857] = 730, + [858] = 731, + [859] = 344, + [860] = 729, + [861] = 726, + [862] = 732, + [863] = 340, + [864] = 727, + [865] = 505, + [866] = 466, + [867] = 334, + [868] = 304, + [869] = 507, + [870] = 305, + [871] = 871, [872] = 872, - [873] = 864, + [873] = 873, [874] = 874, - [875] = 874, - [876] = 865, - [877] = 865, - [878] = 865, + [875] = 875, + [876] = 876, + [877] = 877, + [878] = 878, [879] = 879, [880] = 880, - [881] = 879, - [882] = 879, - [883] = 879, - [884] = 879, - [885] = 879, - [886] = 879, - [887] = 879, - [888] = 862, - [889] = 880, - [890] = 880, - [891] = 880, - [892] = 880, - [893] = 880, - [894] = 880, + [881] = 881, + [882] = 880, + [883] = 883, + [884] = 881, + [885] = 883, + [886] = 886, + [887] = 887, + [888] = 886, + [889] = 879, + [890] = 879, + [891] = 879, + [892] = 879, + [893] = 879, + [894] = 894, [895] = 895, - [896] = 895, - [897] = 880, - [898] = 880, - [899] = 879, - [900] = 880, - [901] = 880, - [902] = 880, - [903] = 879, - [904] = 879, - [905] = 879, + [896] = 894, + [897] = 895, + [898] = 894, + [899] = 895, + [900] = 895, + [901] = 895, + [902] = 894, + [903] = 894, + [904] = 894, + [905] = 895, [906] = 906, - [907] = 907, - [908] = 906, - [909] = 907, - [910] = 907, - [911] = 906, - [912] = 912, - [913] = 912, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, + [907] = 906, + [908] = 894, + [909] = 894, + [910] = 894, + [911] = 895, + [912] = 876, + [913] = 894, + [914] = 894, + [915] = 895, + [916] = 895, + [917] = 895, + [918] = 894, + [919] = 895, + [920] = 895, [921] = 921, [922] = 922, - [923] = 923, + [923] = 921, [924] = 924, [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 927, - [930] = 925, - [931] = 931, - [932] = 920, - [933] = 922, + [926] = 924, + [927] = 925, + [928] = 921, + [929] = 8, + [930] = 922, + [931] = 922, + [932] = 932, + [933] = 933, [934] = 934, [935] = 935, - [936] = 936, - [937] = 923, - [938] = 926, - [939] = 927, - [940] = 914, + [936] = 933, + [937] = 937, + [938] = 938, + [939] = 939, + [940] = 940, [941] = 941, - [942] = 915, + [942] = 942, [943] = 943, - [944] = 917, - [945] = 918, + [944] = 944, + [945] = 945, [946] = 946, [947] = 947, - [948] = 948, - [949] = 949, - [950] = 914, + [948] = 937, + [949] = 938, + [950] = 950, [951] = 951, - [952] = 919, + [952] = 940, [953] = 953, [954] = 954, [955] = 955, - [956] = 935, - [957] = 931, - [958] = 925, - [959] = 931, - [960] = 920, - [961] = 936, - [962] = 926, - [963] = 946, - [964] = 951, - [965] = 953, - [966] = 954, - [967] = 955, - [968] = 935, - [969] = 925, - [970] = 931, - [971] = 920, - [972] = 936, - [973] = 926, - [974] = 946, - [975] = 951, - [976] = 953, + [956] = 956, + [957] = 943, + [958] = 944, + [959] = 945, + [960] = 960, + [961] = 946, + [962] = 953, + [963] = 963, + [964] = 932, + [965] = 965, + [966] = 966, + [967] = 934, + [968] = 942, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 937, + [975] = 938, + [976] = 950, [977] = 954, - [978] = 955, - [979] = 935, - [980] = 947, - [981] = 925, - [982] = 931, - [983] = 936, - [984] = 926, - [985] = 946, - [986] = 951, - [987] = 953, + [978] = 956, + [979] = 963, + [980] = 934, + [981] = 969, + [982] = 970, + [983] = 971, + [984] = 972, + [985] = 937, + [986] = 938, + [987] = 950, [988] = 954, - [989] = 955, - [990] = 935, - [991] = 925, - [992] = 931, - [993] = 936, - [994] = 926, - [995] = 946, - [996] = 951, - [997] = 953, + [989] = 956, + [990] = 963, + [991] = 934, + [992] = 969, + [993] = 970, + [994] = 971, + [995] = 972, + [996] = 937, + [997] = 938, [998] = 954, - [999] = 955, - [1000] = 935, - [1001] = 925, - [1002] = 931, - [1003] = 936, - [1004] = 926, - [1005] = 946, - [1006] = 951, - [1007] = 953, - [1008] = 954, - [1009] = 955, - [1010] = 935, - [1011] = 948, - [1012] = 925, - [1013] = 931, - [1014] = 936, - [1015] = 926, - [1016] = 946, - [1017] = 951, - [1018] = 953, + [999] = 956, + [1000] = 963, + [1001] = 934, + [1002] = 969, + [1003] = 970, + [1004] = 971, + [1005] = 972, + [1006] = 338, + [1007] = 937, + [1008] = 938, + [1009] = 954, + [1010] = 956, + [1011] = 963, + [1012] = 934, + [1013] = 969, + [1014] = 970, + [1015] = 971, + [1016] = 972, + [1017] = 937, + [1018] = 938, [1019] = 954, - [1020] = 955, - [1021] = 935, - [1022] = 1022, - [1023] = 925, - [1024] = 931, - [1025] = 936, - [1026] = 926, - [1027] = 946, - [1028] = 951, - [1029] = 953, - [1030] = 954, - [1031] = 955, - [1032] = 935, - [1033] = 925, - [1034] = 931, - [1035] = 936, - [1036] = 926, - [1037] = 946, - [1038] = 951, - [1039] = 953, + [1020] = 956, + [1021] = 963, + [1022] = 934, + [1023] = 969, + [1024] = 970, + [1025] = 971, + [1026] = 972, + [1027] = 937, + [1028] = 938, + [1029] = 954, + [1030] = 956, + [1031] = 963, + [1032] = 934, + [1033] = 969, + [1034] = 970, + [1035] = 971, + [1036] = 972, + [1037] = 1037, + [1038] = 937, + [1039] = 938, [1040] = 954, - [1041] = 955, - [1042] = 935, - [1043] = 922, - [1044] = 925, - [1045] = 931, - [1046] = 936, - [1047] = 926, - [1048] = 946, - [1049] = 951, - [1050] = 953, - [1051] = 954, - [1052] = 955, - [1053] = 935, - [1054] = 925, - [1055] = 931, - [1056] = 936, - [1057] = 926, - [1058] = 946, - [1059] = 951, - [1060] = 953, - [1061] = 954, - [1062] = 955, - [1063] = 935, - [1064] = 926, - [1065] = 926, - [1066] = 1066, - [1067] = 1067, - [1068] = 916, - [1069] = 1069, - [1070] = 1022, - [1071] = 912, - [1072] = 1072, - [1073] = 941, - [1074] = 921, - [1075] = 934, - [1076] = 927, - [1077] = 914, - [1078] = 915, - [1079] = 917, - [1080] = 918, - [1081] = 947, - [1082] = 948, - [1083] = 949, - [1084] = 919, - [1085] = 922, - [1086] = 1022, - [1087] = 943, - [1088] = 1066, - [1089] = 1067, - [1090] = 916, - [1091] = 1069, - [1092] = 912, - [1093] = 1072, - [1094] = 941, - [1095] = 921, - [1096] = 1066, - [1097] = 1067, - [1098] = 916, - [1099] = 1069, - [1100] = 912, - [1101] = 1072, - [1102] = 941, - [1103] = 921, - [1104] = 1066, - [1105] = 1067, - [1106] = 916, - [1107] = 1069, - [1108] = 912, - [1109] = 1072, - [1110] = 941, - [1111] = 921, - [1112] = 1066, - [1113] = 1067, - [1114] = 916, - [1115] = 1069, - [1116] = 912, - [1117] = 1072, - [1118] = 941, - [1119] = 921, - [1120] = 1066, - [1121] = 1067, - [1122] = 1072, - [1123] = 941, - [1124] = 921, - [1125] = 1066, - [1126] = 1067, - [1127] = 1072, - [1128] = 941, - [1129] = 921, - [1130] = 1066, - [1131] = 1067, - [1132] = 1072, - [1133] = 941, - [1134] = 921, - [1135] = 1066, - [1136] = 1067, - [1137] = 1072, - [1138] = 941, - [1139] = 921, - [1140] = 1066, - [1141] = 1067, - [1142] = 1072, - [1143] = 941, - [1144] = 921, - [1145] = 1066, - [1146] = 1072, - [1147] = 941, - [1148] = 921, - [1149] = 1149, - [1150] = 1149, - [1151] = 1067, - [1152] = 927, - [1153] = 914, - [1154] = 915, - [1155] = 943, - [1156] = 917, - [1157] = 918, - [1158] = 948, - [1159] = 947, - [1160] = 948, - [1161] = 949, - [1162] = 919, - [1163] = 955, - [1164] = 1069, - [1165] = 1165, - [1166] = 949, - [1167] = 1022, - [1168] = 934, - [1169] = 1169, - [1170] = 934, - [1171] = 1067, - [1172] = 915, - [1173] = 943, - [1174] = 917, - [1175] = 918, - [1176] = 953, - [1177] = 946, - [1178] = 922, - [1179] = 1022, - [1180] = 1066, - [1181] = 1072, - [1182] = 916, - [1183] = 1069, - [1184] = 912, - [1185] = 916, - [1186] = 1069, - [1187] = 912, - [1188] = 916, - [1189] = 1069, - [1190] = 912, - [1191] = 916, - [1192] = 1069, - [1193] = 912, - [1194] = 916, - [1195] = 1069, - [1196] = 912, - [1197] = 919, - [1198] = 922, - [1199] = 934, - [1200] = 949, - [1201] = 934, - [1202] = 927, - [1203] = 914, - [1204] = 915, - [1205] = 917, - [1206] = 918, - [1207] = 947, - [1208] = 947, - [1209] = 948, - [1210] = 949, - [1211] = 919, - [1212] = 1212, - [1213] = 943, - [1214] = 951, - [1215] = 943, - [1216] = 954, - [1217] = 936, - [1218] = 916, - [1219] = 1069, - [1220] = 924, - [1221] = 1221, - [1222] = 1222, - [1223] = 10, - [1224] = 1222, - [1225] = 1225, - [1226] = 1225, - [1227] = 351, - [1228] = 316, - [1229] = 310, - [1230] = 312, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 292, - [1236] = 291, - [1237] = 587, - [1238] = 289, - [1239] = 586, - [1240] = 1240, - [1241] = 355, - [1242] = 41, - [1243] = 340, - [1244] = 66, - [1245] = 348, - [1246] = 366, - [1247] = 316, - [1248] = 376, - [1249] = 356, - [1250] = 310, - [1251] = 358, - [1252] = 312, - [1253] = 352, - [1254] = 338, - [1255] = 311, - [1256] = 347, - [1257] = 359, - [1258] = 357, - [1259] = 367, - [1260] = 368, - [1261] = 346, - [1262] = 50, - [1263] = 33, - [1264] = 58, - [1265] = 23, - [1266] = 360, - [1267] = 361, - [1268] = 349, - [1269] = 341, - [1270] = 342, - [1271] = 54, - [1272] = 46, - [1273] = 353, - [1274] = 350, - [1275] = 62, - [1276] = 721, - [1277] = 1277, - [1278] = 1278, - [1279] = 714, - [1280] = 715, - [1281] = 717, - [1282] = 716, - [1283] = 719, - [1284] = 718, - [1285] = 713, - [1286] = 1286, - [1287] = 727, - [1288] = 358, - [1289] = 1289, - [1290] = 1289, - [1291] = 1289, - [1292] = 1289, - [1293] = 1293, - [1294] = 1289, - [1295] = 1289, - [1296] = 1289, - [1297] = 1297, - [1298] = 727, - [1299] = 347, - [1300] = 713, - [1301] = 1289, - [1302] = 714, - [1303] = 316, - [1304] = 1289, - [1305] = 1293, - [1306] = 715, - [1307] = 716, - [1308] = 717, - [1309] = 1289, - [1310] = 718, - [1311] = 719, - [1312] = 721, - [1313] = 1289, - [1314] = 1289, - [1315] = 1293, - [1316] = 1278, - [1317] = 310, - [1318] = 1286, - [1319] = 1319, - [1320] = 312, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 713, - [1325] = 714, - [1326] = 1326, - [1327] = 715, - [1328] = 716, - [1329] = 1329, - [1330] = 717, - [1331] = 718, - [1332] = 719, - [1333] = 1333, - [1334] = 1334, - [1335] = 721, - [1336] = 1336, - [1337] = 1337, - [1338] = 1321, + [1041] = 956, + [1042] = 963, + [1043] = 934, + [1044] = 969, + [1045] = 970, + [1046] = 971, + [1047] = 972, + [1048] = 937, + [1049] = 938, + [1050] = 954, + [1051] = 956, + [1052] = 963, + [1053] = 934, + [1054] = 969, + [1055] = 970, + [1056] = 971, + [1057] = 972, + [1058] = 937, + [1059] = 938, + [1060] = 954, + [1061] = 956, + [1062] = 963, + [1063] = 934, + [1064] = 969, + [1065] = 970, + [1066] = 971, + [1067] = 972, + [1068] = 937, + [1069] = 938, + [1070] = 954, + [1071] = 956, + [1072] = 963, + [1073] = 934, + [1074] = 969, + [1075] = 970, + [1076] = 971, + [1077] = 972, + [1078] = 956, + [1079] = 956, + [1080] = 1080, + [1081] = 973, + [1082] = 1082, + [1083] = 1083, + [1084] = 939, + [1085] = 933, + [1086] = 954, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 940, + [1091] = 943, + [1092] = 944, + [1093] = 945, + [1094] = 946, + [1095] = 953, + [1096] = 932, + [1097] = 932, + [1098] = 950, + [1099] = 965, + [1100] = 951, + [1101] = 966, + [1102] = 1082, + [1103] = 942, + [1104] = 1083, + [1105] = 951, + [1106] = 939, + [1107] = 960, + [1108] = 973, + [1109] = 1082, + [1110] = 1083, + [1111] = 933, + [1112] = 1087, + [1113] = 1088, + [1114] = 1089, + [1115] = 1080, + [1116] = 973, + [1117] = 1082, + [1118] = 1083, + [1119] = 933, + [1120] = 1087, + [1121] = 1088, + [1122] = 1089, + [1123] = 1080, + [1124] = 973, + [1125] = 1082, + [1126] = 1083, + [1127] = 933, + [1128] = 1087, + [1129] = 1088, + [1130] = 1089, + [1131] = 1080, + [1132] = 973, + [1133] = 1082, + [1134] = 1083, + [1135] = 933, + [1136] = 1087, + [1137] = 1088, + [1138] = 1089, + [1139] = 1080, + [1140] = 973, + [1141] = 1087, + [1142] = 1088, + [1143] = 1089, + [1144] = 1080, + [1145] = 973, + [1146] = 1087, + [1147] = 1088, + [1148] = 1089, + [1149] = 1080, + [1150] = 973, + [1151] = 1087, + [1152] = 1088, + [1153] = 1089, + [1154] = 1080, + [1155] = 973, + [1156] = 1087, + [1157] = 1088, + [1158] = 1089, + [1159] = 1080, + [1160] = 973, + [1161] = 1087, + [1162] = 1088, + [1163] = 1089, + [1164] = 1080, + [1165] = 1087, + [1166] = 1088, + [1167] = 1089, + [1168] = 1168, + [1169] = 973, + [1170] = 943, + [1171] = 944, + [1172] = 945, + [1173] = 960, + [1174] = 946, + [1175] = 953, + [1176] = 932, + [1177] = 965, + [1178] = 1178, + [1179] = 966, + [1180] = 942, + [1181] = 965, + [1182] = 1182, + [1183] = 1183, + [1184] = 1168, + [1185] = 932, + [1186] = 966, + [1187] = 969, + [1188] = 955, + [1189] = 1087, + [1190] = 942, + [1191] = 965, + [1192] = 970, + [1193] = 951, + [1194] = 939, + [1195] = 1088, + [1196] = 940, + [1197] = 956, + [1198] = 971, + [1199] = 943, + [1200] = 1089, + [1201] = 944, + [1202] = 939, + [1203] = 1082, + [1204] = 1083, + [1205] = 933, + [1206] = 1082, + [1207] = 1083, + [1208] = 933, + [1209] = 1082, + [1210] = 1083, + [1211] = 933, + [1212] = 1082, + [1213] = 1083, + [1214] = 933, + [1215] = 1082, + [1216] = 1083, + [1217] = 933, + [1218] = 972, + [1219] = 951, + [1220] = 940, + [1221] = 935, + [1222] = 945, + [1223] = 960, + [1224] = 946, + [1225] = 953, + [1226] = 940, + [1227] = 943, + [1228] = 944, + [1229] = 945, + [1230] = 946, + [1231] = 953, + [1232] = 947, + [1233] = 1178, + [1234] = 965, + [1235] = 966, + [1236] = 1080, + [1237] = 942, + [1238] = 963, + [1239] = 960, + [1240] = 951, + [1241] = 960, + [1242] = 966, + [1243] = 1082, + [1244] = 1083, + [1245] = 1080, + [1246] = 304, + [1247] = 1247, + [1248] = 340, + [1249] = 305, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 1253, + [1254] = 507, + [1255] = 599, + [1256] = 1256, + [1257] = 290, + [1258] = 291, + [1259] = 289, + [1260] = 367, + [1261] = 342, + [1262] = 343, + [1263] = 344, + [1264] = 371, + [1265] = 36, + [1266] = 327, + [1267] = 339, + [1268] = 89, + [1269] = 349, + [1270] = 335, + [1271] = 350, + [1272] = 37, + [1273] = 90, + [1274] = 326, + [1275] = 305, + [1276] = 340, + [1277] = 304, + [1278] = 329, + [1279] = 328, + [1280] = 346, + [1281] = 351, + [1282] = 79, + [1283] = 334, + [1284] = 81, + [1285] = 336, + [1286] = 341, + [1287] = 364, + [1288] = 347, + [1289] = 86, + [1290] = 345, + [1291] = 85, + [1292] = 80, + [1293] = 337, + [1294] = 333, + [1295] = 1295, + [1296] = 1296, + [1297] = 729, + [1298] = 1298, + [1299] = 726, + [1300] = 737, + [1301] = 623, + [1302] = 732, + [1303] = 725, + [1304] = 727, + [1305] = 728, + [1306] = 730, + [1307] = 1307, + [1308] = 1307, + [1309] = 1307, + [1310] = 334, + [1311] = 726, + [1312] = 727, + [1313] = 1307, + [1314] = 1314, + [1315] = 1307, + [1316] = 728, + [1317] = 729, + [1318] = 1307, + [1319] = 730, + [1320] = 1314, + [1321] = 623, + [1322] = 732, + [1323] = 340, + [1324] = 1314, + [1325] = 725, + [1326] = 1307, + [1327] = 1307, + [1328] = 1307, + [1329] = 1307, + [1330] = 1307, + [1331] = 1331, + [1332] = 344, + [1333] = 1307, + [1334] = 737, + [1335] = 1296, + [1336] = 304, + [1337] = 305, + [1338] = 1298, [1339] = 1339, [1340] = 1340, [1341] = 1341, @@ -2831,1500 +2866,1550 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1343] = 1343, [1344] = 1344, [1345] = 1345, - [1346] = 1322, - [1347] = 1323, - [1348] = 1329, - [1349] = 1334, - [1350] = 1342, - [1351] = 1351, - [1352] = 1337, - [1353] = 1321, - [1354] = 1339, - [1355] = 1355, - [1356] = 1322, - [1357] = 1357, - [1358] = 1344, - [1359] = 1322, - [1360] = 1323, - [1361] = 1329, - [1362] = 1334, - [1363] = 1337, - [1364] = 1321, - [1365] = 1343, - [1366] = 1339, - [1367] = 1326, - [1368] = 1344, - [1369] = 1333, - [1370] = 1322, - [1371] = 1323, - [1372] = 1329, - [1373] = 1334, - [1374] = 1337, - [1375] = 1337, - [1376] = 1321, - [1377] = 1345, - [1378] = 1339, - [1379] = 1351, - [1380] = 1380, - [1381] = 1344, - [1382] = 1357, - [1383] = 1322, - [1384] = 1323, - [1385] = 1380, - [1386] = 1329, - [1387] = 1334, - [1388] = 1337, - [1389] = 1321, - [1390] = 1339, - [1391] = 1336, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1344, + [1350] = 1350, + [1351] = 1340, + [1352] = 1352, + [1353] = 1353, + [1354] = 1341, + [1355] = 1342, + [1356] = 1356, + [1357] = 1344, + [1358] = 1345, + [1359] = 1346, + [1360] = 1348, + [1361] = 1350, + [1362] = 1340, + [1363] = 1352, + [1364] = 1353, + [1365] = 1350, + [1366] = 1341, + [1367] = 1342, + [1368] = 1368, + [1369] = 1344, + [1370] = 1345, + [1371] = 1346, + [1372] = 1372, + [1373] = 1348, + [1374] = 1350, + [1375] = 1340, + [1376] = 1352, + [1377] = 1353, + [1378] = 1341, + [1379] = 1342, + [1380] = 1344, + [1381] = 1345, + [1382] = 1346, + [1383] = 1348, + [1384] = 1350, + [1385] = 1340, + [1386] = 1352, + [1387] = 1353, + [1388] = 1340, + [1389] = 1389, + [1390] = 1341, + [1391] = 1342, [1392] = 1344, - [1393] = 1393, - [1394] = 1322, - [1395] = 1351, - [1396] = 1396, - [1397] = 1337, - [1398] = 1321, - [1399] = 1399, - [1400] = 1339, - [1401] = 1344, - [1402] = 1333, - [1403] = 1322, - [1404] = 1323, - [1405] = 1336, - [1406] = 1337, - [1407] = 1341, - [1408] = 1321, - [1409] = 1343, - [1410] = 1339, - [1411] = 1396, - [1412] = 1355, - [1413] = 1344, - [1414] = 1321, - [1415] = 1322, - [1416] = 1326, - [1417] = 1337, - [1418] = 1321, - [1419] = 1339, - [1420] = 1345, - [1421] = 1344, - [1422] = 1351, - [1423] = 1357, - [1424] = 1322, - [1425] = 1380, - [1426] = 1426, - [1427] = 1337, - [1428] = 1321, - [1429] = 1339, - [1430] = 1396, - [1431] = 1399, - [1432] = 1344, - [1433] = 1396, - [1434] = 1322, - [1435] = 1344, - [1436] = 1336, - [1437] = 1337, - [1438] = 1341, - [1439] = 1343, - [1440] = 1339, - [1441] = 1344, - [1442] = 1399, - [1443] = 1326, - [1444] = 1337, - [1445] = 1321, - [1446] = 1345, - [1447] = 1339, - [1448] = 1351, - [1449] = 1357, - [1450] = 1380, - [1451] = 727, - [1452] = 1452, - [1453] = 1322, - [1454] = 1326, - [1455] = 1336, - [1456] = 1341, - [1457] = 1342, - [1458] = 1343, - [1459] = 1340, - [1460] = 1336, - [1461] = 1326, - [1462] = 1396, - [1463] = 1399, - [1464] = 1345, - [1465] = 1341, - [1466] = 1343, - [1467] = 1351, - [1468] = 1334, - [1469] = 1357, - [1470] = 1380, - [1471] = 1396, - [1472] = 1342, - [1473] = 1326, - [1474] = 1345, - [1475] = 1351, - [1476] = 1357, - [1477] = 1357, - [1478] = 1355, - [1479] = 1380, - [1480] = 1329, - [1481] = 1341, - [1482] = 1396, - [1483] = 1399, - [1484] = 1336, - [1485] = 1341, - [1486] = 1343, - [1487] = 1326, - [1488] = 1341, - [1489] = 1399, - [1490] = 1345, - [1491] = 1351, - [1492] = 1492, - [1493] = 1357, - [1494] = 1380, - [1495] = 1339, - [1496] = 1396, - [1497] = 1399, - [1498] = 1336, - [1499] = 1341, - [1500] = 1343, - [1501] = 1326, - [1502] = 1345, - [1503] = 1351, - [1504] = 1357, - [1505] = 1380, - [1506] = 1341, - [1507] = 1380, - [1508] = 1396, - [1509] = 1399, - [1510] = 1343, - [1511] = 1336, - [1512] = 1341, - [1513] = 1343, - [1514] = 1426, - [1515] = 1344, - [1516] = 1326, - [1517] = 1345, - [1518] = 1351, - [1519] = 1357, - [1520] = 1380, - [1521] = 1341, - [1522] = 1399, - [1523] = 1399, - [1524] = 1396, - [1525] = 1399, - [1526] = 1336, - [1527] = 1341, - [1528] = 1396, - [1529] = 1343, - [1530] = 1323, - [1531] = 1329, - [1532] = 1334, - [1533] = 1323, - [1534] = 1329, - [1535] = 1334, - [1536] = 1323, - [1537] = 1329, - [1538] = 1334, - [1539] = 1323, - [1540] = 1329, - [1541] = 1334, - [1542] = 1323, - [1543] = 1329, - [1544] = 1334, - [1545] = 1326, - [1546] = 1345, - [1547] = 1351, - [1548] = 1357, - [1549] = 1380, - [1550] = 1396, - [1551] = 1399, - [1552] = 1342, - [1553] = 1452, - [1554] = 1336, - [1555] = 1341, - [1556] = 1343, - [1557] = 1557, - [1558] = 1326, - [1559] = 1342, - [1560] = 1345, - [1561] = 1351, - [1562] = 1323, - [1563] = 1329, - [1564] = 1334, - [1565] = 1345, - [1566] = 1357, - [1567] = 1380, - [1568] = 1336, - [1569] = 1569, - [1570] = 1569, - [1571] = 1569, - [1572] = 1569, - [1573] = 1573, - [1574] = 1574, - [1575] = 1574, - [1576] = 1576, - [1577] = 1577, - [1578] = 1576, - [1579] = 1573, - [1580] = 1580, - [1581] = 1580, - [1582] = 1573, - [1583] = 1574, - [1584] = 1574, - [1585] = 1573, - [1586] = 1580, - [1587] = 1587, - [1588] = 1573, - [1589] = 1574, - [1590] = 1573, - [1591] = 1574, - [1592] = 1577, - [1593] = 1577, + [1393] = 1345, + [1394] = 1346, + [1395] = 1348, + [1396] = 1350, + [1397] = 1352, + [1398] = 1353, + [1399] = 1341, + [1400] = 1342, + [1401] = 1352, + [1402] = 1344, + [1403] = 1345, + [1404] = 1346, + [1405] = 1341, + [1406] = 1348, + [1407] = 1350, + [1408] = 1340, + [1409] = 1409, + [1410] = 1352, + [1411] = 1353, + [1412] = 1341, + [1413] = 1342, + [1414] = 1414, + [1415] = 1353, + [1416] = 1344, + [1417] = 1345, + [1418] = 1346, + [1419] = 1348, + [1420] = 1350, + [1421] = 1340, + [1422] = 1352, + [1423] = 1345, + [1424] = 1353, + [1425] = 1341, + [1426] = 1342, + [1427] = 1427, + [1428] = 1344, + [1429] = 1345, + [1430] = 1346, + [1431] = 1348, + [1432] = 1350, + [1433] = 1340, + [1434] = 1352, + [1435] = 1353, + [1436] = 1341, + [1437] = 1342, + [1438] = 1344, + [1439] = 1345, + [1440] = 1346, + [1441] = 1348, + [1442] = 1350, + [1443] = 1340, + [1444] = 1352, + [1445] = 1353, + [1446] = 1446, + [1447] = 1447, + [1448] = 1341, + [1449] = 1342, + [1450] = 1344, + [1451] = 1345, + [1452] = 1346, + [1453] = 1348, + [1454] = 1350, + [1455] = 1340, + [1456] = 1352, + [1457] = 1346, + [1458] = 1353, + [1459] = 1345, + [1460] = 1345, + [1461] = 1461, + [1462] = 1462, + [1463] = 1463, + [1464] = 1368, + [1465] = 623, + [1466] = 725, + [1467] = 726, + [1468] = 727, + [1469] = 1469, + [1470] = 728, + [1471] = 729, + [1472] = 730, + [1473] = 1356, + [1474] = 732, + [1475] = 1372, + [1476] = 1389, + [1477] = 1409, + [1478] = 1461, + [1479] = 1463, + [1480] = 1368, + [1481] = 1469, + [1482] = 1356, + [1483] = 1372, + [1484] = 1389, + [1485] = 1409, + [1486] = 1461, + [1487] = 1463, + [1488] = 1368, + [1489] = 1469, + [1490] = 1356, + [1491] = 1372, + [1492] = 1389, + [1493] = 1409, + [1494] = 1461, + [1495] = 1347, + [1496] = 1463, + [1497] = 1368, + [1498] = 1469, + [1499] = 1356, + [1500] = 1469, + [1501] = 1372, + [1502] = 1389, + [1503] = 1409, + [1504] = 1461, + [1505] = 1463, + [1506] = 1368, + [1507] = 1469, + [1508] = 1356, + [1509] = 1372, + [1510] = 1389, + [1511] = 1409, + [1512] = 1512, + [1513] = 1461, + [1514] = 1463, + [1515] = 1372, + [1516] = 1389, + [1517] = 1409, + [1518] = 1461, + [1519] = 1463, + [1520] = 1372, + [1521] = 1389, + [1522] = 1409, + [1523] = 1461, + [1524] = 1463, + [1525] = 1372, + [1526] = 1389, + [1527] = 1409, + [1528] = 1461, + [1529] = 1463, + [1530] = 1372, + [1531] = 1389, + [1532] = 1409, + [1533] = 1461, + [1534] = 1463, + [1535] = 1372, + [1536] = 1389, + [1537] = 1409, + [1538] = 1538, + [1539] = 1461, + [1540] = 1372, + [1541] = 1461, + [1542] = 1389, + [1543] = 1409, + [1544] = 737, + [1545] = 1446, + [1546] = 1463, + [1547] = 1447, + [1548] = 1348, + [1549] = 1356, + [1550] = 1447, + [1551] = 1341, + [1552] = 1538, + [1553] = 1342, + [1554] = 1343, + [1555] = 1344, + [1556] = 1414, + [1557] = 1345, + [1558] = 1447, + [1559] = 1346, + [1560] = 1347, + [1561] = 1463, + [1562] = 1348, + [1563] = 1368, + [1564] = 1469, + [1565] = 1356, + [1566] = 1368, + [1567] = 1469, + [1568] = 1356, + [1569] = 1368, + [1570] = 1469, + [1571] = 1356, + [1572] = 1368, + [1573] = 1469, + [1574] = 1356, + [1575] = 1368, + [1576] = 1469, + [1577] = 1356, + [1578] = 1447, + [1579] = 1350, + [1580] = 1340, + [1581] = 1352, + [1582] = 1353, + [1583] = 1343, + [1584] = 1447, + [1585] = 1368, + [1586] = 1469, + [1587] = 1342, + [1588] = 1588, + [1589] = 1588, + [1590] = 1588, + [1591] = 1591, + [1592] = 1588, + [1593] = 1591, [1594] = 1594, [1595] = 1595, - [1596] = 1594, - [1597] = 1573, - [1598] = 1574, - [1599] = 1573, - [1600] = 1574, - [1601] = 1576, - [1602] = 1573, - [1603] = 1574, - [1604] = 1594, - [1605] = 1605, - [1606] = 1606, - [1607] = 1607, - [1608] = 1608, - [1609] = 1609, - [1610] = 1605, - [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 586, - [1616] = 1614, - [1617] = 1612, - [1618] = 1607, - [1619] = 1611, - [1620] = 1607, - [1621] = 1608, - [1622] = 1612, - [1623] = 1608, - [1624] = 1624, - [1625] = 1613, - [1626] = 1614, - [1627] = 1611, - [1628] = 1614, - [1629] = 1606, - [1630] = 1613, - [1631] = 1607, - [1632] = 587, - [1633] = 1612, - [1634] = 1614, - [1635] = 1635, - [1636] = 1613, - [1637] = 1613, - [1638] = 1606, - [1639] = 1612, - [1640] = 1614, - [1641] = 1613, - [1642] = 1614, - [1643] = 1607, - [1644] = 1611, - [1645] = 1645, - [1646] = 1606, - [1647] = 1612, - [1648] = 1614, - [1649] = 1608, - [1650] = 1608, - [1651] = 1611, - [1652] = 1609, - [1653] = 1613, - [1654] = 1614, - [1655] = 1608, + [1596] = 1596, + [1597] = 507, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1594, + [1602] = 1602, + [1603] = 1603, + [1604] = 1595, + [1605] = 1594, + [1606] = 1600, + [1607] = 1594, + [1608] = 1598, + [1609] = 1599, + [1610] = 1610, + [1611] = 1594, + [1612] = 1600, + [1613] = 1594, + [1614] = 1600, + [1615] = 1594, + [1616] = 1596, + [1617] = 1603, + [1618] = 1600, + [1619] = 1594, + [1620] = 1595, + [1621] = 1596, + [1622] = 1598, + [1623] = 1599, + [1624] = 1600, + [1625] = 1594, + [1626] = 599, + [1627] = 1600, + [1628] = 1600, + [1629] = 1600, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1630, + [1634] = 1630, + [1635] = 1631, + [1636] = 1636, + [1637] = 1637, + [1638] = 1638, + [1639] = 1639, + [1640] = 1630, + [1641] = 1631, + [1642] = 1630, + [1643] = 1631, + [1644] = 1630, + [1645] = 1631, + [1646] = 1631, + [1647] = 1632, + [1648] = 1648, + [1649] = 1639, + [1650] = 1638, + [1651] = 1651, + [1652] = 1632, + [1653] = 1653, + [1654] = 1654, + [1655] = 1648, [1656] = 1656, - [1657] = 1607, + [1657] = 1657, [1658] = 1658, - [1659] = 1606, - [1660] = 1608, - [1661] = 1613, - [1662] = 1614, - [1663] = 1606, - [1664] = 1664, - [1665] = 1607, - [1666] = 1608, - [1667] = 1667, - [1668] = 1607, - [1669] = 1609, - [1670] = 1613, - [1671] = 1608, - [1672] = 1606, - [1673] = 1607, - [1674] = 1606, - [1675] = 1664, - [1676] = 1676, - [1677] = 1611, - [1678] = 1613, - [1679] = 1609, - [1680] = 1614, - [1681] = 1676, - [1682] = 1612, - [1683] = 1645, - [1684] = 1684, - [1685] = 1613, + [1659] = 1648, + [1660] = 1632, + [1661] = 1657, + [1662] = 1658, + [1663] = 1651, + [1664] = 1657, + [1665] = 1630, + [1666] = 1631, + [1667] = 1639, + [1668] = 1668, + [1669] = 1632, + [1670] = 1670, + [1671] = 1639, + [1672] = 1672, + [1673] = 1632, + [1674] = 1631, + [1675] = 1630, + [1676] = 1648, + [1677] = 1658, + [1678] = 1678, + [1679] = 1631, + [1680] = 1651, + [1681] = 1657, + [1682] = 1630, + [1683] = 1657, + [1684] = 1631, + [1685] = 1658, [1686] = 1686, - [1687] = 1606, - [1688] = 1614, - [1689] = 1611, - [1690] = 1613, - [1691] = 1686, - [1692] = 1692, - [1693] = 1693, - [1694] = 1692, - [1695] = 1695, - [1696] = 1696, - [1697] = 1692, - [1698] = 1698, - [1699] = 1699, - [1700] = 1698, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1704, - [1705] = 1705, - [1706] = 1698, - [1707] = 1692, - [1708] = 1702, - [1709] = 1703, - [1710] = 1703, - [1711] = 1702, - [1712] = 1703, - [1713] = 1713, - [1714] = 1702, - [1715] = 1703, - [1716] = 1702, - [1717] = 1702, - [1718] = 1703, + [1687] = 1630, + [1688] = 1639, + [1689] = 1632, + [1690] = 1632, + [1691] = 1657, + [1692] = 1658, + [1693] = 1651, + [1694] = 1648, + [1695] = 1658, + [1696] = 1636, + [1697] = 1630, + [1698] = 1648, + [1699] = 1639, + [1700] = 1631, + [1701] = 1631, + [1702] = 1658, + [1703] = 1653, + [1704] = 1670, + [1705] = 1678, + [1706] = 1632, + [1707] = 1657, + [1708] = 1657, + [1709] = 1658, + [1710] = 1657, + [1711] = 1639, + [1712] = 1630, + [1713] = 1648, + [1714] = 1658, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, [1719] = 1719, - [1720] = 1720, - [1721] = 1721, - [1722] = 1692, + [1720] = 1716, + [1721] = 1718, + [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1725, - [1726] = 1719, - [1727] = 1699, - [1728] = 1703, - [1729] = 1696, - [1730] = 1692, - [1731] = 1721, - [1732] = 1692, - [1733] = 1698, - [1734] = 1698, - [1735] = 1702, - [1736] = 1702, - [1737] = 1703, - [1738] = 1692, - [1739] = 1698, - [1740] = 1702, - [1741] = 1693, - [1742] = 1720, - [1743] = 1703, - [1744] = 1744, - [1745] = 1703, - [1746] = 1692, - [1747] = 1692, - [1748] = 1702, - [1749] = 1692, - [1750] = 1698, - [1751] = 1703, - [1752] = 1698, - [1753] = 1701, - [1754] = 1702, - [1755] = 1703, - [1756] = 1698, - [1757] = 1692, - [1758] = 1698, - [1759] = 1713, - [1760] = 1702, - [1761] = 1744, - [1762] = 1698, - [1763] = 1704, - [1764] = 1705, - [1765] = 1698, - [1766] = 290, - [1767] = 293, - [1768] = 323, - [1769] = 379, - [1770] = 374, - [1771] = 299, - [1772] = 304, - [1773] = 315, - [1774] = 375, - [1775] = 320, - [1776] = 377, - [1777] = 321, - [1778] = 295, - [1779] = 322, - [1780] = 318, - [1781] = 363, - [1782] = 373, - [1783] = 324, - [1784] = 298, - [1785] = 339, - [1786] = 327, - [1787] = 319, - [1788] = 328, - [1789] = 314, - [1790] = 303, - [1791] = 307, - [1792] = 334, - [1793] = 329, - [1794] = 372, - [1795] = 354, - [1796] = 370, - [1797] = 301, - [1798] = 365, - [1799] = 371, - [1800] = 345, - [1801] = 333, - [1802] = 369, - [1803] = 332, - [1804] = 1804, - [1805] = 1805, - [1806] = 1806, - [1807] = 1805, - [1808] = 1806, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1815, - [1817] = 1815, - [1818] = 1815, - [1819] = 1815, - [1820] = 1815, - [1821] = 1815, - [1822] = 1822, - [1823] = 1822, - [1824] = 1815, - [1825] = 1822, - [1826] = 1822, - [1827] = 1815, - [1828] = 1822, - [1829] = 1815, - [1830] = 1815, - [1831] = 1815, - [1832] = 1815, - [1833] = 1815, - [1834] = 1815, - [1835] = 1822, + [1725] = 1716, + [1726] = 1726, + [1727] = 1718, + [1728] = 1719, + [1729] = 1716, + [1730] = 1730, + [1731] = 1726, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1726, + [1736] = 1716, + [1737] = 1737, + [1738] = 1734, + [1739] = 1719, + [1740] = 1740, + [1741] = 1716, + [1742] = 1726, + [1743] = 1737, + [1744] = 1719, + [1745] = 1745, + [1746] = 1718, + [1747] = 1718, + [1748] = 1748, + [1749] = 1715, + [1750] = 1719, + [1751] = 1718, + [1752] = 1718, + [1753] = 1726, + [1754] = 1718, + [1755] = 1716, + [1756] = 1719, + [1757] = 1718, + [1758] = 1726, + [1759] = 1726, + [1760] = 1716, + [1761] = 1716, + [1762] = 1719, + [1763] = 1719, + [1764] = 1764, + [1765] = 1719, + [1766] = 1716, + [1767] = 1726, + [1768] = 1717, + [1769] = 1726, + [1770] = 1719, + [1771] = 1740, + [1772] = 1772, + [1773] = 1726, + [1774] = 1730, + [1775] = 1718, + [1776] = 1719, + [1777] = 1726, + [1778] = 1722, + [1779] = 1719, + [1780] = 1718, + [1781] = 1726, + [1782] = 1724, + [1783] = 1716, + [1784] = 1723, + [1785] = 1718, + [1786] = 1716, + [1787] = 1748, + [1788] = 1745, + [1789] = 293, + [1790] = 292, + [1791] = 348, + [1792] = 312, + [1793] = 321, + [1794] = 322, + [1795] = 324, + [1796] = 330, + [1797] = 332, + [1798] = 358, + [1799] = 356, + [1800] = 294, + [1801] = 361, + [1802] = 363, + [1803] = 374, + [1804] = 298, + [1805] = 300, + [1806] = 302, + [1807] = 360, + [1808] = 307, + [1809] = 308, + [1810] = 310, + [1811] = 311, + [1812] = 314, + [1813] = 315, + [1814] = 317, + [1815] = 318, + [1816] = 319, + [1817] = 320, + [1818] = 359, + [1819] = 323, + [1820] = 357, + [1821] = 313, + [1822] = 306, + [1823] = 353, + [1824] = 352, + [1825] = 354, + [1826] = 296, + [1827] = 303, + [1828] = 1828, + [1829] = 1829, + [1830] = 1830, + [1831] = 1829, + [1832] = 1830, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 1838, - [1840] = 1840, - [1841] = 312, - [1842] = 1840, - [1843] = 316, - [1844] = 1838, - [1845] = 1837, + [1839] = 1839, + [1840] = 1839, + [1841] = 1839, + [1842] = 1839, + [1843] = 1839, + [1844] = 1844, + [1845] = 1839, [1846] = 1846, - [1847] = 1838, - [1848] = 1846, - [1849] = 310, - [1850] = 1840, - [1851] = 1840, - [1852] = 1838, - [1853] = 1837, - [1854] = 1840, - [1855] = 1838, - [1856] = 1837, - [1857] = 1857, - [1858] = 1840, - [1859] = 1838, - [1860] = 1837, - [1861] = 1840, + [1847] = 1839, + [1848] = 1844, + [1849] = 1839, + [1850] = 1839, + [1851] = 1839, + [1852] = 1839, + [1853] = 1839, + [1854] = 1844, + [1855] = 1839, + [1856] = 1839, + [1857] = 1844, + [1858] = 1839, + [1859] = 1844, + [1860] = 1844, + [1861] = 1861, [1862] = 1862, - [1863] = 1838, - [1864] = 1837, - [1865] = 1840, - [1866] = 1838, - [1867] = 1837, - [1868] = 1840, - [1869] = 1838, - [1870] = 1838, - [1871] = 1837, - [1872] = 1837, - [1873] = 1873, - [1874] = 1838, - [1875] = 1837, - [1876] = 1838, - [1877] = 1846, - [1878] = 1838, - [1879] = 1838, - [1880] = 1837, - [1881] = 1837, - [1882] = 1873, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1883, - [1894] = 1894, - [1895] = 342, - [1896] = 1891, - [1897] = 1897, - [1898] = 1898, - [1899] = 1894, - [1900] = 1888, - [1901] = 1887, - [1902] = 1902, - [1903] = 1887, - [1904] = 1904, - [1905] = 1885, - [1906] = 1883, - [1907] = 1894, - [1908] = 1897, + [1863] = 1861, + [1864] = 1861, + [1865] = 1865, + [1866] = 1865, + [1867] = 1861, + [1868] = 1868, + [1869] = 1862, + [1870] = 1862, + [1871] = 1861, + [1872] = 1872, + [1873] = 1862, + [1874] = 1865, + [1875] = 1865, + [1876] = 1862, + [1877] = 1862, + [1878] = 304, + [1879] = 1879, + [1880] = 1862, + [1881] = 1881, + [1882] = 1861, + [1883] = 1862, + [1884] = 340, + [1885] = 1872, + [1886] = 1865, + [1887] = 1868, + [1888] = 1862, + [1889] = 1861, + [1890] = 1865, + [1891] = 1862, + [1892] = 1861, + [1893] = 1865, + [1894] = 1862, + [1895] = 1868, + [1896] = 1861, + [1897] = 1861, + [1898] = 1861, + [1899] = 1865, + [1900] = 1865, + [1901] = 1862, + [1902] = 1862, + [1903] = 305, + [1904] = 1862, + [1905] = 1862, + [1906] = 1861, + [1907] = 1907, + [1908] = 1907, [1909] = 1909, [1910] = 1910, - [1911] = 1910, + [1911] = 1911, [1912] = 1912, [1913] = 1913, - [1914] = 1912, + [1914] = 1914, [1915] = 1915, - [1916] = 1910, + [1916] = 1912, [1917] = 1917, - [1918] = 1918, - [1919] = 1919, + [1918] = 1911, + [1919] = 1910, [1920] = 1920, - [1921] = 316, - [1922] = 1910, - [1923] = 1912, - [1924] = 1910, - [1925] = 1912, - [1926] = 1926, - [1927] = 1912, - [1928] = 1910, - [1929] = 1912, - [1930] = 1910, - [1931] = 1912, - [1932] = 1932, - [1933] = 1912, - [1934] = 1910, - [1935] = 1912, - [1936] = 1910, - [1937] = 1912, - [1938] = 1910, - [1939] = 1912, - [1940] = 1940, - [1941] = 312, - [1942] = 1912, - [1943] = 1943, - [1944] = 310, - [1945] = 1910, - [1946] = 1910, - [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1949, - [1951] = 1948, - [1952] = 1949, - [1953] = 1953, - [1954] = 1954, + [1921] = 1910, + [1922] = 1922, + [1923] = 1923, + [1924] = 1909, + [1925] = 1925, + [1926] = 1920, + [1927] = 1911, + [1928] = 1928, + [1929] = 1909, + [1930] = 329, + [1931] = 1931, + [1932] = 1915, + [1933] = 1933, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1936, + [1940] = 1937, + [1941] = 1936, + [1942] = 1937, + [1943] = 1936, + [1944] = 1937, + [1945] = 1936, + [1946] = 1937, + [1947] = 1936, + [1948] = 1937, + [1949] = 1936, + [1950] = 1950, + [1951] = 1936, + [1952] = 1937, + [1953] = 1936, + [1954] = 1937, [1955] = 1955, [1956] = 1956, - [1957] = 1948, - [1958] = 1949, + [1957] = 1936, + [1958] = 1958, [1959] = 1959, - [1960] = 1960, - [1961] = 1947, + [1960] = 304, + [1961] = 305, [1962] = 1962, [1963] = 1963, - [1964] = 1948, - [1965] = 1948, - [1966] = 1948, - [1967] = 316, - [1968] = 1968, - [1969] = 1969, - [1970] = 1970, + [1964] = 1937, + [1965] = 1937, + [1966] = 1936, + [1967] = 340, + [1968] = 1936, + [1969] = 1937, + [1970] = 1937, [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1974, + [1974] = 1971, [1975] = 1975, [1976] = 1976, [1977] = 1977, [1978] = 1978, [1979] = 1979, - [1980] = 1968, - [1981] = 1963, - [1982] = 1948, - [1983] = 1971, - [1984] = 1971, - [1985] = 1970, - [1986] = 1972, - [1987] = 1949, - [1988] = 1988, + [1980] = 1980, + [1981] = 1972, + [1982] = 1976, + [1983] = 1977, + [1984] = 1978, + [1985] = 1985, + [1986] = 1986, + [1987] = 1980, + [1988] = 1972, [1989] = 1989, - [1990] = 1989, + [1990] = 1990, [1991] = 1991, - [1992] = 1968, - [1993] = 1971, - [1994] = 1968, - [1995] = 1969, - [1996] = 1971, - [1997] = 1997, - [1998] = 1979, - [1999] = 310, - [2000] = 1963, - [2001] = 1969, - [2002] = 1979, - [2003] = 1963, - [2004] = 1969, - [2005] = 1979, - [2006] = 1963, - [2007] = 2007, - [2008] = 1989, - [2009] = 1968, - [2010] = 1997, - [2011] = 2011, - [2012] = 1969, - [2013] = 1979, - [2014] = 2014, - [2015] = 1963, - [2016] = 1969, - [2017] = 1979, - [2018] = 1963, - [2019] = 1969, - [2020] = 1979, - [2021] = 1963, - [2022] = 2022, - [2023] = 1948, - [2024] = 1969, - [2025] = 1979, - [2026] = 1963, - [2027] = 1949, - [2028] = 1969, - [2029] = 1979, - [2030] = 1963, - [2031] = 1969, - [2032] = 1979, - [2033] = 1963, - [2034] = 1949, - [2035] = 1969, - [2036] = 1979, - [2037] = 1963, - [2038] = 2022, - [2039] = 2039, - [2040] = 1989, - [2041] = 1968, + [1992] = 1976, + [1993] = 1977, + [1994] = 1978, + [1995] = 1971, + [1996] = 1980, + [1997] = 1972, + [1998] = 1976, + [1999] = 1977, + [2000] = 1978, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 1971, + [2005] = 2005, + [2006] = 1976, + [2007] = 1977, + [2008] = 1978, + [2009] = 2009, + [2010] = 2010, + [2011] = 1976, + [2012] = 1976, + [2013] = 1977, + [2014] = 1978, + [2015] = 2015, + [2016] = 1976, + [2017] = 1977, + [2018] = 1978, + [2019] = 2019, + [2020] = 1976, + [2021] = 1977, + [2022] = 1978, + [2023] = 2023, + [2024] = 1977, + [2025] = 1976, + [2026] = 1977, + [2027] = 1978, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 1971, + [2032] = 1976, + [2033] = 1977, + [2034] = 1978, + [2035] = 2035, + [2036] = 1976, + [2037] = 1977, + [2038] = 1976, + [2039] = 1977, + [2040] = 2040, + [2041] = 2041, [2042] = 2042, [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 1968, - [2047] = 1971, - [2048] = 1971, - [2049] = 1989, - [2050] = 1971, - [2051] = 2051, + [2046] = 2046, + [2047] = 2044, + [2048] = 1980, + [2049] = 2049, + [2050] = 2050, + [2051] = 1972, [2052] = 2052, [2053] = 2053, - [2054] = 2043, + [2054] = 305, [2055] = 2055, - [2056] = 2007, - [2057] = 2057, - [2058] = 1948, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, + [2056] = 1971, + [2057] = 1980, + [2058] = 1972, + [2059] = 1980, + [2060] = 1976, + [2061] = 2041, + [2062] = 1977, [2063] = 2063, - [2064] = 1968, - [2065] = 1971, - [2066] = 1979, - [2067] = 2039, - [2068] = 2045, - [2069] = 2043, - [2070] = 2070, - [2071] = 2045, - [2072] = 2072, - [2073] = 2039, - [2074] = 1948, - [2075] = 2043, - [2076] = 2045, - [2077] = 1949, - [2078] = 2039, - [2079] = 1969, - [2080] = 2043, - [2081] = 2045, - [2082] = 1948, - [2083] = 2039, - [2084] = 312, - [2085] = 2043, - [2086] = 2045, - [2087] = 1948, - [2088] = 2039, - [2089] = 1949, - [2090] = 2043, - [2091] = 2045, - [2092] = 2092, - [2093] = 2039, - [2094] = 1989, - [2095] = 2043, - [2096] = 2045, - [2097] = 1989, - [2098] = 2039, - [2099] = 2099, - [2100] = 2043, - [2101] = 2045, - [2102] = 1989, - [2103] = 2039, - [2104] = 1989, - [2105] = 2043, - [2106] = 2045, - [2107] = 2011, - [2108] = 2039, - [2109] = 1948, - [2110] = 2043, - [2111] = 2045, - [2112] = 2039, - [2113] = 2043, - [2114] = 2045, - [2115] = 1949, - [2116] = 1955, - [2117] = 1959, - [2118] = 2055, - [2119] = 2119, - [2120] = 1968, - [2121] = 1959, - [2122] = 2039, - [2123] = 1970, - [2124] = 1955, - [2125] = 2055, - [2126] = 1955, - [2127] = 2055, - [2128] = 1955, - [2129] = 2055, - [2130] = 1955, - [2131] = 2055, - [2132] = 1955, - [2133] = 2055, - [2134] = 1955, - [2135] = 2055, - [2136] = 1955, - [2137] = 2055, - [2138] = 1955, - [2139] = 2055, - [2140] = 1955, - [2141] = 2055, - [2142] = 1955, - [2143] = 2055, - [2144] = 1972, - [2145] = 1947, - [2146] = 1948, - [2147] = 1949, - [2148] = 1949, - [2149] = 2149, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2163, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2167, - [2170] = 2170, - [2171] = 2171, - [2172] = 2172, - [2173] = 2173, - [2174] = 2151, - [2175] = 376, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2156, - [2180] = 2180, - [2181] = 2181, + [2064] = 2044, + [2065] = 2050, + [2066] = 2066, + [2067] = 2067, + [2068] = 2041, + [2069] = 1978, + [2070] = 2044, + [2071] = 2050, + [2072] = 340, + [2073] = 2073, + [2074] = 2041, + [2075] = 2044, + [2076] = 2050, + [2077] = 1989, + [2078] = 2041, + [2079] = 2044, + [2080] = 2050, + [2081] = 2041, + [2082] = 2044, + [2083] = 2050, + [2084] = 2041, + [2085] = 2044, + [2086] = 2050, + [2087] = 304, + [2088] = 2044, + [2089] = 2050, + [2090] = 2090, + [2091] = 1972, + [2092] = 2041, + [2093] = 2044, + [2094] = 2050, + [2095] = 2095, + [2096] = 2096, + [2097] = 2041, + [2098] = 2044, + [2099] = 2050, + [2100] = 2041, + [2101] = 2044, + [2102] = 2050, + [2103] = 2035, + [2104] = 2040, + [2105] = 2105, + [2106] = 1990, + [2107] = 1978, + [2108] = 2046, + [2109] = 1980, + [2110] = 1972, + [2111] = 1971, + [2112] = 2095, + [2113] = 2113, + [2114] = 2090, + [2115] = 2050, + [2116] = 2015, + [2117] = 2117, + [2118] = 1971, + [2119] = 1980, + [2120] = 1972, + [2121] = 2063, + [2122] = 2066, + [2123] = 2041, + [2124] = 2040, + [2125] = 1990, + [2126] = 2046, + [2127] = 2073, + [2128] = 2040, + [2129] = 1990, + [2130] = 2046, + [2131] = 2040, + [2132] = 1990, + [2133] = 2046, + [2134] = 2040, + [2135] = 2063, + [2136] = 1990, + [2137] = 2046, + [2138] = 2040, + [2139] = 1971, + [2140] = 1990, + [2141] = 2046, + [2142] = 2040, + [2143] = 1990, + [2144] = 2046, + [2145] = 2040, + [2146] = 1990, + [2147] = 2046, + [2148] = 2040, + [2149] = 1990, + [2150] = 2046, + [2151] = 2040, + [2152] = 1990, + [2153] = 2046, + [2154] = 2040, + [2155] = 1990, + [2156] = 2046, + [2157] = 1989, + [2158] = 2035, + [2159] = 2117, + [2160] = 1991, + [2161] = 2066, + [2162] = 2117, + [2163] = 1991, + [2164] = 2117, + [2165] = 1991, + [2166] = 2117, + [2167] = 1991, + [2168] = 2117, + [2169] = 1991, + [2170] = 2117, + [2171] = 1991, + [2172] = 2117, + [2173] = 1991, + [2174] = 2117, + [2175] = 1991, + [2176] = 2117, + [2177] = 1991, + [2178] = 2117, + [2179] = 1991, + [2180] = 2117, + [2181] = 1991, [2182] = 2182, [2183] = 2183, - [2184] = 2167, - [2185] = 2185, - [2186] = 2186, - [2187] = 2165, + [2184] = 2184, + [2185] = 1980, + [2186] = 2041, + [2187] = 2187, [2188] = 2188, [2189] = 2189, [2190] = 2190, - [2191] = 2156, - [2192] = 2171, + [2191] = 2191, + [2192] = 2192, [2193] = 2193, - [2194] = 2171, + [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2151, - [2198] = 2180, - [2199] = 2151, - [2200] = 2162, + [2197] = 2196, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, [2201] = 2201, - [2202] = 2156, + [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2190, + [2205] = 2188, [2206] = 2206, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2173, - [2211] = 2211, - [2212] = 2152, + [2210] = 2201, + [2211] = 2202, + [2212] = 2193, [2213] = 2213, - [2214] = 2150, - [2215] = 2208, - [2216] = 2156, + [2214] = 2190, + [2215] = 2207, + [2216] = 2216, [2217] = 2217, - [2218] = 2183, - [2219] = 2156, - [2220] = 2220, - [2221] = 2153, + [2218] = 2194, + [2219] = 2219, + [2220] = 2196, + [2221] = 2193, [2222] = 2222, - [2223] = 2213, - [2224] = 2149, + [2223] = 2199, + [2224] = 2224, [2225] = 2225, - [2226] = 2186, + [2226] = 2196, [2227] = 2227, - [2228] = 2156, - [2229] = 2203, - [2230] = 2195, - [2231] = 2157, - [2232] = 2158, - [2233] = 2233, - [2234] = 2160, - [2235] = 2196, - [2236] = 2161, - [2237] = 2237, - [2238] = 2238, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2203, + [2232] = 2232, + [2233] = 2190, + [2234] = 2234, + [2235] = 2227, + [2236] = 2236, + [2237] = 2193, + [2238] = 2190, [2239] = 2239, - [2240] = 2240, - [2241] = 2177, - [2242] = 2242, - [2243] = 2177, + [2240] = 2239, + [2241] = 2241, + [2242] = 2194, + [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2167, - [2248] = 2248, - [2249] = 2249, + [2247] = 2199, + [2248] = 2236, + [2249] = 2239, [2250] = 2250, [2251] = 2251, [2252] = 2252, - [2253] = 2176, - [2254] = 2254, - [2255] = 2255, - [2256] = 2180, - [2257] = 2153, - [2258] = 2172, - [2259] = 2183, + [2253] = 2227, + [2254] = 2224, + [2255] = 2224, + [2256] = 2208, + [2257] = 2225, + [2258] = 2236, + [2259] = 2194, [2260] = 2260, - [2261] = 2177, - [2262] = 2262, - [2263] = 2162, - [2264] = 2242, - [2265] = 2185, - [2266] = 2266, - [2267] = 2157, + [2261] = 2217, + [2262] = 2199, + [2263] = 2263, + [2264] = 2206, + [2265] = 2250, + [2266] = 2199, + [2267] = 2267, [2268] = 2268, - [2269] = 2203, + [2269] = 2269, [2270] = 2270, - [2271] = 2165, - [2272] = 2150, + [2271] = 2271, + [2272] = 2272, [2273] = 2273, [2274] = 2274, - [2275] = 2190, - [2276] = 2268, - [2277] = 2268, - [2278] = 2195, - [2279] = 2279, - [2280] = 2162, - [2281] = 2203, - [2282] = 2204, - [2283] = 2240, - [2284] = 2158, - [2285] = 2260, - [2286] = 2153, - [2287] = 2156, - [2288] = 2173, - [2289] = 2289, - [2290] = 2152, - [2291] = 2204, - [2292] = 2208, - [2293] = 2157, - [2294] = 2153, - [2295] = 2158, - [2296] = 2204, - [2297] = 2157, - [2298] = 2158, - [2299] = 2299, - [2300] = 2196, - [2301] = 2237, - [2302] = 2160, - [2303] = 2161, - [2304] = 2252, - [2305] = 2190, - [2306] = 2248, - [2307] = 2268, - [2308] = 2150, - [2309] = 2150, - [2310] = 2189, - [2311] = 2311, - [2312] = 2160, - [2313] = 2240, - [2314] = 2161, - [2315] = 2315, - [2316] = 2160, - [2317] = 2222, - [2318] = 2149, - [2319] = 2225, - [2320] = 2186, - [2321] = 2321, - [2322] = 2167, - [2323] = 2171, - [2324] = 2324, - [2325] = 2244, - [2326] = 2245, - [2327] = 2246, - [2328] = 2173, - [2329] = 2149, + [2275] = 2227, + [2276] = 2263, + [2277] = 2277, + [2278] = 2278, + [2279] = 2241, + [2280] = 2252, + [2281] = 2250, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2203, + [2286] = 2199, + [2287] = 2201, + [2288] = 2208, + [2289] = 2229, + [2290] = 2224, + [2291] = 2291, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2230, + [2296] = 2296, + [2297] = 2260, + [2298] = 2278, + [2299] = 2196, + [2300] = 2300, + [2301] = 2243, + [2302] = 2203, + [2303] = 2303, + [2304] = 2304, + [2305] = 2260, + [2306] = 2252, + [2307] = 2191, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2250, + [2312] = 2188, + [2313] = 2203, + [2314] = 2314, + [2315] = 2310, + [2316] = 2222, + [2317] = 2236, + [2318] = 2318, + [2319] = 2319, + [2320] = 2195, + [2321] = 2187, + [2322] = 371, + [2323] = 2269, + [2324] = 2191, + [2325] = 2208, + [2326] = 2217, + [2327] = 2199, + [2328] = 2328, + [2329] = 2201, [2330] = 2330, - [2331] = 2262, - [2332] = 2151, + [2331] = 2202, + [2332] = 2332, [2333] = 2333, - [2334] = 2176, - [2335] = 2270, + [2334] = 2206, + [2335] = 2207, [2336] = 2336, - [2337] = 2273, - [2338] = 2180, - [2339] = 2339, - [2340] = 2222, - [2341] = 2149, - [2342] = 2225, - [2343] = 2186, - [2344] = 2344, - [2345] = 2183, - [2346] = 2152, - [2347] = 2161, - [2348] = 2185, - [2349] = 2349, - [2350] = 2153, - [2351] = 2262, - [2352] = 2165, - [2353] = 2208, - [2354] = 2254, - [2355] = 2270, - [2356] = 2190, - [2357] = 2273, - [2358] = 2182, - [2359] = 2359, - [2360] = 2222, - [2361] = 2149, - [2362] = 2225, - [2363] = 2186, - [2364] = 2195, - [2365] = 2365, - [2366] = 2156, - [2367] = 2162, - [2368] = 2203, - [2369] = 2204, + [2337] = 2337, + [2338] = 2338, + [2339] = 2190, + [2340] = 2219, + [2341] = 2190, + [2342] = 2342, + [2343] = 2217, + [2344] = 2196, + [2345] = 2345, + [2346] = 2346, + [2347] = 2193, + [2348] = 2282, + [2349] = 2284, + [2350] = 2196, + [2351] = 2351, + [2352] = 2352, + [2353] = 2217, + [2354] = 2230, + [2355] = 2222, + [2356] = 2195, + [2357] = 2260, + [2358] = 2351, + [2359] = 2204, + [2360] = 2360, + [2361] = 2234, + [2362] = 2201, + [2363] = 2304, + [2364] = 2360, + [2365] = 2269, + [2366] = 2271, + [2367] = 2272, + [2368] = 2273, + [2369] = 2369, [2370] = 2370, - [2371] = 2262, + [2371] = 2190, [2372] = 2372, - [2373] = 2153, - [2374] = 2227, - [2375] = 2270, + [2373] = 2291, + [2374] = 2292, + [2375] = 2293, [2376] = 2376, - [2377] = 2273, - [2378] = 2157, - [2379] = 2158, - [2380] = 2222, - [2381] = 2149, - [2382] = 2225, - [2383] = 2186, - [2384] = 2173, - [2385] = 2385, - [2386] = 2160, - [2387] = 2152, - [2388] = 2270, - [2389] = 2208, - [2390] = 2177, - [2391] = 2262, - [2392] = 2161, - [2393] = 2157, - [2394] = 2153, - [2395] = 2270, - [2396] = 2167, - [2397] = 2273, - [2398] = 2398, - [2399] = 2157, - [2400] = 2222, - [2401] = 2152, - [2402] = 2225, - [2403] = 2186, - [2404] = 2158, - [2405] = 2405, - [2406] = 2406, - [2407] = 2262, - [2408] = 2385, - [2409] = 2151, - [2410] = 2270, - [2411] = 2160, - [2412] = 2273, - [2413] = 2161, - [2414] = 2166, - [2415] = 2222, - [2416] = 2149, - [2417] = 2225, - [2418] = 2186, - [2419] = 2196, - [2420] = 2420, - [2421] = 2225, - [2422] = 2262, - [2423] = 2423, - [2424] = 2405, - [2425] = 2270, - [2426] = 2167, - [2427] = 2273, - [2428] = 2167, - [2429] = 2429, - [2430] = 2222, - [2431] = 2149, - [2432] = 2225, - [2433] = 2186, - [2434] = 2249, - [2435] = 2171, - [2436] = 2250, - [2437] = 2262, - [2438] = 2158, - [2439] = 2439, - [2440] = 2270, - [2441] = 2151, - [2442] = 2273, - [2443] = 2176, - [2444] = 2444, - [2445] = 2222, - [2446] = 2149, - [2447] = 2225, - [2448] = 2186, - [2449] = 2180, - [2450] = 2248, - [2451] = 2171, - [2452] = 2262, - [2453] = 2171, - [2454] = 2454, - [2455] = 2270, - [2456] = 2279, - [2457] = 2273, - [2458] = 2183, + [2377] = 2263, + [2378] = 2222, + [2379] = 2310, + [2380] = 2380, + [2381] = 2194, + [2382] = 2203, + [2383] = 2318, + [2384] = 2384, + [2385] = 2187, + [2386] = 2278, + [2387] = 2227, + [2388] = 2269, + [2389] = 2271, + [2390] = 2272, + [2391] = 2273, + [2392] = 2194, + [2393] = 2187, + [2394] = 367, + [2395] = 2191, + [2396] = 2188, + [2397] = 2222, + [2398] = 2199, + [2399] = 2310, + [2400] = 2252, + [2401] = 2202, + [2402] = 2239, + [2403] = 2318, + [2404] = 2263, + [2405] = 2187, + [2406] = 2222, + [2407] = 2202, + [2408] = 2269, + [2409] = 2271, + [2410] = 2272, + [2411] = 2273, + [2412] = 2412, + [2413] = 2191, + [2414] = 2227, + [2415] = 2236, + [2416] = 2195, + [2417] = 2250, + [2418] = 2227, + [2419] = 2310, + [2420] = 2304, + [2421] = 2194, + [2422] = 2263, + [2423] = 2318, + [2424] = 2204, + [2425] = 2187, + [2426] = 2191, + [2427] = 2224, + [2428] = 2269, + [2429] = 2271, + [2430] = 2272, + [2431] = 2273, + [2432] = 2201, + [2433] = 2278, + [2434] = 2202, + [2435] = 2201, + [2436] = 2202, + [2437] = 2195, + [2438] = 2438, + [2439] = 2310, + [2440] = 2217, + [2441] = 2206, + [2442] = 2200, + [2443] = 2318, + [2444] = 2239, + [2445] = 2187, + [2446] = 2446, + [2447] = 2447, + [2448] = 2269, + [2449] = 2271, + [2450] = 2272, + [2451] = 2273, + [2452] = 2206, + [2453] = 2208, + [2454] = 2224, + [2455] = 2310, + [2456] = 2206, + [2457] = 2369, + [2458] = 2318, [2459] = 2459, - [2460] = 2222, - [2461] = 2149, - [2462] = 2225, - [2463] = 2186, - [2464] = 2185, - [2465] = 2176, - [2466] = 2156, - [2467] = 2262, - [2468] = 2177, - [2469] = 2359, - [2470] = 2270, - [2471] = 2165, - [2472] = 2273, - [2473] = 2473, - [2474] = 2190, - [2475] = 2222, - [2476] = 2149, - [2477] = 2225, - [2478] = 2186, - [2479] = 2180, - [2480] = 2248, - [2481] = 2262, - [2482] = 2251, - [2483] = 2483, - [2484] = 2270, - [2485] = 2485, - [2486] = 2273, - [2487] = 2195, - [2488] = 2149, - [2489] = 2225, - [2490] = 2149, - [2491] = 2225, - [2492] = 2159, - [2493] = 2211, - [2494] = 2311, - [2495] = 2189, - [2496] = 2237, - [2497] = 2162, - [2498] = 2311, - [2499] = 2203, - [2500] = 2204, - [2501] = 2501, - [2502] = 2183, - [2503] = 2233, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2173, - [2508] = 2508, - [2509] = 2173, - [2510] = 2176, - [2511] = 2152, - [2512] = 2240, - [2513] = 2207, - [2514] = 2459, - [2515] = 2330, - [2516] = 2208, - [2517] = 2150, - [2518] = 2518, - [2519] = 2153, - [2520] = 2177, - [2521] = 2349, - [2522] = 2522, - [2523] = 2167, - [2524] = 2524, - [2525] = 2157, - [2526] = 2158, - [2527] = 2185, - [2528] = 2160, - [2529] = 2222, - [2530] = 2161, - [2531] = 2165, - [2532] = 2180, - [2533] = 2206, - [2534] = 2534, - [2535] = 2180, - [2536] = 2429, - [2537] = 2537, - [2538] = 2538, - [2539] = 2167, - [2540] = 2190, - [2541] = 2541, - [2542] = 2542, - [2543] = 2168, - [2544] = 2176, - [2545] = 2545, - [2546] = 2180, - [2547] = 2160, - [2548] = 2483, - [2549] = 2183, - [2550] = 2183, - [2551] = 2185, - [2552] = 2552, - [2553] = 2165, - [2554] = 2554, - [2555] = 2190, - [2556] = 2274, - [2557] = 2161, - [2558] = 2195, - [2559] = 2299, - [2560] = 2162, - [2561] = 2203, - [2562] = 2204, + [2460] = 2187, + [2461] = 2461, + [2462] = 2263, + [2463] = 2269, + [2464] = 2271, + [2465] = 2272, + [2466] = 2273, + [2467] = 2467, + [2468] = 2239, + [2469] = 2207, + [2470] = 2310, + [2471] = 2236, + [2472] = 2472, + [2473] = 2318, + [2474] = 2207, + [2475] = 2187, + [2476] = 2278, + [2477] = 2384, + [2478] = 2269, + [2479] = 2271, + [2480] = 2272, + [2481] = 2273, + [2482] = 2482, + [2483] = 2207, + [2484] = 2484, + [2485] = 2310, + [2486] = 2486, + [2487] = 2252, + [2488] = 2318, + [2489] = 2252, + [2490] = 2201, + [2491] = 2190, + [2492] = 2314, + [2493] = 2269, + [2494] = 2271, + [2495] = 2272, + [2496] = 2273, + [2497] = 2497, + [2498] = 2206, + [2499] = 2207, + [2500] = 2310, + [2501] = 2194, + [2502] = 2502, + [2503] = 2318, + [2504] = 2236, + [2505] = 2187, + [2506] = 2227, + [2507] = 2208, + [2508] = 2269, + [2509] = 2271, + [2510] = 2272, + [2511] = 2273, + [2512] = 2199, + [2513] = 2250, + [2514] = 2514, + [2515] = 2310, + [2516] = 2199, + [2517] = 2193, + [2518] = 2318, + [2519] = 2196, + [2520] = 2187, + [2521] = 2521, + [2522] = 2230, + [2523] = 2269, + [2524] = 2271, + [2525] = 2272, + [2526] = 2273, + [2527] = 2270, + [2528] = 2528, + [2529] = 2310, + [2530] = 2250, + [2531] = 2531, + [2532] = 2318, + [2533] = 2282, + [2534] = 2187, + [2535] = 2336, + [2536] = 2271, + [2537] = 2272, + [2538] = 2271, + [2539] = 2272, + [2540] = 2502, + [2541] = 2216, + [2542] = 2193, + [2543] = 2351, + [2544] = 2544, + [2545] = 2351, + [2546] = 2204, + [2547] = 2284, + [2548] = 2260, + [2549] = 2196, + [2550] = 2267, + [2551] = 2244, + [2552] = 2260, + [2553] = 2246, + [2554] = 2224, + [2555] = 2300, + [2556] = 2304, + [2557] = 2459, + [2558] = 2467, + [2559] = 2284, + [2560] = 2234, + [2561] = 2194, + [2562] = 2227, [2563] = 2563, - [2564] = 2439, - [2565] = 2171, - [2566] = 2185, - [2567] = 2185, - [2568] = 2173, - [2569] = 2569, - [2570] = 2152, - [2571] = 2273, - [2572] = 2208, - [2573] = 2165, - [2574] = 2153, - [2575] = 2155, - [2576] = 2151, - [2577] = 2157, - [2578] = 2158, - [2579] = 2524, - [2580] = 2160, - [2581] = 2161, - [2582] = 2189, - [2583] = 2504, - [2584] = 2195, - [2585] = 2208, - [2586] = 2167, - [2587] = 2162, - [2588] = 2240, - [2589] = 2485, - [2590] = 2156, - [2591] = 2248, - [2592] = 2193, - [2593] = 2593, - [2594] = 2268, - [2595] = 2150, - [2596] = 2176, - [2597] = 2238, - [2598] = 2180, - [2599] = 2203, - [2600] = 2190, - [2601] = 2183, - [2602] = 2268, - [2603] = 2185, - [2604] = 2321, - [2605] = 2165, - [2606] = 2606, - [2607] = 2190, - [2608] = 2376, - [2609] = 311, - [2610] = 2195, - [2611] = 2204, - [2612] = 2152, - [2613] = 2473, - [2614] = 2162, - [2615] = 2203, - [2616] = 2204, - [2617] = 2501, - [2618] = 2333, - [2619] = 2237, - [2620] = 2324, - [2621] = 2621, - [2622] = 2173, - [2623] = 2195, - [2624] = 2152, - [2625] = 2211, - [2626] = 2150, - [2627] = 2176, - [2628] = 2167, - [2629] = 2233, - [2630] = 2330, - [2631] = 2518, - [2632] = 2262, - [2633] = 2524, - [2634] = 2220, - [2635] = 2173, - [2636] = 2208, - [2637] = 2206, - [2638] = 2429, - [2639] = 2239, - [2640] = 2211, - [2641] = 357, - [2642] = 2152, - [2643] = 2534, - [2644] = 2233, - [2645] = 2330, - [2646] = 2518, - [2647] = 2208, - [2648] = 2524, - [2649] = 2244, + [2564] = 2188, + [2565] = 2565, + [2566] = 2566, + [2567] = 2199, + [2568] = 2191, + [2569] = 2438, + [2570] = 2203, + [2571] = 2571, + [2572] = 2193, + [2573] = 2370, + [2574] = 2230, + [2575] = 2188, + [2576] = 2208, + [2577] = 2577, + [2578] = 2227, + [2579] = 2227, + [2580] = 2580, + [2581] = 2202, + [2582] = 2582, + [2583] = 2227, + [2584] = 2304, + [2585] = 2585, + [2586] = 2586, + [2587] = 2230, + [2588] = 2239, + [2589] = 2304, + [2590] = 2528, + [2591] = 2206, + [2592] = 2207, + [2593] = 2207, + [2594] = 2239, + [2595] = 2482, + [2596] = 2203, + [2597] = 2577, + [2598] = 2224, + [2599] = 2599, + [2600] = 2252, + [2601] = 2376, + [2602] = 2602, + [2603] = 2582, + [2604] = 2236, + [2605] = 2484, + [2606] = 2193, + [2607] = 2250, + [2608] = 2227, + [2609] = 2196, + [2610] = 2610, + [2611] = 2611, + [2612] = 2612, + [2613] = 2201, + [2614] = 2234, + [2615] = 2188, + [2616] = 2200, + [2617] = 2260, + [2618] = 2213, + [2619] = 2195, + [2620] = 2318, + [2621] = 2224, + [2622] = 2191, + [2623] = 2203, + [2624] = 2624, + [2625] = 2232, + [2626] = 2227, + [2627] = 2245, + [2628] = 2304, + [2629] = 2268, + [2630] = 2283, + [2631] = 2195, + [2632] = 2201, + [2633] = 2190, + [2634] = 2239, + [2635] = 2217, + [2636] = 2586, + [2637] = 2234, + [2638] = 2236, + [2639] = 2188, + [2640] = 2230, + [2641] = 2291, + [2642] = 2250, + [2643] = 2222, + [2644] = 2195, + [2645] = 2645, + [2646] = 2224, + [2647] = 2202, + [2648] = 2648, + [2649] = 2217, [2650] = 2206, - [2651] = 2429, - [2652] = 2211, - [2653] = 2153, - [2654] = 2171, - [2655] = 2249, - [2656] = 2233, - [2657] = 2330, - [2658] = 2518, - [2659] = 2176, - [2660] = 2524, - [2661] = 2151, - [2662] = 2206, - [2663] = 2429, - [2664] = 2211, - [2665] = 2151, - [2666] = 2195, - [2667] = 2157, - [2668] = 2233, - [2669] = 2330, - [2670] = 2518, - [2671] = 2158, - [2672] = 2524, - [2673] = 2156, - [2674] = 2206, - [2675] = 2429, - [2676] = 2211, - [2677] = 2250, - [2678] = 2160, - [2679] = 2161, - [2680] = 2233, - [2681] = 2330, - [2682] = 2682, - [2683] = 2524, - [2684] = 2684, - [2685] = 2206, - [2686] = 2429, - [2687] = 2211, - [2688] = 2688, - [2689] = 2177, - [2690] = 2690, - [2691] = 2233, - [2692] = 2330, - [2693] = 2167, - [2694] = 2524, - [2695] = 2518, - [2696] = 2206, - [2697] = 2429, - [2698] = 2211, - [2699] = 2180, - [2700] = 2245, - [2701] = 2246, - [2702] = 2233, - [2703] = 2330, - [2704] = 2176, - [2705] = 2524, - [2706] = 2171, - [2707] = 2206, - [2708] = 2429, - [2709] = 2211, - [2710] = 2177, - [2711] = 2248, - [2712] = 2151, - [2713] = 2233, - [2714] = 2330, - [2715] = 2545, - [2716] = 2524, - [2717] = 2180, - [2718] = 2206, - [2719] = 2429, - [2720] = 2211, - [2721] = 2180, - [2722] = 2248, - [2723] = 2156, - [2724] = 2233, - [2725] = 2330, - [2726] = 2554, - [2727] = 2524, - [2728] = 2569, - [2729] = 2206, - [2730] = 2429, - [2731] = 2248, - [2732] = 2183, - [2733] = 2524, - [2734] = 2168, - [2735] = 2206, - [2736] = 2429, - [2737] = 2211, - [2738] = 2542, - [2739] = 2153, - [2740] = 2185, - [2741] = 2690, - [2742] = 2255, - [2743] = 2157, - [2744] = 2196, - [2745] = 2454, - [2746] = 2237, - [2747] = 2239, - [2748] = 2158, - [2749] = 2207, - [2750] = 2518, - [2751] = 2165, - [2752] = 2752, - [2753] = 2160, - [2754] = 2161, - [2755] = 2208, - [2756] = 2756, - [2757] = 2154, - [2758] = 2190, - [2759] = 2167, - [2760] = 2181, - [2761] = 2761, - [2762] = 2162, - [2763] = 2164, - [2764] = 2176, - [2765] = 2170, - [2766] = 2180, - [2767] = 2157, - [2768] = 2188, - [2769] = 2183, - [2770] = 2185, - [2771] = 2158, - [2772] = 2165, - [2773] = 2203, - [2774] = 2190, - [2775] = 2268, - [2776] = 2196, - [2777] = 2237, - [2778] = 2207, - [2779] = 2311, - [2780] = 2569, - [2781] = 2189, - [2782] = 2311, - [2783] = 2195, - [2784] = 2542, - [2785] = 2171, - [2786] = 2518, - [2787] = 2195, - [2788] = 2542, - [2789] = 2183, - [2790] = 2151, - [2791] = 2542, - [2792] = 2268, - [2793] = 2255, - [2794] = 2542, - [2795] = 2162, - [2796] = 2157, - [2797] = 2542, - [2798] = 2156, - [2799] = 2203, - [2800] = 2542, - [2801] = 2268, - [2802] = 2204, - [2803] = 2542, - [2804] = 2251, - [2805] = 2150, - [2806] = 2542, - [2807] = 2158, - [2808] = 2185, - [2809] = 2542, - [2810] = 2193, - [2811] = 2266, - [2812] = 2542, - [2813] = 2173, - [2814] = 2814, - [2815] = 2569, - [2816] = 2189, - [2817] = 2541, - [2818] = 2311, - [2819] = 2152, - [2820] = 2162, - [2821] = 2203, - [2822] = 2207, - [2823] = 2518, - [2824] = 2204, - [2825] = 2165, - [2826] = 2289, - [2827] = 2204, - [2828] = 2336, - [2829] = 2207, - [2830] = 2569, - [2831] = 2569, - [2832] = 2344, - [2833] = 2173, - [2834] = 2834, - [2835] = 2208, - [2836] = 2171, - [2837] = 2233, - [2838] = 2330, - [2839] = 2248, + [2651] = 2263, + [2652] = 2278, + [2653] = 2252, + [2654] = 2207, + [2655] = 2217, + [2656] = 2656, + [2657] = 2219, + [2658] = 2263, + [2659] = 2360, + [2660] = 2346, + [2661] = 2208, + [2662] = 2194, + [2663] = 2645, + [2664] = 2664, + [2665] = 2412, + [2666] = 2585, + [2667] = 2263, + [2668] = 2447, + [2669] = 2461, + [2670] = 2273, + [2671] = 2544, + [2672] = 2278, + [2673] = 2278, + [2674] = 2216, + [2675] = 2208, + [2676] = 2217, + [2677] = 2191, + [2678] = 2244, + [2679] = 2563, + [2680] = 2566, + [2681] = 2202, + [2682] = 2370, + [2683] = 2260, + [2684] = 2199, + [2685] = 2294, + [2686] = 2582, + [2687] = 2585, + [2688] = 2222, + [2689] = 2216, + [2690] = 2263, + [2691] = 2528, + [2692] = 2345, + [2693] = 2244, + [2694] = 2563, + [2695] = 2566, + [2696] = 2239, + [2697] = 2370, + [2698] = 2656, + [2699] = 2582, + [2700] = 2585, + [2701] = 2216, + [2702] = 2260, + [2703] = 2236, + [2704] = 2645, + [2705] = 2244, + [2706] = 2563, + [2707] = 2566, + [2708] = 2708, + [2709] = 2370, + [2710] = 2278, + [2711] = 2582, + [2712] = 2585, + [2713] = 2216, + [2714] = 2656, + [2715] = 2250, + [2716] = 2716, + [2717] = 2244, + [2718] = 2563, + [2719] = 2566, + [2720] = 2720, + [2721] = 2370, + [2722] = 2252, + [2723] = 2582, + [2724] = 2585, + [2725] = 2216, + [2726] = 2230, + [2727] = 2224, + [2728] = 2217, + [2729] = 2244, + [2730] = 2563, + [2731] = 2278, + [2732] = 2370, + [2733] = 2190, + [2734] = 2582, + [2735] = 2585, + [2736] = 2216, + [2737] = 2708, + [2738] = 2236, + [2739] = 2531, + [2740] = 2244, + [2741] = 2563, + [2742] = 2571, + [2743] = 2370, + [2744] = 2250, + [2745] = 2582, + [2746] = 2585, + [2747] = 2216, + [2748] = 2201, + [2749] = 2194, + [2750] = 2202, + [2751] = 2244, + [2752] = 2563, + [2753] = 2193, + [2754] = 2370, + [2755] = 2236, + [2756] = 2582, + [2757] = 2585, + [2758] = 2216, + [2759] = 2203, + [2760] = 2263, + [2761] = 2282, + [2762] = 2244, + [2763] = 2563, + [2764] = 2764, + [2765] = 2370, + [2766] = 2199, + [2767] = 2582, + [2768] = 2585, + [2769] = 2216, + [2770] = 2599, + [2771] = 2260, + [2772] = 2304, + [2773] = 2244, + [2774] = 2563, + [2775] = 2193, + [2776] = 2370, + [2777] = 2217, + [2778] = 2582, + [2779] = 2585, + [2780] = 2196, + [2781] = 2278, + [2782] = 2370, + [2783] = 2304, + [2784] = 2582, + [2785] = 2585, + [2786] = 2216, + [2787] = 2198, + [2788] = 2788, + [2789] = 2263, + [2790] = 2304, + [2791] = 2624, + [2792] = 2206, + [2793] = 2282, + [2794] = 2337, + [2795] = 2566, + [2796] = 2284, + [2797] = 2797, + [2798] = 2252, + [2799] = 2571, + [2800] = 2566, + [2801] = 2188, + [2802] = 2278, + [2803] = 2308, + [2804] = 2602, + [2805] = 2292, + [2806] = 2191, + [2807] = 2293, + [2808] = 2207, + [2809] = 2201, + [2810] = 2195, + [2811] = 2811, + [2812] = 2797, + [2813] = 2202, + [2814] = 364, + [2815] = 2252, + [2816] = 2206, + [2817] = 2252, + [2818] = 2260, + [2819] = 2207, + [2820] = 2304, + [2821] = 2188, + [2822] = 2188, + [2823] = 2239, + [2824] = 2811, + [2825] = 2191, + [2826] = 2282, + [2827] = 2284, + [2828] = 2571, + [2829] = 2203, + [2830] = 2345, + [2831] = 2351, + [2832] = 2204, + [2833] = 2277, + [2834] = 2198, + [2835] = 2446, + [2836] = 2566, + [2837] = 2271, + [2838] = 2198, + [2839] = 2612, + [2840] = 2190, + [2841] = 2198, + [2842] = 2274, + [2843] = 2202, + [2844] = 2198, + [2845] = 2224, + [2846] = 2194, + [2847] = 2198, + [2848] = 2203, + [2849] = 2188, + [2850] = 2198, + [2851] = 2563, + [2852] = 2708, + [2853] = 2198, + [2854] = 2199, + [2855] = 2272, + [2856] = 2198, + [2857] = 2201, + [2858] = 2206, + [2859] = 2198, + [2860] = 2202, + [2861] = 2250, + [2862] = 2198, + [2863] = 2260, + [2864] = 2193, + [2865] = 2345, + [2866] = 2351, + [2867] = 2372, + [2868] = 2204, + [2869] = 2193, + [2870] = 2870, + [2871] = 2193, + [2872] = 2571, + [2873] = 2566, + [2874] = 2196, + [2875] = 2230, + [2876] = 2239, + [2877] = 2190, + [2878] = 2196, + [2879] = 2571, + [2880] = 2345, + [2881] = 2345, + [2882] = 2304, + [2883] = 2196, + [2884] = 2191, + [2885] = 2222, + [2886] = 2886, + [2887] = 2244, + [2888] = 2563, + [2889] = 2201, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4332,9449 +4417,8845 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(456); + if (eof) ADVANCE(590); ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 622, - '(', 494, - ')', 495, - '*', 613, - '+', 608, - ',', 502, - '-', 605, - '.', 431, - '/', 615, - '0', 640, - ':', 470, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 652, - 'T', 649, - '[', 506, - ']', 507, - '^', 623, - 'a', 1021, - 'b', 1026, - 'c', 1017, - 'd', 1018, - 'e', 1024, - 'f', 1019, - 'g', 909, - 'h', 942, - 'i', 883, - 'l', 895, - 'm', 894, - 'n', 856, - 'o', 884, - 'p', 828, - 'r', 857, - 's', 842, - 't', 832, - 'u', 929, - 'v', 872, - 'w', 888, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 764, + '(', 625, + ')', 626, + '*', 755, + '+', 751, + ',', 633, + '-', 748, + '.', 565, + '/', 757, + '0', 783, + ':', 601, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 795, + 'T', 790, + '[', 636, + ']', 637, + '^', 765, + 'a', 104, + 'b', 109, + 'c', 100, + 'd', 101, + 'e', 107, + 'f', 102, + 'g', 360, + 'h', 421, + 'i', 297, + 'l', 329, + 'm', 330, + 'n', 238, + 'o', 299, + 'p', 173, + 'r', 239, + 's', 205, + 't', 177, + 'u', 396, + 'v', 260, + 'w', 320, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(0); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(1032); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(641); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(118); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(784); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(1188); + if (lookahead == '\n') ADVANCE(1228); END_STATE(); case 2: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 622, - '(', 494, - ')', 495, - '*', 613, - '+', 608, - ',', 502, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 470, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - ']', 507, - '^', 623, - '_', 1007, - 'a', 817, - 'c', 815, - 'f', 808, - 'h', 757, - 'i', 745, - 'l', 750, - 'r', 710, - 's', 681, - 't', 674, - 'v', 706, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 764, + '(', 625, + ')', 626, + '*', 755, + '+', 751, + ',', 633, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 602, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + ']', 637, + '^', 765, + '_', 1067, + 'a', 968, + 'c', 966, + 'f', 959, + 'h', 908, + 'i', 896, + 'l', 901, + 'r', 861, + 's', 832, + 't', 825, + 'v', 857, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(2); if (('A' <= lookahead && lookahead <= 'E') || - ('b' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('b' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 3: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - ')', 495, - '*', 613, - '+', 608, - ',', 502, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 470, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 124, - 'F', 650, - 'T', 647, - '[', 506, - ']', 507, - '^', 623, - '_', 1007, - 'a', 817, - 'c', 815, - 'f', 808, - 'h', 757, - 'i', 745, - 'l', 750, - 'r', 710, - 's', 681, - 't', 674, - 'v', 706, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + ')', 626, + '*', 755, + '+', 751, + ',', 633, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 602, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 148, + 'F', 793, + 'T', 791, + '[', 636, + ']', 637, + '^', 765, + '_', 1067, + 'a', 968, + 'c', 966, + 'f', 959, + 'h', 908, + 'i', 896, + 'l', 901, + 'r', 861, + 's', 832, + 't', 825, + 'v', 857, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); if (('A' <= lookahead && lookahead <= 'E') || - ('b' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('b' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 4: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(4); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 5: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 6: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(6); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 7: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(7); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 8: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '#', 1186, - '$', 596, - '%', 616, - '&', 622, - '(', 494, - ')', 495, - '*', 613, - '+', 609, - ',', 502, - '-', 606, - '/', 614, - ':', 469, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 190, - '[', 506, - ']', 507, - '^', 623, - 'a', 377, - 'c', 165, - 'd', 154, - 'e', 415, - 'f', 414, - 'g', 290, - 'h', 333, - 'i', 304, - 'm', 271, - 'o', 246, - 'r', 231, - 's', 225, - 't', 429, - 'u', 383, - '{', 464, - '|', 598, - '}', 465, + '!', 745, + '#', 1226, + '$', 739, + '%', 758, + '&', 764, + '(', 625, + ')', 626, + '*', 755, + '+', 752, + ',', 633, + '-', 749, + '/', 756, + ':', 600, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 230, + '[', 636, + ']', 637, + '^', 765, + 'a', 488, + 'd', 183, + 'h', 457, + 'i', 385, + 'm', 331, + 'o', 298, + 's', 269, + 'u', 493, + '{', 596, + '|', 741, + '}', 597, ); if (lookahead == '\t' || lookahead == ' ') SKIP(8); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(789); END_STATE(); case 9: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 602, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - ')', 495, - '*', 613, - '+', 609, - ',', 502, - '-', 606, - '/', 614, - ':', 469, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 190, - '[', 506, - ']', 507, - '^', 623, - 'a', 377, - 'c', 331, - 'd', 153, - 'e', 415, - 'f', 414, - 'g', 290, - 'h', 333, - 'i', 304, - 'm', 271, - 'o', 246, - 'r', 231, - 's', 225, - 't', 429, - 'u', 383, - '{', 464, - '|', 598, - '}', 465, + '!', 745, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + ')', 626, + '*', 755, + '+', 752, + ',', 633, + '-', 749, + '/', 756, + ':', 600, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 230, + '[', 636, + ']', 637, + '^', 765, + 'a', 488, + 'c', 433, + 'd', 183, + 'e', 546, + 'f', 529, + 'g', 360, + 'h', 421, + 'i', 385, + 'm', 330, + 'o', 300, + 'r', 285, + 's', 269, + 't', 561, + 'u', 493, + '{', 596, + '|', 741, + '}', 597, ); if (lookahead == '\t' || lookahead == ' ') SKIP(9); END_STATE(); case 10: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '&', 148, - '(', 494, - ')', 495, - '+', 608, - ',', 502, - '-', 605, - '.', 431, - '/', 75, - '0', 634, - ':', 470, - ';', 460, - '=', 527, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - ']', 507, - '_', 1007, - 'c', 815, - 'f', 808, - 'h', 757, - 'l', 750, - 'r', 710, - 's', 681, - 't', 674, - 'v', 706, - '{', 464, - '|', 597, - '}', 465, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '&', 172, + '(', 625, + ')', 626, + '+', 751, + ',', 633, + '-', 748, + '.', 565, + '/', 79, + '0', 777, + ':', 602, + ';', 593, + '=', 657, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + ']', 637, + '_', 1067, + 'c', 966, + 'f', 959, + 'h', 908, + 'l', 901, + 'r', 861, + 's', 832, + 't', 825, + 'v', 857, + '{', 596, + '|', 740, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(10); if (('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 11: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '&', 148, - '(', 494, - '+', 608, - '-', 605, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '=', 527, - '@', 124, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'c', 815, - 'f', 808, - 'h', 757, - 'l', 750, - 'o', 717, - 'r', 710, - 's', 681, - 't', 674, - 'v', 706, - '{', 464, - '|', 597, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '&', 172, + '(', 625, + '+', 751, + '-', 748, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '=', 657, + '@', 148, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'c', 966, + 'f', 959, + 'h', 908, + 'l', 901, + 'o', 868, + 'r', 861, + 's', 832, + 't', 825, + 'v', 857, + '{', 596, + '|', 740, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(11); if (('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 12: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(12); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 13: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(13); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 14: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(14); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 15: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 802, - 'd', 809, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 953, + 'd', 960, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(15); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 16: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 124, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'c', 815, - 'f', 808, - 'h', 757, - 'l', 750, - 'r', 710, - 's', 681, - 't', 674, - 'v', 706, - 'w', 724, - '{', 464, - '|', 597, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 148, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'c', 966, + 'f', 959, + 'h', 908, + 'l', 901, + 'r', 861, + 's', 832, + 't', 825, + 'v', 857, + 'w', 875, + '{', 596, + '|', 740, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(16); if (('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 17: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - '@', 124, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'c', 815, - 'f', 808, - 'h', 757, - 'l', 750, - 'r', 710, - 's', 681, - 't', 673, - 'v', 706, - '{', 464, - '|', 597, - '~', 603, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + '@', 148, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'c', 966, + 'f', 959, + 'h', 908, + 'l', 901, + 'r', 861, + 's', 832, + 't', 824, + 'v', 857, + '{', 596, + '|', 740, + '~', 746, ); if (lookahead == '\t' || lookahead == ' ') SKIP(17); if (('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 18: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '"', 27, - '#', 1186, - '.', 431, - '0', 634, - ':', 94, - '@', 124, - 'F', 651, - 'T', 648, - 'f', 54, + '"', 28, + '#', 1226, + '.', 565, + '0', 777, + ':', 89, + '@', 148, + 'F', 794, + 'T', 792, + 'f', 59, ); if (lookahead == '\t' || lookahead == ' ') SKIP(18); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); if (('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(55); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(60); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 19: ADVANCE_MAP( - '\n', 1188, + '\n', 1228, '\r', 1, - '#', 1186, - '(', 494, - ')', 495, - ':', 91, - '[', 506, - '}', 465, + '#', 1226, + '(', 625, + ')', 626, + ':', 96, + '[', 636, + '}', 597, ); if (lookahead == '\t' || lookahead == ' ') SKIP(19); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 20: - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '#', 1186, - ':', 91, - 'a', 853, - 'b', 938, - 'c', 950, - 'd', 939, - 'e', 927, - 'f', 893, - 'h', 943, - 'i', 936, - 'l', 896, - 'o', 955, - 'p', 829, - 'r', 875, - 's', 877, - 't', 833, - 'u', 930, - 'v', 872, - ); + if (lookahead == '\n') ADVANCE(1228); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(1226); + if (lookahead == ':') ADVANCE(600); + if (lookahead == '=') ADVANCE(657); + if (lookahead == 'o') ADVANCE(298); if (lookahead == '\t' || lookahead == ' ') SKIP(20); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(1188); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(1186); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(945); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '#', 1226, + ':', 96, + 'a', 988, + 'b', 1032, + 'c', 1027, + 'd', 1030, + 'e', 1022, + 'f', 1003, + 'h', 1033, + 'i', 1016, + 'l', 1004, + 'o', 1038, + 'p', 979, + 'r', 991, + 's', 998, + 't', 980, + 'u', 1021, + 'v', 997, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(1188); + if (lookahead == '\n') ADVANCE(1228); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(1186); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(927); - if (lookahead == 'r') ADVANCE(875); + if (lookahead == '#') ADVANCE(1226); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'c') ADVANCE(1029); if (lookahead == '\t' || lookahead == ' ') SKIP(22); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(1188); + if (lookahead == '\n') ADVANCE(1228); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(1186); - if (lookahead == ':') ADVANCE(469); - if (lookahead == '=') ADVANCE(527); - if (lookahead == 'o') ADVANCE(245); + if (lookahead == '#') ADVANCE(1226); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1022); + if (lookahead == 'r') ADVANCE(991); if (lookahead == '\t' || lookahead == ' ') SKIP(23); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(1188); + if (lookahead == '\n') ADVANCE(1228); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(1040); + if (lookahead == '#') ADVANCE(1226); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if (lookahead != 0) ADVANCE(1045); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(1181); - if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(25); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(27); + if (lookahead == '\n') ADVANCE(1228); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(1080); + if (lookahead == '\t' || + lookahead == ' ') SKIP(25); + if (lookahead != 0) ADVANCE(1085); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(1181); - if (lookahead == '\\') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(26); + if (lookahead == '"') ADVANCE(1221); + if (lookahead == '\\') ADVANCE(550); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(26); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(27); + lookahead != '\r') ADVANCE(28); END_STATE(); case 27: - if (lookahead == '"') ADVANCE(1181); - if (lookahead == '\\') ADVANCE(419); + if (lookahead == '"') ADVANCE(1221); + if (lookahead == '\\') ADVANCE(550); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(27); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(27); + lookahead != '\r') ADVANCE(28); END_STATE(); case 28: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '"') ADVANCE(1221); + if (lookahead == '\\') ADVANCE(550); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(28); END_STATE(); case 29: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(1058); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + if (lookahead == '%') ADVANCE(580); END_STATE(); case 30: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); - END_STATE(); - case 31: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(1098); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(30); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); + END_STATE(); + case 31: + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); END_STATE(); case 32: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1063); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(36); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(819); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 33: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(31); END_STATE(); case 34: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1103); END_STATE(); case 35: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(47); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); END_STATE(); case 36: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(1059); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); END_STATE(); case 37: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(51); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); END_STATE(); case 38: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); END_STATE(); case 39: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(1099); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); END_STATE(); case 40: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(32); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1071); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1111); END_STATE(); case 41: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(39); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); END_STATE(); case 42: - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(35); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); END_STATE(); case 43: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(28); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 44: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1075); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1111); END_STATE(); case 46: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(37); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); END_STATE(); case 47: - if (lookahead == '%') ADVANCE(446); + if (lookahead == '%') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(29); END_STATE(); case 48: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '-') ADVANCE(60); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1162); + if (lookahead == '%') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + END_STATE(); + case 49: + if (lookahead == '%') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1115); + END_STATE(); + case 50: + if (lookahead == '%') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + END_STATE(); + case 51: + if (lookahead == '%') ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(50); + END_STATE(); + case 52: + if (lookahead == '+') ADVANCE(566); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1202); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 49: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '-') ADVANCE(60); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); + case 53: + if (lookahead == '+') ADVANCE(566); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1203); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 50: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '-') ADVANCE(60); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1165); + case 54: + if (lookahead == '+') ADVANCE(566); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1205); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 51: - if (lookahead == '+') ADVANCE(432); - if (lookahead == '-') ADVANCE(60); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1165); + case 55: + if (lookahead == '+') ADVANCE(566); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1205); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 52: - if (lookahead == '.') ADVANCE(435); - if (lookahead == '0') ADVANCE(59); - if (lookahead == ':') ADVANCE(89); + case 56: + if (lookahead == '.') ADVANCE(569); + if (lookahead == '0') ADVANCE(58); + if (lookahead == ':') ADVANCE(90); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 53: - if (lookahead == '.') ADVANCE(435); - if (lookahead == '8') ADVANCE(52); - if (lookahead == ':') ADVANCE(89); + case 57: + if (lookahead == '.') ADVANCE(569); + if (lookahead == '8') ADVANCE(56); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 54: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'e') ADVANCE(53); + case 58: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(30); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); + END_STATE(); + case 59: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'e') ADVANCE(57); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 55: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); + case 60: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 56: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); + case 61: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 57: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); + case 62: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); - END_STATE(); - case 58: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 59: - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(36); + case 63: + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 60: - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1165); + case 64: + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1205); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 61: - if (lookahead == '.') ADVANCE(435); + case 65: + if (lookahead == '.') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1174); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1214); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 62: - if (lookahead == '.') ADVANCE(435); + case 66: + if (lookahead == '.') ADVANCE(569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); - END_STATE(); - case 63: - if (lookahead == '.') ADVANCE(78); - END_STATE(); - case 64: - if (lookahead == '.') ADVANCE(78); - if (lookahead == '5') ADVANCE(65); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(63); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(66); - END_STATE(); - case 65: - if (lookahead == '.') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(63); - END_STATE(); - case 66: - if (lookahead == '.') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 67: - if (lookahead == '.') ADVANCE(78); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + if (lookahead == '.') ADVANCE(84); END_STATE(); case 68: - if (lookahead == '.') ADVANCE(436); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + if (lookahead == '.') ADVANCE(84); + if (lookahead == '5') ADVANCE(69); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(67); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(70); END_STATE(); case 69: - if (lookahead == '.') ADVANCE(434); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (lookahead == '.') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(67); END_STATE(); case 70: - if (lookahead == '.') ADVANCE(80); + if (lookahead == '.') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); END_STATE(); case 71: - if (lookahead == '.') ADVANCE(80); - if (lookahead == '5') ADVANCE(72); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(73); + if (lookahead == '.') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); END_STATE(); case 72: - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(70); + if (lookahead == '.') ADVANCE(570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 73: - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (lookahead == '.') ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 74: - if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (lookahead == '.') ADVANCE(86); END_STATE(); case 75: - if (lookahead == '/') ADVANCE(1049); - if (lookahead == '\\') ADVANCE(76); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + if (lookahead == '.') ADVANCE(86); + if (lookahead == '5') ADVANCE(76); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(74); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(77); END_STATE(); case 76: - if (lookahead == '/') ADVANCE(1047); - if (lookahead == '\\') ADVANCE(76); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + if (lookahead == '.') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(74); END_STATE(); case 77: - if (lookahead == '0') ADVANCE(1076); - if (lookahead == '1') ADVANCE(1109); - if (lookahead == '2') ADVANCE(1082); - if (('3' <= lookahead && lookahead <= '9')) ADVANCE(1110); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1149); + if (lookahead == '.') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(74); END_STATE(); case 78: - if (lookahead == '1') ADVANCE(1153); - if (lookahead == '2') ADVANCE(1121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1152); + if (lookahead == '.') ADVANCE(86); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 79: - if (lookahead == '1') ADVANCE(74); - if (lookahead == '2') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); + if (lookahead == '/') ADVANCE(1089); + if (lookahead == '\\') ADVANCE(80); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(79); END_STATE(); case 80: - if (lookahead == '1') ADVANCE(67); - if (lookahead == '2') ADVANCE(64); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + if (lookahead == '/') ADVANCE(1087); + if (lookahead == '\\') ADVANCE(80); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(79); END_STATE(); case 81: - if (lookahead == '1') ADVANCE(1103); - if (lookahead == '2') ADVANCE(1081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1104); + if (lookahead == '0') ADVANCE(1116); + if (lookahead == '1') ADVANCE(1149); + if (lookahead == '2') ADVANCE(1122); + if (lookahead == ':') ADVANCE(579); + if (('3' <= lookahead && lookahead <= '9')) ADVANCE(1150); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1145); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1189); END_STATE(); case 82: - if (lookahead == ':') ADVANCE(89); + if (lookahead == '0') ADVANCE(1116); + if (lookahead == '1') ADVANCE(1149); + if (lookahead == '2') ADVANCE(1122); + if (('3' <= lookahead && lookahead <= '9')) ADVANCE(1150); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1189); END_STATE(); case 83: - if (lookahead == ':') ADVANCE(89); - if (lookahead == '+' || - lookahead == '-') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1169); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + if (lookahead == '0') ADVANCE(91); + if (lookahead == ':') ADVANCE(90); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); END_STATE(); case 84: - if (lookahead == ':') ADVANCE(89); - if (lookahead == '+' || - lookahead == '-') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1173); + if (lookahead == '1') ADVANCE(1193); + if (lookahead == '2') ADVANCE(1161); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1192); END_STATE(); case 85: - if (lookahead == ':') ADVANCE(89); - if (lookahead == '+' || - lookahead == '-') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1168); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); + if (lookahead == '1') ADVANCE(78); + if (lookahead == '2') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(77); END_STATE(); case 86: - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); + if (lookahead == '1') ADVANCE(71); + if (lookahead == '2') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); END_STATE(); case 87: - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + if (lookahead == '1') ADVANCE(1143); + if (lookahead == '2') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1144); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1185); END_STATE(); case 88: - if (lookahead == ':') ADVANCE(1114); - END_STATE(); - case 89: - if (lookahead == ':') ADVANCE(1119); + if (lookahead == '8') ADVANCE(83); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + END_STATE(); + case 89: + if (lookahead == ':') ADVANCE(1154); END_STATE(); case 90: - if (lookahead == ':') ADVANCE(1120); + if (lookahead == ':') ADVANCE(1159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); END_STATE(); case 91: - if (lookahead == ':') ADVANCE(445); + if (lookahead == ':') ADVANCE(30); END_STATE(); case 92: - if (lookahead == ':') ADVANCE(1050); + if (lookahead == ':') ADVANCE(1090); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1156); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1196); END_STATE(); case 93: - if (lookahead == ':') ADVANCE(1157); + if (lookahead == ':') ADVANCE(1197); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(103); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 94: - if (lookahead == ':') ADVANCE(1115); + if (lookahead == ':') ADVANCE(1155); END_STATE(); case 95: - if (lookahead == ':') ADVANCE(1158); + if (lookahead == ':') ADVANCE(1160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); END_STATE(); case 96: - if (lookahead == ':') ADVANCE(93); + if (lookahead == ':') ADVANCE(579); END_STATE(); case 97: - if (lookahead == ':') ADVANCE(93); + if (lookahead == ':') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1185); END_STATE(); case 98: - if (lookahead == ':') ADVANCE(93); + if (lookahead == ':') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1189); END_STATE(); case 99: - if (lookahead == ':') ADVANCE(93); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); + if (lookahead == ':') ADVANCE(90); END_STATE(); case 100: - if (lookahead == ':') ADVANCE(95); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'o') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 101: - if (lookahead == ':') ADVANCE(95); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'a') ADVANCE(112); + if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'o') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 102: - if (lookahead == ':') ADVANCE(95); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'a') ADVANCE(108); + if (lookahead == 'e') ADVANCE(88); + if (lookahead == 'i') ADVANCE(363); + if (lookahead == 'o') ADVANCE(458); + if (lookahead == 'u') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 103: - if (lookahead == ':') ADVANCE(95); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'a') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(101); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(99); END_STATE(); case 104: - if (lookahead == ':') ADVANCE(92); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'd') ADVANCE(105); + if (lookahead == 'n') ADVANCE(558); + if (lookahead == 's') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 105: - if (lookahead == ':') ADVANCE(92); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'd') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 106: - if (lookahead == ':') ADVANCE(92); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'f') ADVANCE(103); + if (lookahead == 'l') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(116); END_STATE(); case 107: - if (lookahead == ':') ADVANCE(92); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'l') ADVANCE(495); + if (lookahead == 'n') ADVANCE(530); + if (lookahead == 'v') ADVANCE(284); + if (lookahead == 'x') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 108: - if (lookahead == ':') ADVANCE(116); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'l') ADVANCE(362); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 109: - if (lookahead == ':') ADVANCE(116); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'o') ADVANCE(419); + if (lookahead == 'r') ADVANCE(261); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(108); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 110: - if (lookahead == ':') ADVANCE(116); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 's') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(109); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 111: - if (lookahead == ':') ADVANCE(116); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'u') ADVANCE(364); END_STATE(); case 112: - if (lookahead == ':') ADVANCE(121); - END_STATE(); - case 113: - if (lookahead == ':') ADVANCE(121); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'y') ADVANCE(1217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + END_STATE(); + case 113: + if (lookahead == ':') ADVANCE(90); + if (lookahead == '+' || + lookahead == '-') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1209); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 114: - if (lookahead == ':') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + if (lookahead == ':') ADVANCE(90); + if (lookahead == '+' || + lookahead == '-') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1213); END_STATE(); case 115: - if (lookahead == ':') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + if (lookahead == ':') ADVANCE(90); + if (lookahead == '+' || + lookahead == '-') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1208); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); END_STATE(); case 116: - if (lookahead == ':') ADVANCE(1116); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); END_STATE(); case 117: - if (lookahead == ':') ADVANCE(122); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 118: - if (lookahead == ':') ADVANCE(122); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 119: - if (lookahead == ':') ADVANCE(122); + if (lookahead == ':') ADVANCE(1198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); case 120: - if (lookahead == ':') ADVANCE(122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); + if (lookahead == ':') ADVANCE(93); END_STATE(); case 121: - if (lookahead == ':') ADVANCE(1117); + if (lookahead == ':') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); END_STATE(); case 122: - if (lookahead == ':') ADVANCE(1118); + if (lookahead == ':') ADVANCE(93); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); END_STATE(); case 123: - if (lookahead == 'A') ADVANCE(131); + if (lookahead == ':') ADVANCE(93); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 124: - if (lookahead == 'D') ADVANCE(128); - if (lookahead == 'F') ADVANCE(129); + if (lookahead == ':') ADVANCE(119); END_STATE(); case 125: - ADVANCE_MAP( - 'D', 128, - 'F', 129, - 'd', 214, - 'e', 284, - 'i', 240, - 'l', 321, - 'p', 359, - 'u', 299, - ); + if (lookahead == ':') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); END_STATE(); case 126: - if (lookahead == 'E') ADVANCE(132); + if (lookahead == ':') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 127: - if (lookahead == 'E') ADVANCE(665); + if (lookahead == ':') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 128: - if (lookahead == 'I') ADVANCE(133); + if (lookahead == ':') ADVANCE(92); END_STATE(); case 129: - if (lookahead == 'I') ADVANCE(130); + if (lookahead == ':') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); END_STATE(); case 130: - if (lookahead == 'L') ADVANCE(126); + if (lookahead == ':') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(128); END_STATE(); case 131: - if (lookahead == 'M') ADVANCE(127); + if (lookahead == ':') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(129); END_STATE(); case 132: - if (lookahead == 'N') ADVANCE(123); + if (lookahead == ':') ADVANCE(136); END_STATE(); case 133: - if (lookahead == 'R') ADVANCE(664); + if (lookahead == ':') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); END_STATE(); case 134: - if (lookahead == '_') ADVANCE(152); + if (lookahead == ':') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); END_STATE(); case 135: - if (lookahead == '_') ADVANCE(157); + if (lookahead == ':') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); END_STATE(); case 136: - if (lookahead == '_') ADVANCE(249); + if (lookahead == ':') ADVANCE(1156); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); END_STATE(); case 137: - if (lookahead == '_') ADVANCE(171); + if (lookahead == ':') ADVANCE(141); END_STATE(); case 138: - if (lookahead == '_') ADVANCE(177); + if (lookahead == ':') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(140); END_STATE(); case 139: - if (lookahead == '_') ADVANCE(327); + if (lookahead == ':') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 140: - if (lookahead == '_') ADVANCE(401); + if (lookahead == ':') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(137); END_STATE(); case 141: - if (lookahead == '_') ADVANCE(212); + if (lookahead == ':') ADVANCE(1157); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); case 142: - if (lookahead == '_') ADVANCE(260); + if (lookahead == ':') ADVANCE(146); END_STATE(); case 143: - if (lookahead == '_') ADVANCE(178); + if (lookahead == ':') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(145); END_STATE(); case 144: - if (lookahead == '_') ADVANCE(252); + if (lookahead == ':') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); END_STATE(); case 145: - if (lookahead == '_') ADVANCE(253); + if (lookahead == ':') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); END_STATE(); case 146: - if (lookahead == '_') ADVANCE(236); + if (lookahead == ':') ADVANCE(1158); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); END_STATE(); case 147: - if (lookahead == '_') ADVANCE(237); + if (lookahead == 'A') ADVANCE(155); END_STATE(); case 148: - ADVANCE_MAP( - 'a', 189, - 'b', 149, - 'c', 358, - 'd', 199, - 'e', 371, - 'g', 360, - 'i', 374, - 'l', 320, - 'o', 307, - 'p', 355, - 'r', 150, - 't', 427, - 'w', 357, - ); + if (lookahead == 'D') ADVANCE(152); + if (lookahead == 'F') ADVANCE(153); END_STATE(); case 149: - if (lookahead == 'a') ADVANCE(169); - if (lookahead == 'r') ADVANCE(337); + ADVANCE_MAP( + 'D', 152, + 'F', 153, + 'd', 264, + 'e', 373, + 'i', 301, + 'l', 416, + 'p', 461, + 'u', 410, + ); END_STATE(); case 150: - if (lookahead == 'a') ADVANCE(416); - if (lookahead == 'e') ADVANCE(161); + if (lookahead == 'E') ADVANCE(156); END_STATE(); case 151: - if (lookahead == 'a') ADVANCE(403); + if (lookahead == 'E') ADVANCE(812); END_STATE(); case 152: - if (lookahead == 'a') ADVANCE(378); - if (lookahead == 'u') ADVANCE(382); + if (lookahead == 'I') ADVANCE(157); END_STATE(); case 153: - if (lookahead == 'a') ADVANCE(426); + if (lookahead == 'I') ADVANCE(154); END_STATE(); case 154: - if (lookahead == 'a') ADVANCE(426); - if (lookahead == 'e') ADVANCE(251); + if (lookahead == 'L') ADVANCE(150); END_STATE(); case 155: - if (lookahead == 'a') ADVANCE(282); + if (lookahead == 'M') ADVANCE(151); END_STATE(); case 156: - if (lookahead == 'a') ADVANCE(182); + if (lookahead == 'N') ADVANCE(147); END_STATE(); case 157: - if (lookahead == 'a') ADVANCE(294); - if (lookahead == 's') ADVANCE(393); + if (lookahead == 'R') ADVANCE(811); END_STATE(); case 158: - if (lookahead == 'a') ADVANCE(183); + if (lookahead == '_') ADVANCE(182); END_STATE(); case 159: - if (lookahead == 'a') ADVANCE(308); + if (lookahead == '_') ADVANCE(189); END_STATE(); case 160: - if (lookahead == 'a') ADVANCE(283); + if (lookahead == '_') ADVANCE(309); END_STATE(); case 161: - if (lookahead == 'a') ADVANCE(194); - if (lookahead == 'd') ADVANCE(216); + if (lookahead == '_') ADVANCE(209); END_STATE(); case 162: - if (lookahead == 'a') ADVANCE(410); + if (lookahead == '_') ADVANCE(214); END_STATE(); case 163: - if (lookahead == 'a') ADVANCE(316); + if (lookahead == '_') ADVANCE(426); END_STATE(); case 164: - if (lookahead == 'a') ADVANCE(396); + if (lookahead == '_') ADVANCE(527); END_STATE(); case 165: - if (lookahead == 'a') ADVANCE(384); - if (lookahead == 'o') ADVANCE(312); + if (lookahead == '_') ADVANCE(263); END_STATE(); case 166: - if (lookahead == 'a') ADVANCE(397); + if (lookahead == '_') ADVANCE(215); END_STATE(); case 167: - if (lookahead == 'a') ADVANCE(402); + if (lookahead == '_') ADVANCE(326); END_STATE(); case 168: - if (lookahead == 'b') ADVANCE(160); + if (lookahead == '_') ADVANCE(310); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(280); + if (lookahead == '_') ADVANCE(311); END_STATE(); case 170: - if (lookahead == 'c') ADVANCE(296); + if (lookahead == '_') ADVANCE(291); END_STATE(); case 171: - if (lookahead == 'c') ADVANCE(259); + if (lookahead == '_') ADVANCE(293); END_STATE(); case 172: - if (lookahead == 'c') ADVANCE(583); + ADVANCE_MAP( + 'a', 227, + 'b', 179, + 'c', 466, + 'd', 240, + 'e', 479, + 'g', 464, + 'i', 485, + 'l', 415, + 'o', 395, + 'p', 481, + 'r', 174, + 't', 562, + 'w', 480, + ); END_STATE(); case 173: - if (lookahead == 'c') ADVANCE(588); + if (lookahead == 'a') ADVANCE(513); + if (lookahead == 'o') ADVANCE(441); + if (lookahead == 'r') ADVANCE(347); + if (lookahead == 'u') ADVANCE(489); END_STATE(); case 174: - if (lookahead == 'c') ADVANCE(589); + if (lookahead == 'a') ADVANCE(547); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 175: - if (lookahead == 'c') ADVANCE(1177); + if (lookahead == 'a') ADVANCE(456); + if (lookahead == 't') ADVANCE(340); END_STATE(); case 176: - if (lookahead == 'c') ADVANCE(341); + if (lookahead == 'a') ADVANCE(807); END_STATE(); case 177: - if (lookahead == 'c') ADVANCE(339); + if (lookahead == 'a') ADVANCE(197); + if (lookahead == 'i') ADVANCE(382); + if (lookahead == 'y') ADVANCE(448); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(338); + if (lookahead == 'a') ADVANCE(314); + if (lookahead == 'e') ADVANCE(308); END_STATE(); case 179: - if (lookahead == 'c') ADVANCE(164); + if (lookahead == 'a') ADVANCE(206); + if (lookahead == 'r') ADVANCE(436); END_STATE(); case 180: - if (lookahead == 'c') ADVANCE(166); + if (lookahead == 'a') ADVANCE(352); END_STATE(); case 181: - if (lookahead == 'c') ADVANCE(400); + if (lookahead == 'a') ADVANCE(357); END_STATE(); case 182: - if (lookahead == 'd') ADVANCE(654); + if (lookahead == 'a') ADVANCE(491); + if (lookahead == 'u') ADVANCE(497); END_STATE(); case 183: - if (lookahead == 'd') ADVANCE(657); + if (lookahead == 'a') ADVANCE(557); END_STATE(); case 184: - if (lookahead == 'd') ADVANCE(584); + if (lookahead == 'a') ADVANCE(358); END_STATE(); case 185: - if (lookahead == 'd') ADVANCE(578); + if (lookahead == 'a') ADVANCE(219); END_STATE(); case 186: - if (lookahead == 'd') ADVANCE(573); + if (lookahead == 'a') ADVANCE(541); END_STATE(); case 187: - if (lookahead == 'd') ADVANCE(653); + if (lookahead == 'a') ADVANCE(359); END_STATE(); case 188: - if (lookahead == 'd') ADVANCE(577); + if (lookahead == 'a') ADVANCE(221); END_STATE(); case 189: - if (lookahead == 'd') ADVANCE(191); + if (lookahead == 'a') ADVANCE(376); + if (lookahead == 's') ADVANCE(517); END_STATE(); case 190: - if (lookahead == 'd') ADVANCE(214); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(240); - if (lookahead == 'l') ADVANCE(321); - if (lookahead == 'p') ADVANCE(359); - if (lookahead == 'u') ADVANCE(299); + if (lookahead == 'a') ADVANCE(398); END_STATE(); case 191: - if (lookahead == 'd') ADVANCE(136); + if (lookahead == 'a') ADVANCE(404); END_STATE(); case 192: - if (lookahead == 'd') ADVANCE(341); - if (lookahead == 'n') ADVANCE(279); + if (lookahead == 'a') ADVANCE(233); + if (lookahead == 'd') ADVANCE(267); END_STATE(); case 193: - if (lookahead == 'd') ADVANCE(267); + if (lookahead == 'a') ADVANCE(522); END_STATE(); case 194: - if (lookahead == 'd') ADVANCE(141); + if (lookahead == 'a') ADVANCE(523); END_STATE(); case 195: - if (lookahead == 'd') ADVANCE(291); + if (lookahead == 'a') ADVANCE(528); END_STATE(); case 196: - if (lookahead == 'd') ADVANCE(413); + if (lookahead == 'b') ADVANCE(408); END_STATE(); case 197: - if (lookahead == 'd') ADVANCE(221); + if (lookahead == 'b') ADVANCE(367); END_STATE(); case 198: - if (lookahead == 'd') ADVANCE(224); + if (lookahead == 'b') ADVANCE(184); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'b') ADVANCE(369); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(663); + if (lookahead == 'c') ADVANCE(1217); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(591); + if (lookahead == 'c') ADVANCE(1217); + if (lookahead == 't') ADVANCE(693); END_STATE(); case 202: - if (lookahead == 'e') ADVANCE(593); + if (lookahead == 'c') ADVANCE(726); END_STATE(); case 203: - if (lookahead == 'e') ADVANCE(585); + if (lookahead == 'c') ADVANCE(731); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'c') ADVANCE(732); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(586); + if (lookahead == 'c') ADVANCE(325); + if (lookahead == 'e') ADVANCE(201); + if (lookahead == 't') ADVANCE(478); + if (lookahead == 'u') ADVANCE(196); + if (lookahead == 'w') ADVANCE(337); END_STATE(); case 206: - if (lookahead == 'e') ADVANCE(575); + if (lookahead == 'c') ADVANCE(354); END_STATE(); case 207: - if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'c') ADVANCE(379); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(484); + if (lookahead == 'c') ADVANCE(181); END_STATE(); case 209: - if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'c') ADVANCE(324); END_STATE(); case 210: - if (lookahead == 'e') ADVANCE(250); + if (lookahead == 'c') ADVANCE(442); END_STATE(); case 211: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'c') ADVANCE(322); END_STATE(); case 212: - if (lookahead == 'e') ADVANCE(422); + if (lookahead == 'c') ADVANCE(516); END_STATE(); case 213: - if (lookahead == 'e') ADVANCE(310); + if (lookahead == 'c') ADVANCE(425); + if (lookahead == 'd') ADVANCE(262); + if (lookahead == 't') ADVANCE(535); END_STATE(); case 214: - if (lookahead == 'e') ADVANCE(354); + if (lookahead == 'c') ADVANCE(424); END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(420); + if (lookahead == 'c') ADVANCE(437); END_STATE(); case 216: - if (lookahead == 'e') ADVANCE(241); + if (lookahead == 'c') ADVANCE(526); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(375); + if (lookahead == 'c') ADVANCE(193); END_STATE(); case 218: - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'c') ADVANCE(194); END_STATE(); case 219: - if (lookahead == 'e') ADVANCE(243); + if (lookahead == 'd') ADVANCE(797); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(356); + if (lookahead == 'd') ADVANCE(612); END_STATE(); case 221: - if (lookahead == 'e') ADVANCE(244); + if (lookahead == 'd') ADVANCE(800); END_STATE(); case 222: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'd') ADVANCE(727); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'd') ADVANCE(721); END_STATE(); case 224: - if (lookahead == 'e') ADVANCE(247); + if (lookahead == 'd') ADVANCE(717); END_STATE(); case 225: - if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'd') ADVANCE(796); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'd') ADVANCE(720); END_STATE(); case 227: - if (lookahead == 'e') ADVANCE(188); + if (lookahead == 'd') ADVANCE(229); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(317); + if (lookahead == 'd') ADVANCE(543); END_STATE(); case 229: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'd') ADVANCE(160); END_STATE(); case 230: - if (lookahead == 'e') ADVANCE(395); + if (lookahead == 'd') ADVANCE(264); + if (lookahead == 'e') ADVANCE(373); + if (lookahead == 'i') ADVANCE(301); + if (lookahead == 'l') ADVANCE(416); + if (lookahead == 'p') ADVANCE(461); + if (lookahead == 'u') ADVANCE(410); END_STATE(); case 231: - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'd') ADVANCE(442); + if (lookahead == 'n') ADVANCE(353); END_STATE(); case 232: - if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'd') ADVANCE(334); END_STATE(); case 233: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'd') ADVANCE(165); END_STATE(); case 234: - if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'd') ADVANCE(262); END_STATE(); case 235: - if (lookahead == 'e') ADVANCE(145); + if (lookahead == 'd') ADVANCE(273); END_STATE(); case 236: - if (lookahead == 'e') ADVANCE(423); + if (lookahead == 'd') ADVANCE(372); END_STATE(); case 237: - if (lookahead == 'e') ADVANCE(424); + if (lookahead == 'd') ADVANCE(544); END_STATE(); case 238: - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'e') ADVANCE(551); END_STATE(); case 239: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'e') ADVANCE(213); END_STATE(); case 240: - if (lookahead == 'f') ADVANCE(659); + if (lookahead == 'e') ADVANCE(307); END_STATE(); case 241: - if (lookahead == 'f') ADVANCE(582); + if (lookahead == 'e') ADVANCE(661); END_STATE(); case 242: - if (lookahead == 'f') ADVANCE(662); + if (lookahead == 'e') ADVANCE(627); END_STATE(); case 243: - if (lookahead == 'f') ADVANCE(660); + if (lookahead == 'e') ADVANCE(713); END_STATE(); case 244: - if (lookahead == 'f') ADVANCE(661); + if (lookahead == 'e') ADVANCE(697); END_STATE(); case 245: - if (lookahead == 'f') ADVANCE(554); + if (lookahead == 'e') ADVANCE(616); END_STATE(); case 246: - if (lookahead == 'f') ADVANCE(554); - if (lookahead == 'p') ADVANCE(399); + if (lookahead == 'e') ADVANCE(806); END_STATE(); case 247: - if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'e') ADVANCE(688); END_STATE(); case 248: - if (lookahead == 'f') ADVANCE(151); - if (lookahead == 'l') ADVANCE(230); - if (lookahead == 'p') ADVANCE(366); + if (lookahead == 'e') ADVANCE(638); END_STATE(); case 249: - if (lookahead == 'f') ADVANCE(405); + if (lookahead == 'e') ADVANCE(650); END_STATE(); case 250: - if (lookahead == 'f') ADVANCE(261); + if (lookahead == 'e') ADVANCE(676); END_STATE(); case 251: - if (lookahead == 'f') ADVANCE(162); + if (lookahead == 'e') ADVANCE(591); END_STATE(); case 252: - if (lookahead == 'f') ADVANCE(411); + if (lookahead == 'e') ADVANCE(715); END_STATE(); case 253: - if (lookahead == 'f') ADVANCE(412); + if (lookahead == 'e') ADVANCE(775); END_STATE(); case 254: - if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'e') ADVANCE(734); END_STATE(); case 255: - if (lookahead == 'g') ADVANCE(376); + if (lookahead == 'e') ADVANCE(736); END_STATE(); case 256: - if (lookahead == 'g') ADVANCE(319); + if (lookahead == 'e') ADVANCE(728); END_STATE(); case 257: - if (lookahead == 'g') ADVANCE(270); + if (lookahead == 'e') ADVANCE(738); END_STATE(); case 258: - if (lookahead == 'g') ADVANCE(201); + if (lookahead == 'e') ADVANCE(729); END_STATE(); case 259: - if (lookahead == 'h') ADVANCE(159); + if (lookahead == 'e') ADVANCE(718); END_STATE(); case 260: - if (lookahead == 'h') ADVANCE(163); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 261: - if (lookahead == 'i') ADVANCE(421); + if (lookahead == 'e') ADVANCE(180); END_STATE(); case 262: - if (lookahead == 'i') ADVANCE(170); - if (lookahead == 't') ADVANCE(176); - if (lookahead == 'u') ADVANCE(192); + if (lookahead == 'e') ADVANCE(302); END_STATE(); case 263: - if (lookahead == 'i') ADVANCE(256); + if (lookahead == 'e') ADVANCE(554); END_STATE(); case 264: - if (lookahead == 'i') ADVANCE(394); + if (lookahead == 'e') ADVANCE(455); END_STATE(); case 265: - if (lookahead == 'i') ADVANCE(255); + if (lookahead == 'e') ADVANCE(552); END_STATE(); case 266: - if (lookahead == 'i') ADVANCE(391); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 267: - if (lookahead == 'i') ADVANCE(242); + if (lookahead == 'e') ADVANCE(303); END_STATE(); case 268: - if (lookahead == 'i') ADVANCE(329); + if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'i') ADVANCE(368); END_STATE(); case 269: - if (lookahead == 'i') ADVANCE(326); + if (lookahead == 'e') ADVANCE(200); END_STATE(); case 270: - if (lookahead == 'i') ADVANCE(302); + if (lookahead == 'e') ADVANCE(486); END_STATE(); case 271: - if (lookahead == 'i') ADVANCE(303); - if (lookahead == 'o') ADVANCE(196); - if (lookahead == 's') ADVANCE(225); + if (lookahead == 'e') ADVANCE(305); END_STATE(); case 272: - if (lookahead == 'i') ADVANCE(332); + if (lookahead == 'e') ADVANCE(470); END_STATE(); case 273: - if (lookahead == 'i') ADVANCE(334); + if (lookahead == 'e') ADVANCE(306); END_STATE(); case 274: - if (lookahead == 'i') ADVANCE(373); + if (lookahead == 'e') ADVANCE(223); END_STATE(); case 275: - if (lookahead == 'i') ADVANCE(367); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 276: - if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'e') ADVANCE(399); END_STATE(); case 277: - if (lookahead == 'i') ADVANCE(370); + if (lookahead == 'e') ADVANCE(225); END_STATE(); case 278: - if (lookahead == 'k') ADVANCE(568); + if (lookahead == 'e') ADVANCE(465); END_STATE(); case 279: - if (lookahead == 'k') ADVANCE(314); + if (lookahead == 'e') ADVANCE(226); END_STATE(); case 280: - if (lookahead == 'k') ADVANCE(213); + if (lookahead == 'e') ADVANCE(460); END_STATE(); case 281: - if (lookahead == 'k') ADVANCE(232); + if (lookahead == 'e') ADVANCE(507); END_STATE(); case 282: - if (lookahead == 'l') ADVANCE(580); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 283: - if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 284: - if (lookahead == 'l') ADVANCE(380); - if (lookahead == 'n') ADVANCE(193); + if (lookahead == 'e') ADVANCE(403); END_STATE(); case 285: - if (lookahead == 'l') ADVANCE(385); + if (lookahead == 'e') ADVANCE(234); END_STATE(); case 286: - if (lookahead == 'l') ADVANCE(407); + if (lookahead == 'e') ADVANCE(469); END_STATE(); case 287: - if (lookahead == 'l') ADVANCE(404); + if (lookahead == 'e') ADVANCE(520); END_STATE(); case 288: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'e') ADVANCE(521); END_STATE(); case 289: - if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'e') ADVANCE(237); END_STATE(); case 290: - if (lookahead == 'l') ADVANCE(323); + if (lookahead == 'e') ADVANCE(218); END_STATE(); case 291: - if (lookahead == 'l') ADVANCE(220); + if (lookahead == 'e') ADVANCE(555); END_STATE(); case 292: - if (lookahead == 'l') ADVANCE(215); + if (lookahead == 'e') ADVANCE(168); END_STATE(); case 293: - if (lookahead == 'l') ADVANCE(209); + if (lookahead == 'e') ADVANCE(556); END_STATE(); case 294: - if (lookahead == 'l') ADVANCE(288); + if (lookahead == 'e') ADVANCE(169); END_STATE(); case 295: - if (lookahead == 'l') ADVANCE(336); + if (lookahead == 'e') ADVANCE(170); END_STATE(); case 296: - if (lookahead == 'm') ADVANCE(341); + if (lookahead == 'e') ADVANCE(171); END_STATE(); case 297: - if (lookahead == 'm') ADVANCE(350); + if (lookahead == 'f') ADVANCE(623); + if (lookahead == 'n') ADVANCE(634); + if (lookahead == 's') ADVANCE(753); END_STATE(); case 298: - if (lookahead == 'm') ADVANCE(301); + if (lookahead == 'f') ADVANCE(691); END_STATE(); case 299: - if (lookahead == 'n') ADVANCE(295); + if (lookahead == 'f') ADVANCE(691); + if (lookahead == 'p') ADVANCE(175); END_STATE(); case 300: - if (lookahead == 'n') ADVANCE(1161); + if (lookahead == 'f') ADVANCE(691); + if (lookahead == 'p') ADVANCE(524); END_STATE(); case 301: - if (lookahead == 'n') ADVANCE(594); + if (lookahead == 'f') ADVANCE(802); END_STATE(); case 302: - if (lookahead == 'n') ADVANCE(656); + if (lookahead == 'f') ADVANCE(607); END_STATE(); case 303: - if (lookahead == 'n') ADVANCE(1177); + if (lookahead == 'f') ADVANCE(725); END_STATE(); case 304: - if (lookahead == 'n') ADVANCE(503); - if (lookahead == 's') ADVANCE(610); + if (lookahead == 'f') ADVANCE(805); END_STATE(); case 305: - if (lookahead == 'n') ADVANCE(471); + if (lookahead == 'f') ADVANCE(803); END_STATE(); case 306: - if (lookahead == 'n') ADVANCE(565); + if (lookahead == 'f') ADVANCE(804); END_STATE(); case 307: - if (lookahead == 'n') ADVANCE(137); - if (lookahead == 'p') ADVANCE(398); + if (lookahead == 'f') ADVANCE(186); + if (lookahead == 'l') ADVANCE(288); + if (lookahead == 'p') ADVANCE(473); END_STATE(); case 308: - if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'f') ADVANCE(328); END_STATE(); case 309: - if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'f') ADVANCE(539); END_STATE(); case 310: - if (lookahead == 'n') ADVANCE(184); + if (lookahead == 'f') ADVANCE(540); END_STATE(); case 311: - if (lookahead == 'n') ADVANCE(172); + if (lookahead == 'f') ADVANCE(542); END_STATE(); case 312: - if (lookahead == 'n') ADVANCE(381); + if (lookahead == 'g') ADVANCE(722); END_STATE(); case 313: - if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'g') ADVANCE(680); END_STATE(); case 314: - if (lookahead == 'n') ADVANCE(324); + if (lookahead == 'g') ADVANCE(380); END_STATE(); case 315: - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'g') ADVANCE(323); END_STATE(); case 316: - if (lookahead == 'n') ADVANCE(195); + if (lookahead == 'g') ADVANCE(487); END_STATE(); case 317: - if (lookahead == 'n') ADVANCE(388); + if (lookahead == 'g') ADVANCE(254); END_STATE(); case 318: - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'g') ADVANCE(409); END_STATE(); case 319: - if (lookahead == 'n') ADVANCE(227); + if (lookahead == 'g') ADVANCE(344); END_STATE(); case 320: - if (lookahead == 'o') ADVANCE(254); + if (lookahead == 'h') ADVANCE(268); END_STATE(); case 321: - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'h') ADVANCE(808); END_STATE(); case 322: - if (lookahead == 'o') ADVANCE(406); + if (lookahead == 'h') ADVANCE(629); END_STATE(); case 323: - if (lookahead == 'o') ADVANCE(168); + if (lookahead == 'h') ADVANCE(644); END_STATE(); case 324: - if (lookahead == 'o') ADVANCE(417); + if (lookahead == 'h') ADVANCE(190); END_STATE(); case 325: - if (lookahead == 'o') ADVANCE(278); + if (lookahead == 'h') ADVANCE(289); END_STATE(); case 326: - if (lookahead == 'o') ADVANCE(309); + if (lookahead == 'h') ADVANCE(191); END_STATE(); case 327: - if (lookahead == 'o') ADVANCE(408); + if (lookahead == 'h') ADVANCE(472); END_STATE(); case 328: - if (lookahead == 'o') ADVANCE(362); + if (lookahead == 'i') ADVANCE(553); END_STATE(); case 329: - if (lookahead == 'o') ADVANCE(363); + if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'o') ADVANCE(208); END_STATE(); case 330: - if (lookahead == 'o') ADVANCE(365); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == 'o') ADVANCE(228); + if (lookahead == 's') ADVANCE(269); END_STATE(); case 331: - if (lookahead == 'o') ADVANCE(312); + if (lookahead == 'i') ADVANCE(384); + if (lookahead == 's') ADVANCE(269); END_STATE(); case 332: - if (lookahead == 'o') ADVANCE(305); + if (lookahead == 'i') ADVANCE(207); + if (lookahead == 't') ADVANCE(210); + if (lookahead == 'u') ADVANCE(231); END_STATE(); case 333: - if (lookahead == 'o') ADVANCE(325); - if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'i') ADVANCE(318); END_STATE(); case 334: - if (lookahead == 'o') ADVANCE(306); + if (lookahead == 'i') ADVANCE(304); END_STATE(); case 335: - if (lookahead == 'o') ADVANCE(418); + if (lookahead == 'i') ADVANCE(316); END_STATE(); case 336: - if (lookahead == 'o') ADVANCE(158); + if (lookahead == 'i') ADVANCE(397); END_STATE(); case 337: - if (lookahead == 'o') ADVANCE(281); + if (lookahead == 'i') ADVANCE(515); END_STATE(); case 338: - if (lookahead == 'o') ADVANCE(297); + if (lookahead == 'i') ADVANCE(423); END_STATE(); case 339: - if (lookahead == 'o') ADVANCE(287); + if (lookahead == 'i') ADVANCE(440); END_STATE(); case 340: - if (lookahead == 'o') ADVANCE(368); + if (lookahead == 'i') ADVANCE(427); END_STATE(); case 341: - if (lookahead == 'p') ADVANCE(1161); + if (lookahead == 'i') ADVANCE(431); END_STATE(); case 342: - if (lookahead == 'p') ADVANCE(590); + if (lookahead == 'i') ADVANCE(432); END_STATE(); case 343: - if (lookahead == 'p') ADVANCE(274); + if (lookahead == 'i') ADVANCE(511); END_STATE(); case 344: - if (lookahead == 'p') ADVANCE(286); - if (lookahead == 's') ADVANCE(265); + if (lookahead == 'i') ADVANCE(394); END_STATE(); case 345: - if (lookahead == 'p') ADVANCE(229); + if (lookahead == 'i') ADVANCE(519); END_STATE(); case 346: - if (lookahead == 'p') ADVANCE(330); + if (lookahead == 'i') ADVANCE(484); END_STATE(); case 347: - if (lookahead == 'p') ADVANCE(206); + if (lookahead == 'i') ADVANCE(406); END_STATE(); case 348: - if (lookahead == 'p') ADVANCE(208); + if (lookahead == 'i') ADVANCE(474); END_STATE(); case 349: - if (lookahead == 'p') ADVANCE(409); + if (lookahead == 'i') ADVANCE(476); END_STATE(); case 350: - if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'i') ADVANCE(477); END_STATE(); case 351: - if (lookahead == 'p') ADVANCE(275); + if (lookahead == 'k') ADVANCE(710); END_STATE(); case 352: - if (lookahead == 'p') ADVANCE(276); + if (lookahead == 'k') ADVANCE(642); END_STATE(); case 353: - if (lookahead == 'p') ADVANCE(277); + if (lookahead == 'k') ADVANCE(407); END_STATE(); case 354: - if (lookahead == 'p') ADVANCE(372); + if (lookahead == 'k') ADVANCE(276); END_STATE(); case 355: - if (lookahead == 'r') ADVANCE(268); + if (lookahead == 'k') ADVANCE(278); END_STATE(); case 356: - if (lookahead == 'r') ADVANCE(576); + if (lookahead == 'l') ADVANCE(672); END_STATE(); case 357: - if (lookahead == 'r') ADVANCE(264); + if (lookahead == 'l') ADVANCE(652); END_STATE(); case 358: - if (lookahead == 'r') ADVANCE(211); + if (lookahead == 'l') ADVANCE(598); END_STATE(); case 359: - if (lookahead == 'r') ADVANCE(210); + if (lookahead == 'l') ADVANCE(723); END_STATE(); case 360: - if (lookahead == 'r') ADVANCE(322); + if (lookahead == 'l') ADVANCE(420); END_STATE(); case 361: - if (lookahead == 'r') ADVANCE(328); + if (lookahead == 'l') ADVANCE(533); END_STATE(); case 362: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'l') ADVANCE(512); END_STATE(); case 363: - if (lookahead == 'r') ADVANCE(266); + if (lookahead == 'l') ADVANCE(243); END_STATE(); case 364: - if (lookahead == 'r') ADVANCE(135); + if (lookahead == 'l') ADVANCE(508); END_STATE(); case 365: - if (lookahead == 'r') ADVANCE(389); + if (lookahead == 'l') ADVANCE(509); END_STATE(); case 366: - if (lookahead == 'r') ADVANCE(218); + if (lookahead == 'l') ADVANCE(434); END_STATE(); case 367: - if (lookahead == 'r') ADVANCE(202); + if (lookahead == 'l') ADVANCE(247); END_STATE(); case 368: - if (lookahead == 'r') ADVANCE(203); + if (lookahead == 'l') ADVANCE(248); END_STATE(); case 369: - if (lookahead == 'r') ADVANCE(204); + if (lookahead == 'l') ADVANCE(250); END_STATE(); case 370: - if (lookahead == 'r') ADVANCE(205); + if (lookahead == 'l') ADVANCE(251); END_STATE(); case 371: - if (lookahead == 'r') ADVANCE(361); - if (lookahead == 'x') ADVANCE(343); + if (lookahead == 'l') ADVANCE(253); END_STATE(); case 372: - if (lookahead == 'r') ADVANCE(234); + if (lookahead == 'l') ADVANCE(280); END_STATE(); case 373: - if (lookahead == 'r') ADVANCE(235); + if (lookahead == 'l') ADVANCE(496); + if (lookahead == 'n') ADVANCE(232); END_STATE(); case 374: - if (lookahead == 's') ADVANCE(134); + if (lookahead == 'l') ADVANCE(435); END_STATE(); case 375: - if (lookahead == 's') ADVANCE(658); + if (lookahead == 'l') ADVANCE(531); END_STATE(); case 376: - if (lookahead == 's') ADVANCE(655); + if (lookahead == 'l') ADVANCE(366); END_STATE(); case 377: - if (lookahead == 's') ADVANCE(537); + if (lookahead == 'l') ADVANCE(265); END_STATE(); case 378: - if (lookahead == 's') ADVANCE(379); + if (lookahead == 'm') ADVANCE(609); END_STATE(); case 379: - if (lookahead == 's') ADVANCE(263); + if (lookahead == 'm') ADVANCE(442); END_STATE(); case 380: - if (lookahead == 's') ADVANCE(200); + if (lookahead == 'm') ADVANCE(176); END_STATE(); case 381: - if (lookahead == 's') ADVANCE(387); + if (lookahead == 'm') ADVANCE(447); END_STATE(); case 382: - if (lookahead == 's') ADVANCE(222); + if (lookahead == 'm') ADVANCE(244); END_STATE(); case 383: - if (lookahead == 's') ADVANCE(225); + if (lookahead == 'm') ADVANCE(393); END_STATE(); case 384: - if (lookahead == 's') ADVANCE(207); + if (lookahead == 'n') ADVANCE(1217); END_STATE(); case 385: - if (lookahead == 't') ADVANCE(587); + if (lookahead == 'n') ADVANCE(634); + if (lookahead == 's') ADVANCE(753); END_STATE(); case 386: - if (lookahead == 't') ADVANCE(581); + if (lookahead == 'n') ADVANCE(654); END_STATE(); case 387: - if (lookahead == 't') ADVANCE(474); + if (lookahead == 'n') ADVANCE(1201); END_STATE(); case 388: - if (lookahead == 't') ADVANCE(489); + if (lookahead == 'n') ADVANCE(700); END_STATE(); case 389: - if (lookahead == 't') ADVANCE(461); + if (lookahead == 'n') ADVANCE(603); END_STATE(); case 390: - if (lookahead == 't') ADVANCE(534); + if (lookahead == 'n') ADVANCE(646); END_STATE(); case 391: - if (lookahead == 't') ADVANCE(425); + if (lookahead == 'n') ADVANCE(684); END_STATE(); case 392: - if (lookahead == 't') ADVANCE(349); + if (lookahead == 'n') ADVANCE(707); END_STATE(); case 393: - if (lookahead == 't') ADVANCE(340); + if (lookahead == 'n') ADVANCE(737); END_STATE(); case 394: - if (lookahead == 't') ADVANCE(238); + if (lookahead == 'n') ADVANCE(799); END_STATE(); case 395: - if (lookahead == 't') ADVANCE(233); + if (lookahead == 'n') ADVANCE(161); + if (lookahead == 'p') ADVANCE(525); END_STATE(); case 396: - if (lookahead == 't') ADVANCE(223); + if (lookahead == 'n') ADVANCE(338); + if (lookahead == 's') ADVANCE(269); END_STATE(); case 397: - if (lookahead == 't') ADVANCE(226); + if (lookahead == 'n') ADVANCE(313); END_STATE(); case 398: - if (lookahead == 't') ADVANCE(269); + if (lookahead == 'n') ADVANCE(317); END_STATE(); case 399: - if (lookahead == 't') ADVANCE(272); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 400: - if (lookahead == 't') ADVANCE(273); + if (lookahead == 'n') ADVANCE(202); END_STATE(); case 401: - if (lookahead == 't') ADVANCE(428); + if (lookahead == 'n') ADVANCE(502); END_STATE(); case 402: - if (lookahead == 't') ADVANCE(239); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 403: - if (lookahead == 'u') ADVANCE(285); + if (lookahead == 'n') ADVANCE(503); END_STATE(); case 404: - if (lookahead == 'u') ADVANCE(298); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 405: - if (lookahead == 'u') ADVANCE(311); + if (lookahead == 'n') ADVANCE(204); END_STATE(); case 406: - if (lookahead == 'u') ADVANCE(342); + if (lookahead == 'n') ADVANCE(504); END_STATE(); case 407: - if (lookahead == 'u') ADVANCE(257); + if (lookahead == 'n') ADVANCE(418); END_STATE(); case 408: - if (lookahead == 'u') ADVANCE(392); + if (lookahead == 'n') ADVANCE(281); END_STATE(); case 409: - if (lookahead == 'u') ADVANCE(386); + if (lookahead == 'n') ADVANCE(279); END_STATE(); case 410: - if (lookahead == 'u') ADVANCE(289); + if (lookahead == 'n') ADVANCE(374); END_STATE(); case 411: - if (lookahead == 'u') ADVANCE(313); + if (lookahead == 'n') ADVANCE(216); END_STATE(); case 412: - if (lookahead == 'u') ADVANCE(315); + if (lookahead == 'n') ADVANCE(494); END_STATE(); case 413: - if (lookahead == 'u') ADVANCE(293); + if (lookahead == 'n') ADVANCE(494); + if (lookahead == 'p') ADVANCE(559); + if (lookahead == 'u') ADVANCE(401); END_STATE(); case 414: - if (lookahead == 'u') ADVANCE(318); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 415: - if (lookahead == 'v') ADVANCE(228); - if (lookahead == 'x') ADVANCE(346); + if (lookahead == 'o') ADVANCE(312); END_STATE(); case 416: - if (lookahead == 'w') ADVANCE(139); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 417: - if (lookahead == 'w') ADVANCE(300); + if (lookahead == 'o') ADVANCE(351); END_STATE(); case 418: - if (lookahead == 'w') ADVANCE(143); + if (lookahead == 'o') ADVANCE(548); END_STATE(); case 419: - if (lookahead == 'x') ADVANCE(26); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(25); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(27); + if (lookahead == 'o') ADVANCE(356); END_STATE(); case 420: - if (lookahead == 'x') ADVANCE(140); + if (lookahead == 'o') ADVANCE(198); END_STATE(); case 421: - if (lookahead == 'x') ADVANCE(217); + if (lookahead == 'o') ADVANCE(417); + if (lookahead == 'r') ADVANCE(1217); END_STATE(); case 422: - if (lookahead == 'x') ADVANCE(351); + if (lookahead == 'o') ADVANCE(532); END_STATE(); case 423: - if (lookahead == 'x') ADVANCE(352); + if (lookahead == 'o') ADVANCE(388); END_STATE(); case 424: - if (lookahead == 'x') ADVANCE(353); + if (lookahead == 'o') ADVANCE(375); END_STATE(); case 425: - if (lookahead == 'y') ADVANCE(592); + if (lookahead == 'o') ADVANCE(463); END_STATE(); case 426: - if (lookahead == 'y') ADVANCE(1177); + if (lookahead == 'o') ADVANCE(536); END_STATE(); case 427: - if (lookahead == 'y') ADVANCE(345); + if (lookahead == 'o') ADVANCE(389); END_STATE(); case 428: - if (lookahead == 'y') ADVANCE(347); + if (lookahead == 'o') ADVANCE(462); END_STATE(); case 429: - if (lookahead == 'y') ADVANCE(348); + if (lookahead == 'o') ADVANCE(534); END_STATE(); case 430: - if (lookahead == '+' || - lookahead == '-') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1173); + if (lookahead == 'o') ADVANCE(459); END_STATE(); case 431: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1170); + if (lookahead == 'o') ADVANCE(414); END_STATE(); case 432: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1173); + if (lookahead == 'o') ADVANCE(392); END_STATE(); case 433: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(69); + if (lookahead == 'o') ADVANCE(412); END_STATE(); case 434: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1160); + if (lookahead == 'o') ADVANCE(549); END_STATE(); case 435: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(62); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + if (lookahead == 'o') ADVANCE(188); END_STATE(); case 436: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1159); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + if (lookahead == 'o') ADVANCE(355); END_STATE(); case 437: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(68); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + if (lookahead == 'o') ADVANCE(381); END_STATE(); case 438: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1175); + if (lookahead == 'o') ADVANCE(471); END_STATE(); case 439: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1149); + if (lookahead == 'o') ADVANCE(475); END_STATE(); case 440: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1134); + if (lookahead == 'o') ADVANCE(482); END_STATE(); case 441: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1137); + if (lookahead == 'p') ADVANCE(809); + if (lookahead == 'r') ADVANCE(500); END_STATE(); case 442: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1156); + if (lookahead == 'p') ADVANCE(1201); END_STATE(); case 443: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1141); + if (lookahead == 'p') ADVANCE(733); END_STATE(); case 444: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1145); + if (lookahead == 'p') ADVANCE(346); END_STATE(); case 445: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + if (lookahead == 'p') ADVANCE(361); + if (lookahead == 's') ADVANCE(335); END_STATE(); case 446: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1050); + if (lookahead == 'p') ADVANCE(438); END_STATE(); case 447: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - ',', 502, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(447); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(377); END_STATE(); case 448: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(448); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(245); END_STATE(); case 449: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(449); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(283); END_STATE(); case 450: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 602, - '"', 27, - '#', 1186, - '$', 596, - '%', 616, - '&', 621, - '(', 494, - '*', 613, - '+', 608, - '-', 605, - '.', 431, - '/', 615, - '0', 634, - ':', 88, - ';', 460, - '<', 617, - '=', 528, - '>', 619, - '?', 624, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '^', 623, - '_', 1007, - 'a', 805, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 714, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 598, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(450); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(259); END_STATE(); case 451: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '&', 148, - '(', 494, - ')', 495, - '+', 608, - ',', 502, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '=', 527, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 820, - 'f', 801, - 'g', 733, - 'h', 757, - 'i', 715, - 'l', 750, - 'm', 751, - 'n', 692, - 'o', 762, - 'p', 766, - 'r', 693, - 's', 680, - 't', 673, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(451); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(537); END_STATE(); case 452: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(452); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(348); END_STATE(); case 453: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 813, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(453); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(349); END_STATE(); case 454: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 672, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(454); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(350); END_STATE(); case 455: - if (eof) ADVANCE(456); - ADVANCE_MAP( - '\n', 1188, - '\r', 1, - '!', 601, - '"', 27, - '#', 1186, - '$', 596, - '(', 494, - ')', 495, - '+', 607, - '-', 604, - '.', 431, - '/', 75, - '0', 634, - ':', 88, - ';', 460, - '@', 125, - 'F', 650, - 'T', 647, - '[', 506, - '_', 1007, - 'a', 804, - 'b', 816, - 'c', 814, - 'd', 807, - 'e', 821, - 'f', 801, - 'h', 757, - 'i', 715, - 'l', 750, - 'n', 692, - 'p', 766, - 'r', 701, - 's', 680, - 't', 674, - 'v', 706, - 'w', 719, - '{', 464, - '|', 597, - '}', 465, - '~', 603, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(455); - if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(824); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(635); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'p') ADVANCE(483); END_STATE(); case 456: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == 'q') ADVANCE(538); END_STATE(); case 457: - ACCEPT_TOKEN(anon_sym_module); + if (lookahead == 'r') ADVANCE(1217); END_STATE(); case 458: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(631); END_STATE(); case 459: - ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(704); END_STATE(); case 460: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'r') ADVANCE(719); END_STATE(); case 461: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'r') ADVANCE(178); END_STATE(); case 462: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(167); END_STATE(); case 463: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(220); END_STATE(); case 464: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == 'r') ADVANCE(422); END_STATE(); case 465: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == 'r') ADVANCE(159); END_STATE(); case 466: - ACCEPT_TOKEN(anon_sym_global); + if (lookahead == 'r') ADVANCE(266); END_STATE(); case 467: - ACCEPT_TOKEN(anon_sym_global); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(428); END_STATE(); case 468: - ACCEPT_TOKEN(anon_sym_global); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(390); END_STATE(); case 469: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == 'r') ADVANCE(391); END_STATE(); case 470: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(1114); + if (lookahead == 'r') ADVANCE(505); END_STATE(); case 471: - ACCEPT_TOKEN(anon_sym_option); + if (lookahead == 'r') ADVANCE(506); END_STATE(); case 472: - ACCEPT_TOKEN(anon_sym_option); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(429); END_STATE(); case 473: - ACCEPT_TOKEN(anon_sym_option); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(282); END_STATE(); case 474: - ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'r') ADVANCE(255); END_STATE(); case 475: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(256); END_STATE(); case 476: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(257); END_STATE(); case 477: - ACCEPT_TOKEN(anon_sym_redef); + if (lookahead == 'r') ADVANCE(258); END_STATE(); case 478: - ACCEPT_TOKEN(anon_sym_redef); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(336); END_STATE(); case 479: - ACCEPT_TOKEN(anon_sym_redef); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(467); + if (lookahead == 'x') ADVANCE(444); END_STATE(); case 480: - ACCEPT_TOKEN(anon_sym_enum); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(345); END_STATE(); case 481: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == 'r') ADVANCE(339); END_STATE(); case 482: - ACCEPT_TOKEN(anon_sym_record); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'r') ADVANCE(343); END_STATE(); case 483: - ACCEPT_TOKEN(anon_sym_record); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'r') ADVANCE(290); END_STATE(); case 484: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'r') ADVANCE(294); END_STATE(); case 485: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 's') ADVANCE(158); END_STATE(); case 486: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(801); END_STATE(); case 487: - ACCEPT_TOKEN(anon_sym_print); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 's') ADVANCE(798); END_STATE(); case 488: - ACCEPT_TOKEN(anon_sym_print); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(665); END_STATE(); case 489: - ACCEPT_TOKEN(anon_sym_event); + if (lookahead == 's') ADVANCE(321); END_STATE(); case 490: - ACCEPT_TOKEN(anon_sym_event); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 's') ADVANCE(498); END_STATE(); case 491: - ACCEPT_TOKEN(anon_sym_event); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(492); END_STATE(); case 492: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 's') ADVANCE(333); END_STATE(); case 493: - ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(269); END_STATE(); case 494: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 's') ADVANCE(501); END_STATE(); case 495: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 's') ADVANCE(242); END_STATE(); case 496: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 's') ADVANCE(246); END_STATE(); case 497: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 's') ADVANCE(274); END_STATE(); case 498: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(702); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_switch); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(640); END_STATE(); case 500: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(686); END_STATE(); case 501: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(605); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == 't') ADVANCE(674); END_STATE(); case 503: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 't') ADVANCE(620); END_STATE(); case 504: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(618); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(659); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == 't') ADVANCE(594); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == 't') ADVANCE(682); END_STATE(); case 508: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(663); END_STATE(); case 509: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(730); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_next); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(724); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_next); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(560); END_STATE(); case 512: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(327); END_STATE(); case 513: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(518); END_STATE(); case 514: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(451); END_STATE(); case 515: - ACCEPT_TOKEN(anon_sym_fallthrough); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(211); END_STATE(); case 516: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(430); END_STATE(); case 517: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(439); END_STATE(); case 518: - ACCEPT_TOKEN(anon_sym_add); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(825); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(286); END_STATE(); case 519: - ACCEPT_TOKEN(anon_sym_add); - if (lookahead == ':') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1033); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(295); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_delete); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(249); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_delete); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(292); END_STATE(); case 522: - ACCEPT_TOKEN(anon_sym_local); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(275); END_STATE(); case 523: - ACCEPT_TOKEN(anon_sym_local); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(277); END_STATE(); case 524: - ACCEPT_TOKEN(anon_sym_when); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(340); END_STATE(); case 525: - ACCEPT_TOKEN(anon_sym_when); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 't') ADVANCE(341); END_STATE(); case 526: - ACCEPT_TOKEN(anon_sym_timeout); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 't') ADVANCE(342); END_STATE(); case 527: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(625); + if (lookahead == 't') ADVANCE(296); END_STATE(); case 529: - ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'u') ADVANCE(411); END_STATE(); case 530: - ACCEPT_TOKEN(anon_sym_assert); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(378); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'u') ADVANCE(383); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'u') ADVANCE(443); END_STATE(); case 533: - ACCEPT_TOKEN(anon_sym_case); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(319); END_STATE(); case 534: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == 'u') ADVANCE(315); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_default); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'u') ADVANCE(468); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_default); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(514); END_STATE(); case 537: - ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'u') ADVANCE(510); END_STATE(); case 538: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(707); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'u') ADVANCE(252); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'u') ADVANCE(400); END_STATE(); case 540: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 's') ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(402); END_STATE(); case 541: - ACCEPT_TOKEN(anon_sym_addr); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(365); END_STATE(); case 542: - ACCEPT_TOKEN(anon_sym_any); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(405); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_bool); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(370); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_count); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(371); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_double); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'u') ADVANCE(199); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_int); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(962); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'v') ADVANCE(284); + if (lookahead == 'x') ADVANCE(446); END_STATE(); case 547: - ACCEPT_TOKEN(anon_sym_interval); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'w') ADVANCE(163); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_string); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'w') ADVANCE(387); END_STATE(); case 549: - ACCEPT_TOKEN(anon_sym_subnet); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'w') ADVANCE(166); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_pattern); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'x') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(26); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(28); END_STATE(); case 551: - ACCEPT_TOKEN(anon_sym_port); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'x') ADVANCE(499); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_table); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'x') ADVANCE(164); END_STATE(); case 553: - ACCEPT_TOKEN(anon_sym_table); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'x') ADVANCE(270); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_of); + if (lookahead == 'x') ADVANCE(452); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_of); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'x') ADVANCE(453); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_of); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'x') ADVANCE(454); END_STATE(); case 557: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'y') ADVANCE(1217); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_set); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'y') ADVANCE(670); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_time); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'y') ADVANCE(771); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_timer); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'y') ADVANCE(735); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_union); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'y') ADVANCE(448); END_STATE(); case 562: - ACCEPT_TOKEN(anon_sym_list); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == 'y') ADVANCE(449); END_STATE(); case 563: - ACCEPT_TOKEN(anon_sym_vector); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (lookahead == 'y') ADVANCE(450); END_STATE(); case 564: - ACCEPT_TOKEN(anon_sym_vector); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '+' || + lookahead == '-') ADVANCE(566); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1213); END_STATE(); case 565: - ACCEPT_TOKEN(anon_sym_function); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1210); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_function); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1213); END_STATE(); case 567: - ACCEPT_TOKEN(anon_sym_function); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(73); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_hook); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1200); END_STATE(); case 569: - ACCEPT_TOKEN(anon_sym_hook); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(66); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); case 570: - ACCEPT_TOKEN(anon_sym_hook); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1199); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); case 571: - ACCEPT_TOKEN(anon_sym_file); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(72); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_opaque); - if (lookahead == ':') ADVANCE(91); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1215); END_STATE(); case 573: - ACCEPT_TOKEN(anon_sym_AMPdeprecated); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1174); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1177); END_STATE(); case 575: - ACCEPT_TOKEN(anon_sym_AMPbroker_allow_complex_type); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1196); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_AMPerror_handler); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1181); END_STATE(); case 577: - ACCEPT_TOKEN(anon_sym_AMPis_assigned); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1185); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_AMPis_used); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1189); END_STATE(); case 579: - ACCEPT_TOKEN(anon_sym_AMPlog); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_AMPoptional); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1090); END_STATE(); case 581: - ACCEPT_TOKEN(anon_sym_AMPraw_output); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + ',', 633, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(581); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_AMPredef); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(582); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 583: - ACCEPT_TOKEN(anon_sym_AMPadd_func); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(583); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_AMPbackend); - END_STATE(); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 745, + '"', 28, + '#', 1226, + '$', 739, + '%', 758, + '&', 763, + '(', 625, + '*', 755, + '+', 751, + '-', 748, + '.', 565, + '/', 757, + '0', 777, + ':', 94, + ';', 593, + '<', 759, + '=', 658, + '>', 761, + '?', 766, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '^', 765, + '_', 1067, + 'a', 956, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 865, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 741, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(584); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); + END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_AMPbroker_store); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '&', 172, + '(', 625, + ')', 626, + '+', 751, + ',', 633, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '=', 657, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 971, + 'f', 952, + 'g', 884, + 'h', 908, + 'i', 866, + 'l', 901, + 'm', 902, + 'n', 843, + 'o', 913, + 'p', 917, + 'r', 844, + 's', 831, + 't', 824, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(585); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 586: - ACCEPT_TOKEN(anon_sym_AMPcreate_expire); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(586); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_AMPdefault); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 964, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(587); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_AMPdelete_func); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 823, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(588); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 589: - ACCEPT_TOKEN(anon_sym_AMPexpire_func); + if (eof) ADVANCE(590); + ADVANCE_MAP( + '\n', 1228, + '\r', 1, + '!', 744, + '"', 28, + '#', 1226, + '$', 739, + '(', 625, + ')', 626, + '+', 750, + '-', 747, + '.', 565, + '/', 79, + '0', 777, + ':', 94, + ';', 593, + '@', 149, + 'F', 793, + 'T', 791, + '[', 636, + '_', 1067, + 'a', 955, + 'b', 967, + 'c', 965, + 'd', 958, + 'e', 972, + 'f', 952, + 'h', 908, + 'i', 866, + 'l', 901, + 'n', 843, + 'p', 917, + 'r', 852, + 's', 831, + 't', 825, + 'v', 857, + 'w', 870, + '{', 596, + '|', 740, + '}', 597, + '~', 746, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(589); + if (('A' <= lookahead && lookahead <= 'E')) ADVANCE(975); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_AMPgroup); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_AMPon_change); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_AMPpriority); + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 593: - ACCEPT_TOKEN(anon_sym_AMPread_expire); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 594: - ACCEPT_TOKEN(anon_sym_AMPtype_column); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 595: - ACCEPT_TOKEN(anon_sym_AMPwrite_expire); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(628); + ACCEPT_TOKEN(anon_sym_global); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_global); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(1154); END_STATE(); case 602: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(626); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(1155); END_STATE(); case 603: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_option); END_STATE(); case 604: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(600); + ACCEPT_TOKEN(anon_sym_option); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(600); - if (lookahead == '=') ADVANCE(574); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 606: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(574); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(599); + ACCEPT_TOKEN(anon_sym_redef); END_STATE(); case 608: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(599); - if (lookahead == '=') ADVANCE(481); + ACCEPT_TOKEN(anon_sym_redef); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(481); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 610: - ACCEPT_TOKEN(anon_sym_is); - END_STATE(); - case 611: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); + END_STATE(); + case 611: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 612: - ACCEPT_TOKEN(anon_sym_is); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_record); END_STATE(); case 613: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_record); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 614: - ACCEPT_TOKEN(anon_sym_SLASH); + ACCEPT_TOKEN(anon_sym_record); + if (lookahead == ':') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 615: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(1049); - if (lookahead == '\\') ADVANCE(76); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 616: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 617: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(618); + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 618: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_print); END_STATE(); case 619: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(620); + ACCEPT_TOKEN(anon_sym_print); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 620: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_event); END_STATE(); case 621: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(627); + ACCEPT_TOKEN(anon_sym_event); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 622: - ACCEPT_TOKEN(anon_sym_AMP); - ADVANCE_MAP( - '&', 627, - 'a', 189, - 'b', 149, - 'c', 358, - 'd', 199, - 'e', 371, - 'g', 360, - 'i', 374, - 'l', 320, - 'o', 307, - 'p', 355, - 'r', 150, - 't', 427, - 'w', 357, - ); + ACCEPT_TOKEN(anon_sym_event); + if (lookahead == ':') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 623: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '$') ADVANCE(631); + ACCEPT_TOKEN(anon_sym_if); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 625: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 626: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 627: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 628: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 629: - ACCEPT_TOKEN(anon_sym_copy); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); + END_STATE(); + case 629: + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 630: - ACCEPT_TOKEN(anon_sym_copy); - if (lookahead == ':') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_QMARK_DOLLAR); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 632: - ACCEPT_TOKEN(anon_sym_schedule); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_for); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 633: - ACCEPT_TOKEN(anon_sym_schedule); - if (lookahead == ':') ADVANCE(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 634: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'x') ADVANCE(61); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); - if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 635: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(48); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); - if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 636: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(639); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 637: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(50); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(636); - if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 638: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(49); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); - if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 639: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1172); - if (lookahead == '/') ADVANCE(262); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(639); - if (lookahead == '-' || + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 640: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'x') ADVANCE(438); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(644); + ACCEPT_TOKEN(anon_sym_next); END_STATE(); case 641: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(83); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(644); + ACCEPT_TOKEN(anon_sym_next); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 642: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(645); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 643: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(642); + ACCEPT_TOKEN(anon_sym_break); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 644: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == ':') ADVANCE(89); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(85); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(643); + ACCEPT_TOKEN(anon_sym_fallthrough); END_STATE(); case 645: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (lookahead == '.') ADVANCE(1171); - if (lookahead == '/') ADVANCE(262); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(645); + ACCEPT_TOKEN(anon_sym_fallthrough); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 646: - ACCEPT_TOKEN(aux_sym_constant_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(646); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 647: - ACCEPT_TOKEN(anon_sym_T); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_return); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 648: - ACCEPT_TOKEN(anon_sym_T); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_T); - if (lookahead == ':') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_add); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(976); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); - case 650: - ACCEPT_TOKEN(anon_sym_F); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); + case 649: + ACCEPT_TOKEN(anon_sym_add); if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); + END_STATE(); + case 650: + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 651: - ACCEPT_TOKEN(anon_sym_F); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); - if (lookahead == '-' || - ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 652: - ACCEPT_TOKEN(anon_sym_F); - if (lookahead == ':') ADVANCE(90); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 653: - ACCEPT_TOKEN(anon_sym_ATdeprecated); + ACCEPT_TOKEN(anon_sym_local); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 654: - ACCEPT_TOKEN(anon_sym_ATload); - if (lookahead == '-') ADVANCE(344); + ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 655: - ACCEPT_TOKEN(anon_sym_ATload_DASHsigs); + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 656: - ACCEPT_TOKEN(anon_sym_ATload_DASHplugin); + ACCEPT_TOKEN(anon_sym_timeout); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 657: - ACCEPT_TOKEN(anon_sym_ATunload); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 658: - ACCEPT_TOKEN(anon_sym_ATprefixes); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(767); END_STATE(); case 659: - ACCEPT_TOKEN(anon_sym_ATif); - if (lookahead == 'd') ADVANCE(219); - if (lookahead == 'n') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_assert); END_STATE(); case 660: - ACCEPT_TOKEN(anon_sym_ATifdef); + ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 661: - ACCEPT_TOKEN(anon_sym_ATifndef); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 662: - ACCEPT_TOKEN(anon_sym_ATendif); + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 663: - ACCEPT_TOKEN(anon_sym_ATelse); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 664: - ACCEPT_TOKEN(anon_sym_ATDIR); + ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 665: - ACCEPT_TOKEN(anon_sym_ATFILENAME); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 666: - ACCEPT_TOKEN(sym_id); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(669); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 667: - ACCEPT_TOKEN(sym_id); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 668: - ACCEPT_TOKEN(sym_id); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(272); END_STATE(); case 669: - ACCEPT_TOKEN(sym_id); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(anon_sym_addr); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 670: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '0') ADVANCE(800); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(825); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_any); END_STATE(); case 671: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '8') ADVANCE(670); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_any); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 672: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(678); - if (lookahead == 'i') ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 673: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(678); - if (lookahead == 'y') ADVANCE(765); + ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 674: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(678); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_count); END_STATE(); case 675: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(730); + ACCEPT_TOKEN(anon_sym_count); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 676: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(731); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_double); END_STATE(); case 677: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(732); + ACCEPT_TOKEN(anon_sym_double); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 678: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'b') ADVANCE(735); + ACCEPT_TOKEN(anon_sym_int); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 679: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'b') ADVANCE(677); + ACCEPT_TOKEN(anon_sym_interval); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 680: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(723); - if (lookahead == 'e') ADVANCE(777); - if (lookahead == 'w') ADVANCE(725); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_string); END_STATE(); case 681: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(723); - if (lookahead == 'e') ADVANCE(777); + ACCEPT_TOKEN(anon_sym_string); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 682: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(676); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_subnet); END_STATE(); case 683: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(720); + ACCEPT_TOKEN(anon_sym_subnet); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 684: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(789); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_pattern); END_STATE(); case 685: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(755); - if (lookahead == 'd') ADVANCE(704); - if (lookahead == 't') ADVANCE(793); + ACCEPT_TOKEN(anon_sym_pattern); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 686: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(755); - if (lookahead == 't') ADVANCE(793); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_port); END_STATE(); case 687: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(755); + ACCEPT_TOKEN(anon_sym_port); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 688: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'c') ADVANCE(791); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_table); END_STATE(); case 689: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(795); + ACCEPT_TOKEN(anon_sym_table); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 690: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(482); + ACCEPT_TOKEN(anon_sym_table); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 691: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(796); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 692: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(797); + ACCEPT_TOKEN(anon_sym_of); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 693: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 694: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(675); + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 695: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(485); + ACCEPT_TOKEN(anon_sym_set); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 696: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(552); + ACCEPT_TOKEN(anon_sym_time); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(699); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 697: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(508); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_time); + if (lookahead == 'r') ADVANCE(698); END_STATE(); case 698: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(520); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_timer); END_STATE(); case 699: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(458); + ACCEPT_TOKEN(anon_sym_timer); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 700: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(632); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 701: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(686); + ACCEPT_TOKEN(anon_sym_union); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 702: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(532); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_list); END_STATE(); case 703: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(496); + ACCEPT_TOKEN(anon_sym_list); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 704: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(716); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_vector); END_STATE(); case 705: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(748); + ACCEPT_TOKEN(anon_sym_vector); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 706: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(684); + ACCEPT_TOKEN(anon_sym_vector); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 707: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(772); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 708: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(741); - if (lookahead == 'i') ADVANCE(736); + ACCEPT_TOKEN(anon_sym_function); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 709: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(741); + ACCEPT_TOKEN(anon_sym_function); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 710: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(687); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_hook); END_STATE(); case 711: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(790); + ACCEPT_TOKEN(anon_sym_hook); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 712: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(758); + ACCEPT_TOKEN(anon_sym_hook); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 713: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(691); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_file); END_STATE(); case 714: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'f') ADVANCE(492); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(611); + ACCEPT_TOKEN(anon_sym_file); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 715: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'f') ADVANCE(492); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_opaque); END_STATE(); case 716: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'f') ADVANCE(478); + ACCEPT_TOKEN(anon_sym_opaque); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 717: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'f') ADVANCE(555); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPdeprecated); END_STATE(); case 718: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'g') ADVANCE(721); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPbroker_allow_complex_type); END_STATE(); case 719: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(708); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPerror_handler); END_STATE(); case 720: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(498); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPis_assigned); END_STATE(); case 721: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(514); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPis_used); END_STATE(); case 722: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(771); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPlog); END_STATE(); case 723: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(713); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPoptional); END_STATE(); case 724: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'h') ADVANCE(709); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPraw_output); END_STATE(); case 725: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'i') ADVANCE(788); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPredef); END_STATE(); case 726: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'i') ADVANCE(756); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPadd_func); END_STATE(); case 727: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'i') ADVANCE(760); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPbackend); END_STATE(); case 728: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'i') ADVANCE(749); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPbroker_store); END_STATE(); case 729: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'k') ADVANCE(569); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPcreate_expire); END_STATE(); case 730: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'k') ADVANCE(512); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPdefault); END_STATE(); case 731: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPdelete_func); END_STATE(); case 732: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(467); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPexpire_func); END_STATE(); case 733: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(753); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPgroup); END_STATE(); case 734: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(786); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPon_change); END_STATE(); case 735: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(696); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPpriority); END_STATE(); case 736: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(697); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPread_expire); END_STATE(); case 737: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(784); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPtype_column); END_STATE(); case 738: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(699); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMPwrite_expire); END_STATE(); case 739: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(700); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 740: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'm') ADVANCE(712); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 741: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(770); END_STATE(); case 742: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(472); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 743: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 744: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 745: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(504); - if (lookahead == 's') ADVANCE(611); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(768); END_STATE(); case 746: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(775); - if (lookahead == 'p') ADVANCE(798); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 747: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(688); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(743); END_STATE(); case 748: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(780); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(743); + if (lookahead == '=') ADVANCE(615); END_STATE(); case 749: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'n') ADVANCE(781); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(615); END_STATE(); case 750: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(682); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(742); END_STATE(); case 751: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(689); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '=') ADVANCE(611); END_STATE(); case 752: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(729); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(611); END_STATE(); case 753: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(679); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_is); END_STATE(); case 754: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(792); + ACCEPT_TOKEN(anon_sym_is); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 755: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(769); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 756: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(742); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 757: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(752); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(1089); + if (lookahead == '\\') ADVANCE(80); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(79); END_STATE(); case 758: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(794); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 759: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(768); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(760); END_STATE(); case 760: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(744); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 761: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(773); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(762); END_STATE(); case 762: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'p') ADVANCE(787); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 763: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'p') ADVANCE(798); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(769); END_STATE(); case 764: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'p') ADVANCE(761); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMP); + ADVANCE_MAP( + '&', 769, + 'a', 227, + 'b', 179, + 'c', 466, + 'd', 240, + 'e', 479, + 'g', 464, + 'i', 485, + 'l', 415, + 'o', 395, + 'p', 481, + 'r', 174, + 't', 562, + 'w', 480, + ); END_STATE(); case 765: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'p') ADVANCE(695); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 766: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(728); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '$') ADVANCE(774); END_STATE(); case 767: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(500); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 768: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(563); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 769: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(690); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 770: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(743); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 771: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(754); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_copy); END_STATE(); case 772: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(782); + ACCEPT_TOKEN(anon_sym_copy); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 773: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(783); + ACCEPT_TOKEN(anon_sym_copy); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 774: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(707); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_QMARK_DOLLAR); END_STATE(); case 775: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(779); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_schedule); END_STATE(); case 776: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(703); + ACCEPT_TOKEN(anon_sym_schedule); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 777: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(557); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'x') ADVANCE(65); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(52); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(781); + if (lookahead == '-' || + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 778: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(510); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(52); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(781); + if (lookahead == '-' || + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 779: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(475); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(782); + if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 780: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(490); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(54); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(779); + if (lookahead == '-' || + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 781: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(487); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(53); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(61); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(780); + if (lookahead == '-' || + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 782: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(529); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1212); + if (lookahead == '/') ADVANCE(332); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(782); + if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 783: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(462); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'x') ADVANCE(572); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(113); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(787); END_STATE(); case 784: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(535); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(113); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(787); END_STATE(); case 785: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(526); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(788); END_STATE(); case 786: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(722); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(114); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(785); END_STATE(); case 787: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(726); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == ':') ADVANCE(90); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(115); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(786); END_STATE(); case 788: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(683); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (lookahead == '.') ADVANCE(1211); + if (lookahead == '/') ADVANCE(332); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(788); END_STATE(); case 789: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(759); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_constant_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(789); END_STATE(); case 790: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(698); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_T); END_STATE(); case 791: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 't') ADVANCE(727); + ACCEPT_TOKEN(anon_sym_T); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 792: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(718); - if (('0' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(anon_sym_T); + if (lookahead == '.') ADVANCE(569); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 793: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(770); + ACCEPT_TOKEN(anon_sym_F); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 794: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(785); + ACCEPT_TOKEN(anon_sym_F); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + if (lookahead == '-' || + ('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 795: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(738); + ACCEPT_TOKEN(anon_sym_F); + if (lookahead == ':') ADVANCE(90); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 796: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(739); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATdeprecated); END_STATE(); case 797: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'x') ADVANCE(778); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATload); + if (lookahead == '-') ADVANCE(445); END_STATE(); case 798: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'y') ADVANCE(629); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATload_DASHsigs); END_STATE(); case 799: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(91); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATload_DASHplugin); END_STATE(); case 800: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(29); - if (lookahead == '_') ADVANCE(1007); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATunload); END_STATE(); case 801: - ACCEPT_TOKEN(sym_id); - ADVANCE_MAP( - '-', 62, - '.', 435, - ':', 90, - '_', 1007, - 'a', 811, - 'e', 671, - 'o', 767, - 'u', 747, - ); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATprefixes); END_STATE(); case 802: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'o') ADVANCE(746); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATif); + if (lookahead == 'd') ADVANCE(271); + if (lookahead == 'n') ADVANCE(235); END_STATE(); case 803: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'a') ADVANCE(819); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(825); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATifdef); END_STATE(); case 804: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(806); - if (lookahead == 's') ADVANCE(774); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATifndef); END_STATE(); case 805: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(806); - if (lookahead == 's') ADVANCE(538); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATendif); END_STATE(); case 806: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'd') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATelse); END_STATE(); case 807: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(812); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATpragma); END_STATE(); case 808: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(671); - if (lookahead == 'u') ADVANCE(747); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_push); END_STATE(); case 809: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'e') ADVANCE(810); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_pop); END_STATE(); case 810: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'f') ADVANCE(803); - if (lookahead == 'l') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(823); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(aux_sym_pragma_token1); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(810); END_STATE(); case 811: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(734); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATDIR); END_STATE(); case 812: - ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ACCEPT_TOKEN(anon_sym_ATFILENAME); END_STATE(); case 813: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'l') ADVANCE(776); - if (lookahead == 'v') ADVANCE(705); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(816); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 814: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(746); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(813); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 815: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'o') ADVANCE(763); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(814); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 816: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'r') ADVANCE(694); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(40); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 817: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(539); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(820); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 818: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 's') ADVANCE(702); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(817); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 819: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'u') ADVANCE(737); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(818); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 820: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'v') ADVANCE(705); - if (lookahead == 'x') ADVANCE(764); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 821: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); - if (lookahead == 'v') ADVANCE(705); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == '0') ADVANCE(951); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(976); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 822: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == '8') ADVANCE(821); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(823); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 823: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(829); + if (lookahead == 'i') ADVANCE(891); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(825); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 824: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(829); + if (lookahead == 'y') ADVANCE(916); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(822); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 825: ACCEPT_TOKEN(sym_id); - if (lookahead == '-') ADVANCE(62); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(90); - if (lookahead == '_') ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(829); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 826: ACCEPT_TOKEN(sym_id); - if (lookahead == '0') ADVANCE(1008); - if (lookahead == ':') ADVANCE(90); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1033); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 827: ACCEPT_TOKEN(sym_id); - if (lookahead == '8') ADVANCE(826); - if (lookahead == ':') ADVANCE(90); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(882); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 828: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(990); - if (lookahead == 'o') ADVANCE(964); - if (lookahead == 'r') ADVANCE(901); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 829: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(990); - if (lookahead == 'o') ADVANCE(964); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'b') ADVANCE(886); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 830: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(958); - if (lookahead == 't') ADVANCE(900); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'b') ADVANCE(828); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 831: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(958); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(874); + if (lookahead == 'e') ADVANCE(928); + if (lookahead == 'w') ADVANCE(876); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 832: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(839); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'y') ADVANCE(957); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(874); + if (lookahead == 'e') ADVANCE(928); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 833: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(839); - if (lookahead == 'i') ADVANCE(919); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(827); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 834: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(904); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(871); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 835: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(906); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(940); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 836: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(907); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(906); + if (lookahead == 'd') ADVANCE(855); + if (lookahead == 't') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 837: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'a') ADVANCE(908); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(906); + if (lookahead == 't') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 838: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'b') ADVANCE(935); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(906); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 839: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'b') ADVANCE(913); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'c') ADVANCE(942); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 840: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'b') ADVANCE(836); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(946); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 841: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'b') ADVANCE(915); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 842: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(892); - if (lookahead == 'e') ADVANCE(843); - if (lookahead == 't') ADVANCE(970); - if (lookahead == 'u') ADVANCE(838); - if (lookahead == 'w') ADVANCE(899); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(947); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 843: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(971); - if (lookahead == 't') ADVANCE(558); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(948); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 844: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(971); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(836); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 845: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(835); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(826); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 846: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(889); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 847: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(946); - if (lookahead == 'd') ADVANCE(862); - if (lookahead == 't') ADVANCE(998); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 848: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(946); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 849: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(991); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 850: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'c') ADVANCE(994); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(592); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 851: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'd') ADVANCE(483); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(776); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 852: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'd') ADVANCE(1000); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(837); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 853: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'd') ADVANCE(854); - if (lookahead == 'n') ADVANCE(1005); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 854: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'd') ADVANCE(961); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 855: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'd') ADVANCE(1001); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(867); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 856: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(1004); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(899); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 857: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(847); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(835); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 858: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(834); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(923); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 859: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(533); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(892); + if (lookahead == 'i') ADVANCE(887); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 860: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(497); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(892); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 861: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(571); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(838); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 862: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(885); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(941); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 863: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(559); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(909); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 864: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(486); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(842); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 865: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(553); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(624); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 's') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 866: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(509); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 867: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(521); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(608); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 868: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(545); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 869: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(459); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'g') ADVANCE(872); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 870: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(572); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(859); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 871: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(633); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 872: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(849); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(645); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 873: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(844); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(922); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 874: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(920); - if (lookahead == 'i') ADVANCE(914); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(864); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 875: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(848); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'h') ADVANCE(860); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 876: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(985); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(939); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 877: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(975); - if (lookahead == 't') ADVANCE(970); - if (lookahead == 'u') ADVANCE(838); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(907); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 878: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(968); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(911); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 879: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(933); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'i') ADVANCE(900); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 880: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(993); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'k') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 881: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(967); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'k') ADVANCE(643); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 882: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'e') ADVANCE(855); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 883: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'f') ADVANCE(493); - if (lookahead == 'n') ADVANCE(505); - if (lookahead == 's') ADVANCE(612); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 884: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'f') ADVANCE(556); - if (lookahead == 'p') ADVANCE(830); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(904); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 885: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'f') ADVANCE(479); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(937); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 886: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'g') ADVANCE(548); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(847); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 887: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'g') ADVANCE(890); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(848); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 888: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'h') ADVANCE(874); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(935); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 889: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'h') ADVANCE(499); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(850); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 890: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'h') ADVANCE(515); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(851); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 891: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'h') ADVANCE(965); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'm') ADVANCE(863); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 892: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'h') ADVANCE(882); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 893: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(910); - if (lookahead == 'u') ADVANCE(937); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 894: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(928); - if (lookahead == 'o') ADVANCE(852); - if (lookahead == 's') ADVANCE(873); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 895: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(972); - if (lookahead == 'o') ADVANCE(845); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 896: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(972); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(635); + if (lookahead == 's') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 897: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(949); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(926); + if (lookahead == 'p') ADVANCE(949); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 898: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(921); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(839); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 899: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(989); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(931); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 900: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(951); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'n') ADVANCE(932); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 901: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(934); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(833); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 902: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'i') ADVANCE(952); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(840); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 903: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'k') ADVANCE(570); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(880); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 904: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'k') ADVANCE(513); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(830); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 905: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(543); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(943); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 906: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(523); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(920); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 907: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(468); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(893); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 908: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(547); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(903); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 909: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(944); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(945); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 910: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(861); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(919); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 911: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(988); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(895); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 912: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(986); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(924); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 913: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(865); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'p') ADVANCE(938); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 914: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(866); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'p') ADVANCE(949); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 915: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(868); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'p') ADVANCE(912); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 916: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(869); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'p') ADVANCE(846); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 917: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'l') ADVANCE(871); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(879); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 918: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'm') ADVANCE(480); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 919: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'm') ADVANCE(863); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 920: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(525); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(841); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 921: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(886); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(894); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 922: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(561); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(905); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 923: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(473); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(933); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 924: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(517); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(934); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 925: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(550); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(858); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 926: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(567); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(930); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 927: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(995); - if (lookahead == 'v') ADVANCE(879); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(854); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 928: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(971); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 929: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(897); - if (lookahead == 's') ADVANCE(873); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 930: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(897); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 931: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(973); - if (lookahead == 'p') ADVANCE(1006); - if (lookahead == 'u') ADVANCE(932); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(621); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 932: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(980); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(619); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 933: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(981); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 934: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(982); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 935: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(876); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 936: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(987); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(656); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 937: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'n') ADVANCE(850); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(873); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 938: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(941); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 939: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(1002); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(834); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 940: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(903); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(910); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 941: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(905); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(849); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 942: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(940); - if (lookahead == 'r') ADVANCE(971); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 't') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 943: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(940); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(869); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 944: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(840); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(921); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 945: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(954); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(936); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 946: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(963); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(889); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 947: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(960); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(890); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 948: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(996); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'x') ADVANCE(929); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 949: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(922); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'y') ADVANCE(772); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 950: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(997); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(96); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 951: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(923); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(39); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 952: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(926); + ADVANCE_MAP( + '-', 66, + '.', 569, + ':', 95, + '_', 1067, + 'a', 962, + 'e', 822, + 'o', 918, + 'u', 898, + ); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 953: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'o') ADVANCE(969); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(969); + if (lookahead == 'o') ADVANCE(897); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 954: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'p') ADVANCE(1006); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(970); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(976); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 955: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'p') ADVANCE(831); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(957); + if (lookahead == 's') ADVANCE(925); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 956: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'p') ADVANCE(953); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(957); + if (lookahead == 's') ADVANCE(666); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 957: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'p') ADVANCE(864); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 958: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'q') ADVANCE(999); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(963); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 959: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(501); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(822); + if (lookahead == 'u') ADVANCE(898); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 960: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(564); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'e') ADVANCE(961); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 961: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(541); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'f') ADVANCE(954); + if (lookahead == 'l') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 962: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(1003); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 963: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(851); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(862); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 964: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(978); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'l') ADVANCE(927); + if (lookahead == 'v') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 965: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(948); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(897); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 966: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(924); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'o') ADVANCE(914); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 967: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(925); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'r') ADVANCE(845); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 968: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(983); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 969: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(984); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 's') ADVANCE(853); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 970: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'r') ADVANCE(898); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'u') ADVANCE(888); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 971: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 's') ADVANCE(1007); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(856); + if (lookahead == 'x') ADVANCE(915); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 972: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 's') ADVANCE(976); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); + if (lookahead == 'v') ADVANCE(856); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 973: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 's') ADVANCE(979); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(974); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 974: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 's') ADVANCE(860); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(976); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 975: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(558); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(973); + if (('G' <= lookahead && lookahead <= 'Z') || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 976: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(562); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(95); + if (lookahead == '_') ADVANCE(1067); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(950); END_STATE(); case 977: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(511); + if (lookahead == ':') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 978: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(551); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'a') ADVANCE(1040); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 979: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(476); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'a') ADVANCE(1057); + if (lookahead == 'o') ADVANCE(1046); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 980: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(544); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'a') ADVANCE(983); + if (lookahead == 'i') ADVANCE(1015); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 981: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(491); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'a') ADVANCE(1010); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 982: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(488); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'b') ADVANCE(1023); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 983: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(530); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'b') ADVANCE(1012); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 984: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(463); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'b') ADVANCE(1013); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 985: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(549); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'c') ADVANCE(1034); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 986: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(536); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'c') ADVANCE(1058); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 987: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(546); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'c') ADVANCE(1059); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 988: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(891); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'd') ADVANCE(990); + if (lookahead == 'n') ADVANCE(1065); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 989: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(846); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'd') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 990: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(992); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'd') ADVANCE(1041); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 991: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(947); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(985); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 992: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(881); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 993: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(867); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 994: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 't') ADVANCE(902); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 995: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(918); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 996: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(887); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 997: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(932); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(986); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 998: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(966); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1050); + if (lookahead == 't') ADVANCE(1045); + if (lookahead == 'u') ADVANCE(982); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 999: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(870); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1047); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1000: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(916); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1001: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(917); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'e') ADVANCE(1025); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1002: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'u') ADVANCE(841); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'g') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1003: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'v') ADVANCE(837); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'i') ADVANCE(1011); + if (lookahead == 'u') ADVANCE(1026); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1004: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'x') ADVANCE(977); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'i') ADVANCE(1048); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1005: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'y') ADVANCE(542); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'i') ADVANCE(1017); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1006: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); - if (lookahead == 'y') ADVANCE(630); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'i') ADVANCE(1035); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1007: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(91); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'i') ADVANCE(1037); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1008: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(29); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'k') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1009: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(77); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'l') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1010: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1011); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'l') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1014); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1011: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1009); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'l') ADVANCE(992); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1016); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1012: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1010); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'l') ADVANCE(994); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1013); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1013: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'l') ADVANCE(995); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1014); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1014: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'm') ADVANCE(610); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1016); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1015: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'm') ADVANCE(993); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1013); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1016: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(439); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1049); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1017: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'a') ADVANCE(1027); - if (lookahead == 'o') ADVANCE(931); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1002); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1018: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'a') ADVANCE(1029); - if (lookahead == 'e') ADVANCE(1023); - if (lookahead == 'o') ADVANCE(1002); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(701); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1019: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'a') ADVANCE(1025); - if (lookahead == 'e') ADVANCE(827); - if (lookahead == 'i') ADVANCE(910); - if (lookahead == 'o') ADVANCE(959); - if (lookahead == 'u') ADVANCE(937); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1020: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'a') ADVANCE(1028); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(1033); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1021: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'd') ADVANCE(1022); - if (lookahead == 'n') ADVANCE(1005); - if (lookahead == 's') ADVANCE(540); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1006); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1022: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'd') ADVANCE(519); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1060); + if (lookahead == 'v') ADVANCE(1001); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1023: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'f') ADVANCE(1020); - if (lookahead == 'l') ADVANCE(880); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1000); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1024: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'l') ADVANCE(974); - if (lookahead == 'n') ADVANCE(995); - if (lookahead == 'v') ADVANCE(879); - if (lookahead == 'x') ADVANCE(956); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1053); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1025: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'l') ADVANCE(911); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(1054); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1026: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'o') ADVANCE(941); - if (lookahead == 'r') ADVANCE(858); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'n') ADVANCE(987); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1027: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 's') ADVANCE(859); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1062); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1028: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'u') ADVANCE(912); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1008); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1029: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); - if (lookahead == 'y') ADVANCE(971); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1039); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1030: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1063); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1033); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1031: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1009); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1030); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1032: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1031); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1031); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1033: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(90); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1028); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1007); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1034: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(444); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1044); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1035); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1035: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(444); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1018); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1037); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1036: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(444); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1043); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1034); - if (('G' <= lookahead && lookahead <= 'Z') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1037: ACCEPT_TOKEN(sym_id); - if (lookahead == ':') ADVANCE(444); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'o') ADVANCE(1020); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1038: ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'p') ADVANCE(978); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1039: - ACCEPT_TOKEN(sym_file); - if (lookahead == '!') ADVANCE(1042); - if (lookahead == '<') ADVANCE(1043); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1044); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'p') ADVANCE(1066); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1040: - ACCEPT_TOKEN(sym_file); - if (lookahead == '#') ADVANCE(1039); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1041); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'q') ADVANCE(1061); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1041: - ACCEPT_TOKEN(sym_file); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1187); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1041); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1042: - ACCEPT_TOKEN(sym_file); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1182); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1042); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(1064); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1043: - ACCEPT_TOKEN(sym_file); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1183); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1043); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(706); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1044: - ACCEPT_TOKEN(sym_file); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1185); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r') ADVANCE(1044); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(989); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1045: - ACCEPT_TOKEN(sym_file); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(1045); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(1005); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1046: - ACCEPT_TOKEN(sym_pattern); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(1052); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1047: - ACCEPT_TOKEN(sym_pattern); - if (lookahead == '/') ADVANCE(1049); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == 'i') ADVANCE(1048); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'r') ADVANCE(1019); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1048: - ACCEPT_TOKEN(sym_pattern); - if (lookahead == '/') ADVANCE(1049); - if (lookahead == '\\') ADVANCE(76); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(75); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 's') ADVANCE(1051); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1049: - ACCEPT_TOKEN(sym_pattern); - if (lookahead == 'i') ADVANCE(1046); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(678); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1050: - ACCEPT_TOKEN(sym_ipv6); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(695); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1051: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1052); - if (lookahead == ':') ADVANCE(40); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1057); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1054); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1067); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(703); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1052: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1056); - if (('6' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1066); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1053: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1057); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1067); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1054: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1056); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1066); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1055: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1054); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1067); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(683); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1056: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(999); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1057: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(1056); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1066); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1058: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '1') ADVANCE(1055); - if (lookahead == '2') ADVANCE(1051); - if (lookahead == ':') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1053); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(668); - if (('G' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(1036); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1059: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == '1') ADVANCE(1055); - if (lookahead == '2') ADVANCE(1051); - if (lookahead == ':') ADVANCE(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1053); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1065); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 't') ADVANCE(1007); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1060: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(45); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'u') ADVANCE(1014); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1061: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(45); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'u') ADVANCE(996); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1060); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1062: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(45); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'u') ADVANCE(1024); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1061); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1063: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(45); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'u') ADVANCE(984); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1062); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1064: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'v') ADVANCE(981); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1065: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'y') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1067); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1066: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); + if (lookahead == 'y') ADVANCE(773); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1064); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1067: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(40); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(96); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1066); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1068: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(32); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); + if (lookahead == 'f') ADVANCE(977); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1074); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1069: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(32); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); + if (lookahead == 'f') ADVANCE(1068); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1068); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1072); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1070: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(32); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); + if (lookahead == 'f') ADVANCE(1069); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1069); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1071); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1071: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(32); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1070); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1072); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1072: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(440); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1074); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1073: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(440); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1072); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1071); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1074: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(440); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(98); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1073); + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1075: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '%') ADVANCE(446); - if (lookahead == ':') ADVANCE(440); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(97); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1074); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1076); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1076: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(1077); - if (lookahead == ':') ADVANCE(81); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1111); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1148); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1077); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1077: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(1113); - if (lookahead == ':') ADVANCE(81); - if (('1' <= lookahead && lookahead <= '9') || + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1078); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1078: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1083); - if (lookahead == ':') ADVANCE(439); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1088); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1085); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1129); + ACCEPT_TOKEN(sym_id); + if (lookahead == ':') ADVANCE(97); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1079: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1089); - if (lookahead == ':') ADVANCE(440); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1093); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1090); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1136); + ACCEPT_TOKEN(sym_file); + if (lookahead == '!') ADVANCE(1082); + if (lookahead == '<') ADVANCE(1083); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1225); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1084); END_STATE(); case 1080: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1095); - if (lookahead == ':') ADVANCE(441); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1099); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1096); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1140); + ACCEPT_TOKEN(sym_file); + if (lookahead == '#') ADVANCE(1079); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1227); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1081); END_STATE(); case 1081: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1101); - if (lookahead == ':') ADVANCE(443); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1105); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1102); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1144); + ACCEPT_TOKEN(sym_file); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1227); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1081); END_STATE(); case 1082: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '5') ADVANCE(1107); - if (lookahead == ':') ADVANCE(444); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1111); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1108); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1148); + ACCEPT_TOKEN(sym_file); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1222); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1082); END_STATE(); case 1083: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1087); - if (('6' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1128); + ACCEPT_TOKEN(sym_file); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1223); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1083); END_STATE(); case 1084: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1088); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1129); + ACCEPT_TOKEN(sym_file); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1225); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r') ADVANCE(1084); END_STATE(); case 1085: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1087); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1128); + ACCEPT_TOKEN(sym_file); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') ADVANCE(1085); END_STATE(); case 1086: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1085); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1129); + ACCEPT_TOKEN(sym_pattern); END_STATE(); case 1087: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1124); + ACCEPT_TOKEN(sym_pattern); + if (lookahead == '/') ADVANCE(1089); + if (lookahead == '\\') ADVANCE(80); + if (lookahead == 'i') ADVANCE(1088); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(79); END_STATE(); case 1088: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1128); + ACCEPT_TOKEN(sym_pattern); + if (lookahead == '/') ADVANCE(1089); + if (lookahead == '\\') ADVANCE(80); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(79); END_STATE(); case 1089: - ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1094); - if (('6' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1138); + ACCEPT_TOKEN(sym_pattern); + if (lookahead == 'i') ADVANCE(1086); END_STATE(); case 1090: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1094); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1138); END_STATE(); case 1091: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1090); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1092); + if (lookahead == ':') ADVANCE(45); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1097); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1094); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1136); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1106); END_STATE(); case 1092: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1136); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1096); + if (('6' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1105); END_STATE(); case 1093: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1138); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1097); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1106); END_STATE(); case 1094: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1135); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1096); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1105); END_STATE(); case 1095: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1100); - if (('6' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1142); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1094); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1106); END_STATE(); case 1096: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1100); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1142); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1104); END_STATE(); case 1097: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1096); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1140); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1105); END_STATE(); case 1098: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1099); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '1') ADVANCE(1095); + if (lookahead == '2') ADVANCE(1091); + if (lookahead == ':') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1140); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1107); END_STATE(); case 1099: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1142); + if (lookahead == '%') ADVANCE(580); + if (lookahead == '1') ADVANCE(1095); + if (lookahead == '2') ADVANCE(1091); + if (lookahead == ':') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1093); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(815); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); END_STATE(); case 1100: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1139); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(49); END_STATE(); case 1101: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1106); - if (('6' <= lookahead && lookahead <= '9') || + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1100); END_STATE(); case 1102: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1106); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1146); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1101); END_STATE(); case 1103: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1102); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1144); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(49); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1102); END_STATE(); case 1104: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1105); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1144); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(45); END_STATE(); case 1105: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1146); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1104); END_STATE(); case 1106: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(443); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(45); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1143); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1105); END_STATE(); case 1107: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1112); - if (('6' <= lookahead && lookahead <= '9') || + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(45); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1106); END_STATE(); case 1108: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1112); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1150); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(34); END_STATE(); case 1109: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1108); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1148); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1108); END_STATE(); case 1110: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1111); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1148); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(34); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1109); END_STATE(); case 1111: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(34); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1150); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1110); END_STATE(); case 1112: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '.') ADVANCE(79); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1147); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(573); END_STATE(); case 1113: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '0') ADVANCE(1123); - if (lookahead == ':') ADVANCE(81); - if (('1' <= lookahead && lookahead <= '9') || + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1147); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1112); END_STATE(); case 1114: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1086); - if (lookahead == '2') ADVANCE(1078); - if (lookahead == 'f') ADVANCE(1012); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1084); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1015); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1113); END_STATE(); case 1115: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1086); - if (lookahead == '2') ADVANCE(1078); - if (lookahead == 'f') ADVANCE(1125); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1084); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1130); + if (lookahead == '%') ADVANCE(580); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1114); END_STATE(); case 1116: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1091); - if (lookahead == '2') ADVANCE(1079); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1092); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '0') ADVANCE(1117); + if (lookahead == ':') ADVANCE(87); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1151); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1137); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1188); END_STATE(); case 1117: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1097); - if (lookahead == '2') ADVANCE(1080); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1098); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1141); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '0') ADVANCE(1153); + if (lookahead == ':') ADVANCE(87); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1190); END_STATE(); case 1118: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1103); - if (lookahead == '2') ADVANCE(1081); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1104); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1123); + if (lookahead == ':') ADVANCE(578); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1128); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1125); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1145); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1169); END_STATE(); case 1119: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1109); - if (lookahead == '2') ADVANCE(1082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1110); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1129); + if (lookahead == ':') ADVANCE(573); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1133); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1130); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1149); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1176); END_STATE(); case 1120: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '1') ADVANCE(1109); - if (lookahead == '2') ADVANCE(1082); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1110); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1135); + if (lookahead == ':') ADVANCE(574); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1139); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1136); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1036); - if (('G' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1038); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1180); END_STATE(); case 1121: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == '5') ADVANCE(1151); - if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1050); - if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1152); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1141); + if (lookahead == ':') ADVANCE(576); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1145); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1142); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1184); END_STATE(); case 1122: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(77); + if (lookahead == '.') ADVANCE(85); + if (lookahead == '5') ADVANCE(1147); + if (lookahead == ':') ADVANCE(577); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1148); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1188); END_STATE(); case 1123: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(81); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1127); + if (('6' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1168); END_STATE(); case 1124: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1128); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1169); END_STATE(); case 1125: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1127); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1129); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1127); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1168); END_STATE(); case 1126: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1124); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1125); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1169); END_STATE(); case 1127: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); - if (lookahead == 'f') ADVANCE(1126); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1164); END_STATE(); case 1128: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1168); END_STATE(); case 1129: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1134); + if (('6' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1128); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1178); END_STATE(); case 1130: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(439); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1129); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1134); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1178); END_STATE(); case 1131: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(442); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1130); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1176); END_STATE(); case 1132: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(442); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1133); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1133); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1176); END_STATE(); case 1133: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(442); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1131); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1178); END_STATE(); case 1134: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(442); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1175); END_STATE(); case 1135: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(440); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1140); + if (('6' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1182); END_STATE(); case 1136: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1138); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1140); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1182); END_STATE(); case 1137: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1136); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1136); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1180); END_STATE(); case 1138: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1135); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1139); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1180); END_STATE(); case 1139: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(441); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1182); END_STATE(); case 1140: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(441); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1142); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1179); END_STATE(); case 1141: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1146); + if (('6' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1140); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1186); END_STATE(); case 1142: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1139); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1146); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1186); END_STATE(); case 1143: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(443); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1142); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1184); END_STATE(); case 1144: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(443); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1146); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1145); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1184); END_STATE(); case 1145: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(443); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1144); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1186); END_STATE(); case 1146: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(443); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1143); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1183); END_STATE(); case 1147: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(444); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1152); + if (('6' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1190); END_STATE(); case 1148: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1150); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1152); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1190); END_STATE(); case 1149: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1148); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1148); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1188); END_STATE(); case 1150: ACCEPT_TOKEN(sym_ipv6); - if (lookahead == ':') ADVANCE(444); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1147); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1151); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1188); END_STATE(); case 1151: ACCEPT_TOKEN(sym_ipv6); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1050); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1190); END_STATE(); case 1152: ACCEPT_TOKEN(sym_ipv6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1050); + if (lookahead == '.') ADVANCE(85); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1187); END_STATE(); case 1153: ACCEPT_TOKEN(sym_ipv6); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1152); + if (lookahead == '0') ADVANCE(1163); + if (lookahead == ':') ADVANCE(87); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1187); END_STATE(); case 1154: ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1126); + if (lookahead == '2') ADVANCE(1118); + if (lookahead == 'f') ADVANCE(1167); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1124); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1170); + END_STATE(); + case 1155: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1126); + if (lookahead == '2') ADVANCE(1118); + if (lookahead == 'f') ADVANCE(1070); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1124); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1073); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); + END_STATE(); + case 1156: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1131); + if (lookahead == '2') ADVANCE(1119); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1132); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1177); + END_STATE(); + case 1157: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1137); + if (lookahead == '2') ADVANCE(1120); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1138); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1181); + END_STATE(); + case 1158: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1143); + if (lookahead == '2') ADVANCE(1121); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1144); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1185); + END_STATE(); + case 1159: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1149); + if (lookahead == '2') ADVANCE(1122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1150); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1189); + END_STATE(); + case 1160: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '1') ADVANCE(1149); + if (lookahead == '2') ADVANCE(1122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1150); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1075); + if (('G' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(1067); + END_STATE(); + case 1161: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == '5') ADVANCE(1191); + if (('6' <= lookahead && lookahead <= '9')) ADVANCE(1090); + if (('0' <= lookahead && lookahead <= '4')) ADVANCE(1192); + END_STATE(); + case 1162: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(82); + END_STATE(); + case 1163: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(87); + END_STATE(); + case 1164: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); + END_STATE(); + case 1165: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); + if (lookahead == 'f') ADVANCE(1166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1050); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1168); END_STATE(); - case 1155: + case 1166: ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); + if (lookahead == 'f') ADVANCE(1162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1154); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1164); END_STATE(); - case 1156: + case 1167: ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); + if (lookahead == 'f') ADVANCE(1165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1155); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(1169); END_STATE(); - case 1157: + case 1168: ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1134); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1164); END_STATE(); - case 1158: + case 1169: ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1156); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1168); END_STATE(); - case 1159: + case 1170: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(578); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1169); + END_STATE(); + case 1171: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(575); + END_STATE(); + case 1172: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1173); + END_STATE(); + case 1173: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1171); + END_STATE(); + case 1174: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(575); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1172); + END_STATE(); + case 1175: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(573); + END_STATE(); + case 1176: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1178); + END_STATE(); + case 1177: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1176); + END_STATE(); + case 1178: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1175); + END_STATE(); + case 1179: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(574); + END_STATE(); + case 1180: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1182); + END_STATE(); + case 1181: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1180); + END_STATE(); + case 1182: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1179); + END_STATE(); + case 1183: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(576); + END_STATE(); + case 1184: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1186); + END_STATE(); + case 1185: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1184); + END_STATE(); + case 1186: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(576); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1183); + END_STATE(); + case 1187: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(577); + END_STATE(); + case 1188: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1190); + END_STATE(); + case 1189: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1188); + END_STATE(); + case 1190: + ACCEPT_TOKEN(sym_ipv6); + if (lookahead == ':') ADVANCE(577); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1187); + END_STATE(); + case 1191: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1090); + END_STATE(); + case 1192: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1090); + END_STATE(); + case 1193: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1192); + END_STATE(); + case 1194: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1090); + END_STATE(); + case 1195: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1194); + END_STATE(); + case 1196: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1195); + END_STATE(); + case 1197: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1174); + END_STATE(); + case 1198: + ACCEPT_TOKEN(sym_ipv6); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1196); + END_STATE(); + case 1199: ACCEPT_TOKEN(sym_ipv4); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1159); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1199); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1160: + case 1200: ACCEPT_TOKEN(sym_ipv4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1160); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1200); END_STATE(); - case 1161: + case 1201: ACCEPT_TOKEN(sym_port); END_STATE(); - case 1162: + case 1202: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1163); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1203); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1163: + case 1203: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(435); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1165); + if (lookahead == '.') ADVANCE(569); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1205); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1164: + case 1204: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1204); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); - case 1165: + case 1205: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1165); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1205); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1166: + case 1206: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(437); + if (lookahead == '.') ADVANCE(571); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(51); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1166); + lookahead == 'e') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1206); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1167: + case 1207: ACCEPT_TOKEN(sym_floatp); - if (lookahead == '.') ADVANCE(433); + if (lookahead == '.') ADVANCE(567); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1167); + lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1207); END_STATE(); - case 1168: + case 1208: ACCEPT_TOKEN(sym_floatp); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1173); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1213); END_STATE(); - case 1169: + case 1209: ACCEPT_TOKEN(sym_floatp); - if (lookahead == ':') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1168); + if (lookahead == ':') ADVANCE(90); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1208); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(99); END_STATE(); - case 1170: + case 1210: ACCEPT_TOKEN(sym_floatp); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1170); + lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1210); END_STATE(); - case 1171: + case 1211: ACCEPT_TOKEN(sym_floatp); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1167); + lookahead == 'e') ADVANCE(564); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1207); END_STATE(); - case 1172: + case 1212: ACCEPT_TOKEN(sym_floatp); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1178); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1166); + lookahead == 'e') ADVANCE(1218); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1206); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); - case 1173: + case 1213: ACCEPT_TOKEN(sym_floatp); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1173); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1213); END_STATE(); - case 1174: + case 1214: ACCEPT_TOKEN(sym_hex); - if (lookahead == '.') ADVANCE(435); + if (lookahead == '.') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1174); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1214); if (lookahead == '-' || ('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(62); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); - case 1175: + case 1215: ACCEPT_TOKEN(sym_hex); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1175); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1215); END_STATE(); - case 1176: + case 1216: ACCEPT_TOKEN(sym_time_unit); END_STATE(); - case 1177: + case 1217: ACCEPT_TOKEN(sym_time_unit); - if (lookahead == 's') ADVANCE(1176); + if (lookahead == 's') ADVANCE(1216); END_STATE(); - case 1178: + case 1218: ACCEPT_TOKEN(sym_hostname); - if (lookahead == '+') ADVANCE(432); - if (lookahead == '-') ADVANCE(1179); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + if (lookahead == '+') ADVANCE(566); + if (lookahead == '-') ADVANCE(1219); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1204); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); - case 1179: + case 1219: ACCEPT_TOKEN(sym_hostname); - if (lookahead == '.') ADVANCE(435); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1164); + if (lookahead == '.') ADVANCE(569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1204); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); - case 1180: + case 1220: ACCEPT_TOKEN(sym_hostname); - if (lookahead == '.') ADVANCE(435); + if (lookahead == '.') ADVANCE(569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1180); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1220); END_STATE(); - case 1181: + case 1221: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 1182: + case 1222: ACCEPT_TOKEN(sym_zeekygen_head_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1182); + lookahead != '\r') ADVANCE(1222); END_STATE(); - case 1183: + case 1223: ACCEPT_TOKEN(sym_zeekygen_prev_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1183); + lookahead != '\r') ADVANCE(1223); END_STATE(); - case 1184: + case 1224: ACCEPT_TOKEN(sym_zeekygen_next_comment); - if (lookahead == '!') ADVANCE(1182); - if (lookahead == '<') ADVANCE(1183); + if (lookahead == '!') ADVANCE(1222); + if (lookahead == '<') ADVANCE(1223); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1185); + lookahead != '\r') ADVANCE(1225); END_STATE(); - case 1185: + case 1225: ACCEPT_TOKEN(sym_zeekygen_next_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1185); + lookahead != '\r') ADVANCE(1225); END_STATE(); - case 1186: + case 1226: ACCEPT_TOKEN(sym_minor_comment); - if (lookahead == '#') ADVANCE(1184); + if (lookahead == '#') ADVANCE(1224); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1187); + lookahead != '\r') ADVANCE(1227); END_STATE(); - case 1187: + case 1227: ACCEPT_TOKEN(sym_minor_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(1187); + lookahead != '\r') ADVANCE(1227); END_STATE(); - case 1188: + case 1228: ACCEPT_TOKEN(sym_nl); END_STATE(); default: @@ -13784,152 +13265,152 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 451}, - [2] = {.lex_state = 2}, - [3] = {.lex_state = 451}, - [4] = {.lex_state = 451}, - [5] = {.lex_state = 451}, + [1] = {.lex_state = 585}, + [2] = {.lex_state = 585}, + [3] = {.lex_state = 2}, + [4] = {.lex_state = 585}, + [5] = {.lex_state = 585}, [6] = {.lex_state = 2}, [7] = {.lex_state = 4}, - [8] = {.lex_state = 5}, - [9] = {.lex_state = 6}, - [10] = {.lex_state = 451}, - [11] = {.lex_state = 448}, - [12] = {.lex_state = 448}, - [13] = {.lex_state = 7}, - [14] = {.lex_state = 447}, - [15] = {.lex_state = 449}, - [16] = {.lex_state = 450}, - [17] = {.lex_state = 449}, - [18] = {.lex_state = 450}, - [19] = {.lex_state = 447}, - [20] = {.lex_state = 447}, - [21] = {.lex_state = 455}, + [8] = {.lex_state = 585}, + [9] = {.lex_state = 5}, + [10] = {.lex_state = 6}, + [11] = {.lex_state = 7}, + [12] = {.lex_state = 582}, + [13] = {.lex_state = 582}, + [14] = {.lex_state = 584}, + [15] = {.lex_state = 583}, + [16] = {.lex_state = 583}, + [17] = {.lex_state = 584}, + [18] = {.lex_state = 581}, + [19] = {.lex_state = 581}, + [20] = {.lex_state = 581}, + [21] = {.lex_state = 15}, [22] = {.lex_state = 15}, - [23] = {.lex_state = 10}, - [24] = {.lex_state = 455}, - [25] = {.lex_state = 15}, - [26] = {.lex_state = 455}, - [27] = {.lex_state = 455}, - [28] = {.lex_state = 455}, - [29] = {.lex_state = 455}, - [30] = {.lex_state = 455}, - [31] = {.lex_state = 455}, - [32] = {.lex_state = 455}, - [33] = {.lex_state = 10}, - [34] = {.lex_state = 455}, - [35] = {.lex_state = 455}, - [36] = {.lex_state = 455}, - [37] = {.lex_state = 455}, + [23] = {.lex_state = 589}, + [24] = {.lex_state = 589}, + [25] = {.lex_state = 589}, + [26] = {.lex_state = 589}, + [27] = {.lex_state = 589}, + [28] = {.lex_state = 589}, + [29] = {.lex_state = 589}, + [30] = {.lex_state = 589}, + [31] = {.lex_state = 589}, + [32] = {.lex_state = 589}, + [33] = {.lex_state = 589}, + [34] = {.lex_state = 589}, + [35] = {.lex_state = 589}, + [36] = {.lex_state = 10}, + [37] = {.lex_state = 10}, [38] = {.lex_state = 15}, [39] = {.lex_state = 15}, - [40] = {.lex_state = 455}, - [41] = {.lex_state = 10}, - [42] = {.lex_state = 455}, - [43] = {.lex_state = 455}, - [44] = {.lex_state = 455}, - [45] = {.lex_state = 455}, - [46] = {.lex_state = 10}, - [47] = {.lex_state = 455}, - [48] = {.lex_state = 455}, - [49] = {.lex_state = 455}, - [50] = {.lex_state = 10}, - [51] = {.lex_state = 455}, - [52] = {.lex_state = 455}, - [53] = {.lex_state = 455}, - [54] = {.lex_state = 10}, - [55] = {.lex_state = 455}, - [56] = {.lex_state = 455}, - [57] = {.lex_state = 455}, - [58] = {.lex_state = 10}, - [59] = {.lex_state = 455}, - [60] = {.lex_state = 455}, - [61] = {.lex_state = 455}, - [62] = {.lex_state = 10}, - [63] = {.lex_state = 455}, - [64] = {.lex_state = 455}, - [65] = {.lex_state = 455}, - [66] = {.lex_state = 10}, - [67] = {.lex_state = 455}, - [68] = {.lex_state = 455}, - [69] = {.lex_state = 455}, - [70] = {.lex_state = 455}, - [71] = {.lex_state = 455}, - [72] = {.lex_state = 455}, - [73] = {.lex_state = 455}, - [74] = {.lex_state = 455}, - [75] = {.lex_state = 455}, - [76] = {.lex_state = 455}, - [77] = {.lex_state = 455}, - [78] = {.lex_state = 455}, - [79] = {.lex_state = 455}, - [80] = {.lex_state = 455}, - [81] = {.lex_state = 455}, - [82] = {.lex_state = 455}, - [83] = {.lex_state = 455}, - [84] = {.lex_state = 455}, - [85] = {.lex_state = 455}, + [40] = {.lex_state = 589}, + [41] = {.lex_state = 589}, + [42] = {.lex_state = 589}, + [43] = {.lex_state = 589}, + [44] = {.lex_state = 589}, + [45] = {.lex_state = 589}, + [46] = {.lex_state = 589}, + [47] = {.lex_state = 589}, + [48] = {.lex_state = 589}, + [49] = {.lex_state = 589}, + [50] = {.lex_state = 589}, + [51] = {.lex_state = 589}, + [52] = {.lex_state = 589}, + [53] = {.lex_state = 589}, + [54] = {.lex_state = 589}, + [55] = {.lex_state = 589}, + [56] = {.lex_state = 589}, + [57] = {.lex_state = 589}, + [58] = {.lex_state = 589}, + [59] = {.lex_state = 589}, + [60] = {.lex_state = 589}, + [61] = {.lex_state = 589}, + [62] = {.lex_state = 589}, + [63] = {.lex_state = 589}, + [64] = {.lex_state = 589}, + [65] = {.lex_state = 589}, + [66] = {.lex_state = 589}, + [67] = {.lex_state = 589}, + [68] = {.lex_state = 589}, + [69] = {.lex_state = 589}, + [70] = {.lex_state = 589}, + [71] = {.lex_state = 589}, + [72] = {.lex_state = 589}, + [73] = {.lex_state = 589}, + [74] = {.lex_state = 589}, + [75] = {.lex_state = 589}, + [76] = {.lex_state = 589}, + [77] = {.lex_state = 589}, + [78] = {.lex_state = 589}, + [79] = {.lex_state = 10}, + [80] = {.lex_state = 10}, + [81] = {.lex_state = 10}, + [82] = {.lex_state = 589}, + [83] = {.lex_state = 589}, + [84] = {.lex_state = 589}, + [85] = {.lex_state = 10}, [86] = {.lex_state = 10}, - [87] = {.lex_state = 10}, - [88] = {.lex_state = 10}, + [87] = {.lex_state = 589}, + [88] = {.lex_state = 589}, [89] = {.lex_state = 10}, [90] = {.lex_state = 10}, - [91] = {.lex_state = 10}, - [92] = {.lex_state = 10}, - [93] = {.lex_state = 10}, - [94] = {.lex_state = 455}, - [95] = {.lex_state = 455}, - [96] = {.lex_state = 455}, - [97] = {.lex_state = 455}, - [98] = {.lex_state = 10}, - [99] = {.lex_state = 10}, - [100] = {.lex_state = 10}, - [101] = {.lex_state = 10}, - [102] = {.lex_state = 10}, + [91] = {.lex_state = 589}, + [92] = {.lex_state = 589}, + [93] = {.lex_state = 589}, + [94] = {.lex_state = 589}, + [95] = {.lex_state = 589}, + [96] = {.lex_state = 589}, + [97] = {.lex_state = 589}, + [98] = {.lex_state = 589}, + [99] = {.lex_state = 589}, + [100] = {.lex_state = 589}, + [101] = {.lex_state = 589}, + [102] = {.lex_state = 589}, [103] = {.lex_state = 10}, - [104] = {.lex_state = 10}, - [105] = {.lex_state = 10}, - [106] = {.lex_state = 10}, + [104] = {.lex_state = 589}, + [105] = {.lex_state = 589}, + [106] = {.lex_state = 589}, [107] = {.lex_state = 10}, - [108] = {.lex_state = 10}, - [109] = {.lex_state = 10}, - [110] = {.lex_state = 10}, - [111] = {.lex_state = 10}, - [112] = {.lex_state = 10}, - [113] = {.lex_state = 10}, - [114] = {.lex_state = 10}, - [115] = {.lex_state = 10}, - [116] = {.lex_state = 10}, - [117] = {.lex_state = 10}, - [118] = {.lex_state = 10}, - [119] = {.lex_state = 10}, - [120] = {.lex_state = 455}, - [121] = {.lex_state = 10}, - [122] = {.lex_state = 10}, + [108] = {.lex_state = 589}, + [109] = {.lex_state = 589}, + [110] = {.lex_state = 589}, + [111] = {.lex_state = 589}, + [112] = {.lex_state = 589}, + [113] = {.lex_state = 589}, + [114] = {.lex_state = 589}, + [115] = {.lex_state = 589}, + [116] = {.lex_state = 589}, + [117] = {.lex_state = 589}, + [118] = {.lex_state = 589}, + [119] = {.lex_state = 589}, + [120] = {.lex_state = 589}, + [121] = {.lex_state = 589}, + [122] = {.lex_state = 589}, [123] = {.lex_state = 10}, - [124] = {.lex_state = 10}, - [125] = {.lex_state = 10}, - [126] = {.lex_state = 10}, - [127] = {.lex_state = 10}, - [128] = {.lex_state = 10}, - [129] = {.lex_state = 10}, - [130] = {.lex_state = 10}, - [131] = {.lex_state = 10}, - [132] = {.lex_state = 10}, - [133] = {.lex_state = 10}, - [134] = {.lex_state = 10}, - [135] = {.lex_state = 10}, - [136] = {.lex_state = 10}, - [137] = {.lex_state = 10}, - [138] = {.lex_state = 10}, - [139] = {.lex_state = 10}, - [140] = {.lex_state = 10}, - [141] = {.lex_state = 10}, - [142] = {.lex_state = 10}, - [143] = {.lex_state = 10}, - [144] = {.lex_state = 10}, - [145] = {.lex_state = 10}, - [146] = {.lex_state = 10}, + [124] = {.lex_state = 589}, + [125] = {.lex_state = 589}, + [126] = {.lex_state = 589}, + [127] = {.lex_state = 589}, + [128] = {.lex_state = 589}, + [129] = {.lex_state = 589}, + [130] = {.lex_state = 589}, + [131] = {.lex_state = 589}, + [132] = {.lex_state = 589}, + [133] = {.lex_state = 589}, + [134] = {.lex_state = 589}, + [135] = {.lex_state = 589}, + [136] = {.lex_state = 589}, + [137] = {.lex_state = 589}, + [138] = {.lex_state = 589}, + [139] = {.lex_state = 589}, + [140] = {.lex_state = 589}, + [141] = {.lex_state = 589}, + [142] = {.lex_state = 589}, + [143] = {.lex_state = 589}, + [144] = {.lex_state = 589}, + [145] = {.lex_state = 589}, + [146] = {.lex_state = 589}, [147] = {.lex_state = 10}, [148] = {.lex_state = 10}, [149] = {.lex_state = 10}, @@ -13937,266 +13418,266 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [151] = {.lex_state = 10}, [152] = {.lex_state = 10}, [153] = {.lex_state = 10}, - [154] = {.lex_state = 10}, - [155] = {.lex_state = 10}, - [156] = {.lex_state = 10}, - [157] = {.lex_state = 455}, - [158] = {.lex_state = 455}, - [159] = {.lex_state = 455}, - [160] = {.lex_state = 455}, - [161] = {.lex_state = 455}, - [162] = {.lex_state = 455}, - [163] = {.lex_state = 455}, - [164] = {.lex_state = 455}, - [165] = {.lex_state = 455}, - [166] = {.lex_state = 455}, - [167] = {.lex_state = 455}, - [168] = {.lex_state = 455}, - [169] = {.lex_state = 455}, - [170] = {.lex_state = 455}, - [171] = {.lex_state = 455}, - [172] = {.lex_state = 455}, - [173] = {.lex_state = 455}, - [174] = {.lex_state = 455}, - [175] = {.lex_state = 455}, - [176] = {.lex_state = 455}, - [177] = {.lex_state = 455}, - [178] = {.lex_state = 455}, - [179] = {.lex_state = 455}, - [180] = {.lex_state = 455}, - [181] = {.lex_state = 455}, - [182] = {.lex_state = 455}, - [183] = {.lex_state = 455}, - [184] = {.lex_state = 455}, - [185] = {.lex_state = 455}, - [186] = {.lex_state = 455}, - [187] = {.lex_state = 455}, - [188] = {.lex_state = 455}, - [189] = {.lex_state = 455}, - [190] = {.lex_state = 455}, - [191] = {.lex_state = 455}, - [192] = {.lex_state = 455}, - [193] = {.lex_state = 455}, - [194] = {.lex_state = 455}, - [195] = {.lex_state = 455}, - [196] = {.lex_state = 455}, - [197] = {.lex_state = 455}, - [198] = {.lex_state = 455}, - [199] = {.lex_state = 455}, - [200] = {.lex_state = 455}, - [201] = {.lex_state = 455}, - [202] = {.lex_state = 455}, - [203] = {.lex_state = 455}, - [204] = {.lex_state = 455}, - [205] = {.lex_state = 455}, - [206] = {.lex_state = 455}, - [207] = {.lex_state = 455}, - [208] = {.lex_state = 455}, - [209] = {.lex_state = 455}, - [210] = {.lex_state = 455}, - [211] = {.lex_state = 455}, - [212] = {.lex_state = 455}, - [213] = {.lex_state = 455}, - [214] = {.lex_state = 455}, - [215] = {.lex_state = 455}, - [216] = {.lex_state = 455}, - [217] = {.lex_state = 455}, - [218] = {.lex_state = 455}, - [219] = {.lex_state = 455}, - [220] = {.lex_state = 455}, - [221] = {.lex_state = 455}, - [222] = {.lex_state = 455}, - [223] = {.lex_state = 455}, - [224] = {.lex_state = 455}, - [225] = {.lex_state = 455}, - [226] = {.lex_state = 455}, - [227] = {.lex_state = 455}, - [228] = {.lex_state = 455}, - [229] = {.lex_state = 455}, - [230] = {.lex_state = 455}, - [231] = {.lex_state = 455}, - [232] = {.lex_state = 455}, - [233] = {.lex_state = 455}, - [234] = {.lex_state = 455}, - [235] = {.lex_state = 455}, - [236] = {.lex_state = 455}, - [237] = {.lex_state = 455}, - [238] = {.lex_state = 455}, - [239] = {.lex_state = 455}, - [240] = {.lex_state = 455}, - [241] = {.lex_state = 455}, - [242] = {.lex_state = 455}, - [243] = {.lex_state = 455}, - [244] = {.lex_state = 455}, - [245] = {.lex_state = 455}, - [246] = {.lex_state = 455}, - [247] = {.lex_state = 455}, - [248] = {.lex_state = 455}, - [249] = {.lex_state = 455}, - [250] = {.lex_state = 455}, - [251] = {.lex_state = 455}, - [252] = {.lex_state = 455}, - [253] = {.lex_state = 455}, - [254] = {.lex_state = 455}, - [255] = {.lex_state = 455}, - [256] = {.lex_state = 455}, - [257] = {.lex_state = 455}, - [258] = {.lex_state = 455}, - [259] = {.lex_state = 455}, - [260] = {.lex_state = 455}, - [261] = {.lex_state = 455}, - [262] = {.lex_state = 455}, - [263] = {.lex_state = 455}, - [264] = {.lex_state = 455}, - [265] = {.lex_state = 455}, - [266] = {.lex_state = 455}, - [267] = {.lex_state = 455}, - [268] = {.lex_state = 455}, - [269] = {.lex_state = 455}, - [270] = {.lex_state = 455}, - [271] = {.lex_state = 455}, - [272] = {.lex_state = 455}, - [273] = {.lex_state = 455}, - [274] = {.lex_state = 455}, - [275] = {.lex_state = 455}, - [276] = {.lex_state = 455}, - [277] = {.lex_state = 455}, - [278] = {.lex_state = 455}, - [279] = {.lex_state = 455}, - [280] = {.lex_state = 455}, - [281] = {.lex_state = 455}, - [282] = {.lex_state = 455}, - [283] = {.lex_state = 455}, - [284] = {.lex_state = 455}, - [285] = {.lex_state = 455}, - [286] = {.lex_state = 455}, - [287] = {.lex_state = 455}, - [288] = {.lex_state = 455}, + [154] = {.lex_state = 589}, + [155] = {.lex_state = 589}, + [156] = {.lex_state = 589}, + [157] = {.lex_state = 589}, + [158] = {.lex_state = 10}, + [159] = {.lex_state = 10}, + [160] = {.lex_state = 589}, + [161] = {.lex_state = 589}, + [162] = {.lex_state = 589}, + [163] = {.lex_state = 589}, + [164] = {.lex_state = 589}, + [165] = {.lex_state = 589}, + [166] = {.lex_state = 589}, + [167] = {.lex_state = 10}, + [168] = {.lex_state = 10}, + [169] = {.lex_state = 589}, + [170] = {.lex_state = 589}, + [171] = {.lex_state = 589}, + [172] = {.lex_state = 589}, + [173] = {.lex_state = 589}, + [174] = {.lex_state = 589}, + [175] = {.lex_state = 589}, + [176] = {.lex_state = 10}, + [177] = {.lex_state = 10}, + [178] = {.lex_state = 589}, + [179] = {.lex_state = 589}, + [180] = {.lex_state = 589}, + [181] = {.lex_state = 589}, + [182] = {.lex_state = 589}, + [183] = {.lex_state = 10}, + [184] = {.lex_state = 589}, + [185] = {.lex_state = 10}, + [186] = {.lex_state = 10}, + [187] = {.lex_state = 589}, + [188] = {.lex_state = 589}, + [189] = {.lex_state = 589}, + [190] = {.lex_state = 589}, + [191] = {.lex_state = 589}, + [192] = {.lex_state = 589}, + [193] = {.lex_state = 10}, + [194] = {.lex_state = 10}, + [195] = {.lex_state = 10}, + [196] = {.lex_state = 589}, + [197] = {.lex_state = 589}, + [198] = {.lex_state = 589}, + [199] = {.lex_state = 589}, + [200] = {.lex_state = 589}, + [201] = {.lex_state = 10}, + [202] = {.lex_state = 10}, + [203] = {.lex_state = 589}, + [204] = {.lex_state = 589}, + [205] = {.lex_state = 589}, + [206] = {.lex_state = 589}, + [207] = {.lex_state = 589}, + [208] = {.lex_state = 10}, + [209] = {.lex_state = 10}, + [210] = {.lex_state = 589}, + [211] = {.lex_state = 10}, + [212] = {.lex_state = 589}, + [213] = {.lex_state = 589}, + [214] = {.lex_state = 589}, + [215] = {.lex_state = 10}, + [216] = {.lex_state = 10}, + [217] = {.lex_state = 589}, + [218] = {.lex_state = 589}, + [219] = {.lex_state = 589}, + [220] = {.lex_state = 589}, + [221] = {.lex_state = 589}, + [222] = {.lex_state = 10}, + [223] = {.lex_state = 10}, + [224] = {.lex_state = 589}, + [225] = {.lex_state = 589}, + [226] = {.lex_state = 589}, + [227] = {.lex_state = 589}, + [228] = {.lex_state = 589}, + [229] = {.lex_state = 10}, + [230] = {.lex_state = 10}, + [231] = {.lex_state = 589}, + [232] = {.lex_state = 589}, + [233] = {.lex_state = 589}, + [234] = {.lex_state = 589}, + [235] = {.lex_state = 589}, + [236] = {.lex_state = 589}, + [237] = {.lex_state = 589}, + [238] = {.lex_state = 589}, + [239] = {.lex_state = 589}, + [240] = {.lex_state = 589}, + [241] = {.lex_state = 589}, + [242] = {.lex_state = 589}, + [243] = {.lex_state = 589}, + [244] = {.lex_state = 589}, + [245] = {.lex_state = 589}, + [246] = {.lex_state = 589}, + [247] = {.lex_state = 589}, + [248] = {.lex_state = 589}, + [249] = {.lex_state = 589}, + [250] = {.lex_state = 589}, + [251] = {.lex_state = 589}, + [252] = {.lex_state = 589}, + [253] = {.lex_state = 589}, + [254] = {.lex_state = 589}, + [255] = {.lex_state = 589}, + [256] = {.lex_state = 10}, + [257] = {.lex_state = 10}, + [258] = {.lex_state = 10}, + [259] = {.lex_state = 10}, + [260] = {.lex_state = 10}, + [261] = {.lex_state = 10}, + [262] = {.lex_state = 10}, + [263] = {.lex_state = 10}, + [264] = {.lex_state = 10}, + [265] = {.lex_state = 10}, + [266] = {.lex_state = 10}, + [267] = {.lex_state = 10}, + [268] = {.lex_state = 10}, + [269] = {.lex_state = 10}, + [270] = {.lex_state = 10}, + [271] = {.lex_state = 10}, + [272] = {.lex_state = 10}, + [273] = {.lex_state = 10}, + [274] = {.lex_state = 10}, + [275] = {.lex_state = 10}, + [276] = {.lex_state = 10}, + [277] = {.lex_state = 10}, + [278] = {.lex_state = 10}, + [279] = {.lex_state = 10}, + [280] = {.lex_state = 10}, + [281] = {.lex_state = 10}, + [282] = {.lex_state = 10}, + [283] = {.lex_state = 10}, + [284] = {.lex_state = 10}, + [285] = {.lex_state = 10}, + [286] = {.lex_state = 10}, + [287] = {.lex_state = 10}, + [288] = {.lex_state = 10}, [289] = {.lex_state = 8}, - [290] = {.lex_state = 451}, + [290] = {.lex_state = 8}, [291] = {.lex_state = 8}, - [292] = {.lex_state = 8}, - [293] = {.lex_state = 451}, - [294] = {.lex_state = 8}, - [295] = {.lex_state = 451}, - [296] = {.lex_state = 8}, - [297] = {.lex_state = 8}, - [298] = {.lex_state = 451}, - [299] = {.lex_state = 451}, - [300] = {.lex_state = 8}, - [301] = {.lex_state = 451}, - [302] = {.lex_state = 451}, - [303] = {.lex_state = 451}, - [304] = {.lex_state = 451}, + [292] = {.lex_state = 585}, + [293] = {.lex_state = 585}, + [294] = {.lex_state = 585}, + [295] = {.lex_state = 8}, + [296] = {.lex_state = 585}, + [297] = {.lex_state = 585}, + [298] = {.lex_state = 585}, + [299] = {.lex_state = 8}, + [300] = {.lex_state = 585}, + [301] = {.lex_state = 585}, + [302] = {.lex_state = 585}, + [303] = {.lex_state = 585}, + [304] = {.lex_state = 8}, [305] = {.lex_state = 8}, - [306] = {.lex_state = 8}, - [307] = {.lex_state = 451}, - [308] = {.lex_state = 8}, - [309] = {.lex_state = 8}, - [310] = {.lex_state = 8}, - [311] = {.lex_state = 8}, - [312] = {.lex_state = 8}, - [313] = {.lex_state = 8}, - [314] = {.lex_state = 451}, - [315] = {.lex_state = 451}, - [316] = {.lex_state = 8}, - [317] = {.lex_state = 451}, - [318] = {.lex_state = 451}, - [319] = {.lex_state = 451}, - [320] = {.lex_state = 451}, - [321] = {.lex_state = 451}, - [322] = {.lex_state = 451}, - [323] = {.lex_state = 451}, - [324] = {.lex_state = 451}, + [306] = {.lex_state = 585}, + [307] = {.lex_state = 585}, + [308] = {.lex_state = 585}, + [309] = {.lex_state = 585}, + [310] = {.lex_state = 585}, + [311] = {.lex_state = 585}, + [312] = {.lex_state = 585}, + [313] = {.lex_state = 585}, + [314] = {.lex_state = 585}, + [315] = {.lex_state = 585}, + [316] = {.lex_state = 585}, + [317] = {.lex_state = 585}, + [318] = {.lex_state = 585}, + [319] = {.lex_state = 585}, + [320] = {.lex_state = 585}, + [321] = {.lex_state = 585}, + [322] = {.lex_state = 585}, + [323] = {.lex_state = 585}, + [324] = {.lex_state = 585}, [325] = {.lex_state = 8}, - [326] = {.lex_state = 451}, - [327] = {.lex_state = 451}, - [328] = {.lex_state = 451}, - [329] = {.lex_state = 451}, - [330] = {.lex_state = 451}, - [331] = {.lex_state = 451}, - [332] = {.lex_state = 451}, - [333] = {.lex_state = 451}, - [334] = {.lex_state = 451}, + [326] = {.lex_state = 8}, + [327] = {.lex_state = 8}, + [328] = {.lex_state = 8}, + [329] = {.lex_state = 8}, + [330] = {.lex_state = 585}, + [331] = {.lex_state = 8}, + [332] = {.lex_state = 585}, + [333] = {.lex_state = 8}, + [334] = {.lex_state = 8}, [335] = {.lex_state = 8}, [336] = {.lex_state = 8}, [337] = {.lex_state = 8}, [338] = {.lex_state = 8}, - [339] = {.lex_state = 451}, + [339] = {.lex_state = 8}, [340] = {.lex_state = 8}, [341] = {.lex_state = 8}, [342] = {.lex_state = 8}, - [343] = {.lex_state = 451}, - [344] = {.lex_state = 451}, - [345] = {.lex_state = 451}, + [343] = {.lex_state = 8}, + [344] = {.lex_state = 8}, + [345] = {.lex_state = 8}, [346] = {.lex_state = 8}, [347] = {.lex_state = 8}, - [348] = {.lex_state = 8}, + [348] = {.lex_state = 585}, [349] = {.lex_state = 8}, [350] = {.lex_state = 8}, [351] = {.lex_state = 8}, - [352] = {.lex_state = 8}, - [353] = {.lex_state = 8}, - [354] = {.lex_state = 451}, - [355] = {.lex_state = 8}, - [356] = {.lex_state = 8}, - [357] = {.lex_state = 8}, - [358] = {.lex_state = 8}, - [359] = {.lex_state = 8}, - [360] = {.lex_state = 8}, - [361] = {.lex_state = 8}, - [362] = {.lex_state = 451}, - [363] = {.lex_state = 451}, + [352] = {.lex_state = 585}, + [353] = {.lex_state = 585}, + [354] = {.lex_state = 585}, + [355] = {.lex_state = 585}, + [356] = {.lex_state = 585}, + [357] = {.lex_state = 585}, + [358] = {.lex_state = 585}, + [359] = {.lex_state = 585}, + [360] = {.lex_state = 585}, + [361] = {.lex_state = 585}, + [362] = {.lex_state = 585}, + [363] = {.lex_state = 585}, [364] = {.lex_state = 8}, - [365] = {.lex_state = 451}, + [365] = {.lex_state = 8}, [366] = {.lex_state = 8}, [367] = {.lex_state = 8}, - [368] = {.lex_state = 8}, - [369] = {.lex_state = 451}, - [370] = {.lex_state = 451}, - [371] = {.lex_state = 451}, - [372] = {.lex_state = 451}, - [373] = {.lex_state = 451}, - [374] = {.lex_state = 451}, - [375] = {.lex_state = 451}, + [368] = {.lex_state = 585}, + [369] = {.lex_state = 8}, + [370] = {.lex_state = 8}, + [371] = {.lex_state = 8}, + [372] = {.lex_state = 8}, + [373] = {.lex_state = 8}, + [374] = {.lex_state = 585}, + [375] = {.lex_state = 8}, [376] = {.lex_state = 8}, - [377] = {.lex_state = 451}, + [377] = {.lex_state = 8}, [378] = {.lex_state = 8}, - [379] = {.lex_state = 451}, - [380] = {.lex_state = 3}, + [379] = {.lex_state = 8}, + [380] = {.lex_state = 585}, [381] = {.lex_state = 12}, - [382] = {.lex_state = 12}, + [382] = {.lex_state = 10}, [383] = {.lex_state = 12}, [384] = {.lex_state = 12}, - [385] = {.lex_state = 13}, + [385] = {.lex_state = 10}, [386] = {.lex_state = 12}, - [387] = {.lex_state = 14}, - [388] = {.lex_state = 13}, + [387] = {.lex_state = 12}, + [388] = {.lex_state = 12}, [389] = {.lex_state = 12}, - [390] = {.lex_state = 14}, - [391] = {.lex_state = 12}, - [392] = {.lex_state = 14}, - [393] = {.lex_state = 14}, + [390] = {.lex_state = 12}, + [391] = {.lex_state = 3}, + [392] = {.lex_state = 12}, + [393] = {.lex_state = 12}, [394] = {.lex_state = 12}, [395] = {.lex_state = 12}, [396] = {.lex_state = 12}, [397] = {.lex_state = 12}, [398] = {.lex_state = 12}, [399] = {.lex_state = 12}, - [400] = {.lex_state = 13}, + [400] = {.lex_state = 12}, [401] = {.lex_state = 12}, - [402] = {.lex_state = 13}, + [402] = {.lex_state = 12}, [403] = {.lex_state = 12}, - [404] = {.lex_state = 12}, + [404] = {.lex_state = 13}, [405] = {.lex_state = 12}, - [406] = {.lex_state = 12}, + [406] = {.lex_state = 13}, [407] = {.lex_state = 12}, [408] = {.lex_state = 12}, - [409] = {.lex_state = 12}, - [410] = {.lex_state = 12}, + [409] = {.lex_state = 14}, + [410] = {.lex_state = 14}, [411] = {.lex_state = 12}, - [412] = {.lex_state = 12}, - [413] = {.lex_state = 12}, + [412] = {.lex_state = 14}, + [413] = {.lex_state = 14}, [414] = {.lex_state = 12}, [415] = {.lex_state = 12}, [416] = {.lex_state = 12}, @@ -14210,414 +13691,414 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [424] = {.lex_state = 12}, [425] = {.lex_state = 12}, [426] = {.lex_state = 12}, - [427] = {.lex_state = 15}, - [428] = {.lex_state = 14}, - [429] = {.lex_state = 14}, - [430] = {.lex_state = 14}, - [431] = {.lex_state = 452}, - [432] = {.lex_state = 13}, + [427] = {.lex_state = 12}, + [428] = {.lex_state = 13}, + [429] = {.lex_state = 12}, + [430] = {.lex_state = 13}, + [431] = {.lex_state = 14}, + [432] = {.lex_state = 586}, [433] = {.lex_state = 13}, - [434] = {.lex_state = 14}, + [434] = {.lex_state = 586}, [435] = {.lex_state = 13}, - [436] = {.lex_state = 14}, - [437] = {.lex_state = 14}, - [438] = {.lex_state = 452}, - [439] = {.lex_state = 14}, - [440] = {.lex_state = 14}, + [436] = {.lex_state = 13}, + [437] = {.lex_state = 13}, + [438] = {.lex_state = 13}, + [439] = {.lex_state = 13}, + [440] = {.lex_state = 13}, [441] = {.lex_state = 13}, [442] = {.lex_state = 13}, [443] = {.lex_state = 13}, - [444] = {.lex_state = 15}, + [444] = {.lex_state = 13}, [445] = {.lex_state = 13}, [446] = {.lex_state = 13}, [447] = {.lex_state = 13}, - [448] = {.lex_state = 14}, - [449] = {.lex_state = 14}, + [448] = {.lex_state = 13}, + [449] = {.lex_state = 13}, [450] = {.lex_state = 13}, - [451] = {.lex_state = 14}, - [452] = {.lex_state = 14}, - [453] = {.lex_state = 13}, - [454] = {.lex_state = 13}, - [455] = {.lex_state = 13}, - [456] = {.lex_state = 13}, + [451] = {.lex_state = 13}, + [452] = {.lex_state = 13}, + [453] = {.lex_state = 14}, + [454] = {.lex_state = 586}, + [455] = {.lex_state = 586}, + [456] = {.lex_state = 14}, [457] = {.lex_state = 14}, - [458] = {.lex_state = 13}, + [458] = {.lex_state = 586}, [459] = {.lex_state = 14}, - [460] = {.lex_state = 13}, - [461] = {.lex_state = 13}, + [460] = {.lex_state = 586}, + [461] = {.lex_state = 14}, [462] = {.lex_state = 14}, - [463] = {.lex_state = 13}, - [464] = {.lex_state = 13}, + [463] = {.lex_state = 14}, + [464] = {.lex_state = 14}, [465] = {.lex_state = 14}, - [466] = {.lex_state = 14}, - [467] = {.lex_state = 13}, + [466] = {.lex_state = 8}, + [467] = {.lex_state = 14}, [468] = {.lex_state = 14}, - [469] = {.lex_state = 15}, - [470] = {.lex_state = 15}, - [471] = {.lex_state = 14}, - [472] = {.lex_state = 13}, - [473] = {.lex_state = 13}, + [469] = {.lex_state = 14}, + [470] = {.lex_state = 14}, + [471] = {.lex_state = 13}, + [472] = {.lex_state = 14}, + [473] = {.lex_state = 14}, [474] = {.lex_state = 14}, [475] = {.lex_state = 14}, [476] = {.lex_state = 14}, - [477] = {.lex_state = 452}, - [478] = {.lex_state = 13}, - [479] = {.lex_state = 452}, - [480] = {.lex_state = 14}, - [481] = {.lex_state = 452}, - [482] = {.lex_state = 14}, + [477] = {.lex_state = 14}, + [478] = {.lex_state = 14}, + [479] = {.lex_state = 13}, + [480] = {.lex_state = 586}, + [481] = {.lex_state = 586}, + [482] = {.lex_state = 13}, [483] = {.lex_state = 13}, - [484] = {.lex_state = 14}, - [485] = {.lex_state = 14}, + [484] = {.lex_state = 13}, + [485] = {.lex_state = 13}, [486] = {.lex_state = 14}, - [487] = {.lex_state = 13}, + [487] = {.lex_state = 14}, [488] = {.lex_state = 14}, [489] = {.lex_state = 14}, [490] = {.lex_state = 14}, - [491] = {.lex_state = 14}, + [491] = {.lex_state = 13}, [492] = {.lex_state = 13}, - [493] = {.lex_state = 452}, - [494] = {.lex_state = 452}, - [495] = {.lex_state = 452}, + [493] = {.lex_state = 14}, + [494] = {.lex_state = 15}, + [495] = {.lex_state = 15}, [496] = {.lex_state = 13}, - [497] = {.lex_state = 13}, - [498] = {.lex_state = 8}, - [499] = {.lex_state = 8}, + [497] = {.lex_state = 14}, + [498] = {.lex_state = 14}, + [499] = {.lex_state = 14}, [500] = {.lex_state = 14}, - [501] = {.lex_state = 452}, - [502] = {.lex_state = 452}, - [503] = {.lex_state = 452}, - [504] = {.lex_state = 452}, - [505] = {.lex_state = 452}, - [506] = {.lex_state = 452}, - [507] = {.lex_state = 452}, - [508] = {.lex_state = 452}, - [509] = {.lex_state = 452}, - [510] = {.lex_state = 452}, - [511] = {.lex_state = 452}, - [512] = {.lex_state = 452}, - [513] = {.lex_state = 452}, - [514] = {.lex_state = 452}, - [515] = {.lex_state = 452}, - [516] = {.lex_state = 452}, - [517] = {.lex_state = 452}, - [518] = {.lex_state = 452}, - [519] = {.lex_state = 452}, - [520] = {.lex_state = 452}, - [521] = {.lex_state = 452}, - [522] = {.lex_state = 452}, - [523] = {.lex_state = 452}, - [524] = {.lex_state = 8}, - [525] = {.lex_state = 453}, - [526] = {.lex_state = 453}, - [527] = {.lex_state = 453}, - [528] = {.lex_state = 453}, - [529] = {.lex_state = 454}, - [530] = {.lex_state = 454}, - [531] = {.lex_state = 452}, - [532] = {.lex_state = 452}, - [533] = {.lex_state = 15}, - [534] = {.lex_state = 454}, - [535] = {.lex_state = 454}, - [536] = {.lex_state = 15}, - [537] = {.lex_state = 15}, - [538] = {.lex_state = 453}, - [539] = {.lex_state = 15}, - [540] = {.lex_state = 453}, - [541] = {.lex_state = 15}, - [542] = {.lex_state = 15}, - [543] = {.lex_state = 15}, - [544] = {.lex_state = 15}, - [545] = {.lex_state = 15}, - [546] = {.lex_state = 15}, - [547] = {.lex_state = 15}, - [548] = {.lex_state = 15}, - [549] = {.lex_state = 15}, - [550] = {.lex_state = 15}, - [551] = {.lex_state = 15}, - [552] = {.lex_state = 15}, - [553] = {.lex_state = 15}, - [554] = {.lex_state = 15}, - [555] = {.lex_state = 15}, - [556] = {.lex_state = 15}, - [557] = {.lex_state = 15}, - [558] = {.lex_state = 15}, - [559] = {.lex_state = 452}, - [560] = {.lex_state = 453}, - [561] = {.lex_state = 452}, - [562] = {.lex_state = 452}, - [563] = {.lex_state = 452}, - [564] = {.lex_state = 454}, - [565] = {.lex_state = 452}, - [566] = {.lex_state = 454}, - [567] = {.lex_state = 452}, - [568] = {.lex_state = 452}, - [569] = {.lex_state = 452}, - [570] = {.lex_state = 452}, - [571] = {.lex_state = 452}, - [572] = {.lex_state = 452}, - [573] = {.lex_state = 452}, - [574] = {.lex_state = 452}, - [575] = {.lex_state = 452}, - [576] = {.lex_state = 452}, - [577] = {.lex_state = 452}, - [578] = {.lex_state = 452}, - [579] = {.lex_state = 452}, - [580] = {.lex_state = 452}, - [581] = {.lex_state = 452}, - [582] = {.lex_state = 452}, - [583] = {.lex_state = 452}, - [584] = {.lex_state = 452}, - [585] = {.lex_state = 15}, - [586] = {.lex_state = 8}, - [587] = {.lex_state = 8}, - [588] = {.lex_state = 452}, - [589] = {.lex_state = 452}, - [590] = {.lex_state = 452}, - [591] = {.lex_state = 452}, - [592] = {.lex_state = 452}, - [593] = {.lex_state = 452}, - [594] = {.lex_state = 454}, - [595] = {.lex_state = 454}, - [596] = {.lex_state = 452}, - [597] = {.lex_state = 452}, - [598] = {.lex_state = 15}, - [599] = {.lex_state = 452}, + [501] = {.lex_state = 13}, + [502] = {.lex_state = 15}, + [503] = {.lex_state = 15}, + [504] = {.lex_state = 14}, + [505] = {.lex_state = 8}, + [506] = {.lex_state = 14}, + [507] = {.lex_state = 8}, + [508] = {.lex_state = 15}, + [509] = {.lex_state = 15}, + [510] = {.lex_state = 15}, + [511] = {.lex_state = 586}, + [512] = {.lex_state = 587}, + [513] = {.lex_state = 15}, + [514] = {.lex_state = 15}, + [515] = {.lex_state = 15}, + [516] = {.lex_state = 15}, + [517] = {.lex_state = 15}, + [518] = {.lex_state = 15}, + [519] = {.lex_state = 587}, + [520] = {.lex_state = 15}, + [521] = {.lex_state = 15}, + [522] = {.lex_state = 15}, + [523] = {.lex_state = 15}, + [524] = {.lex_state = 15}, + [525] = {.lex_state = 15}, + [526] = {.lex_state = 15}, + [527] = {.lex_state = 586}, + [528] = {.lex_state = 586}, + [529] = {.lex_state = 587}, + [530] = {.lex_state = 587}, + [531] = {.lex_state = 586}, + [532] = {.lex_state = 586}, + [533] = {.lex_state = 588}, + [534] = {.lex_state = 588}, + [535] = {.lex_state = 586}, + [536] = {.lex_state = 586}, + [537] = {.lex_state = 588}, + [538] = {.lex_state = 586}, + [539] = {.lex_state = 588}, + [540] = {.lex_state = 586}, + [541] = {.lex_state = 586}, + [542] = {.lex_state = 586}, + [543] = {.lex_state = 586}, + [544] = {.lex_state = 586}, + [545] = {.lex_state = 588}, + [546] = {.lex_state = 586}, + [547] = {.lex_state = 586}, + [548] = {.lex_state = 586}, + [549] = {.lex_state = 586}, + [550] = {.lex_state = 586}, + [551] = {.lex_state = 587}, + [552] = {.lex_state = 586}, + [553] = {.lex_state = 588}, + [554] = {.lex_state = 586}, + [555] = {.lex_state = 587}, + [556] = {.lex_state = 586}, + [557] = {.lex_state = 586}, + [558] = {.lex_state = 586}, + [559] = {.lex_state = 586}, + [560] = {.lex_state = 586}, + [561] = {.lex_state = 586}, + [562] = {.lex_state = 586}, + [563] = {.lex_state = 586}, + [564] = {.lex_state = 586}, + [565] = {.lex_state = 586}, + [566] = {.lex_state = 586}, + [567] = {.lex_state = 586}, + [568] = {.lex_state = 588}, + [569] = {.lex_state = 588}, + [570] = {.lex_state = 15}, + [571] = {.lex_state = 586}, + [572] = {.lex_state = 586}, + [573] = {.lex_state = 586}, + [574] = {.lex_state = 15}, + [575] = {.lex_state = 586}, + [576] = {.lex_state = 15}, + [577] = {.lex_state = 15}, + [578] = {.lex_state = 15}, + [579] = {.lex_state = 586}, + [580] = {.lex_state = 586}, + [581] = {.lex_state = 15}, + [582] = {.lex_state = 586}, + [583] = {.lex_state = 586}, + [584] = {.lex_state = 586}, + [585] = {.lex_state = 586}, + [586] = {.lex_state = 586}, + [587] = {.lex_state = 586}, + [588] = {.lex_state = 586}, + [589] = {.lex_state = 586}, + [590] = {.lex_state = 586}, + [591] = {.lex_state = 586}, + [592] = {.lex_state = 586}, + [593] = {.lex_state = 586}, + [594] = {.lex_state = 586}, + [595] = {.lex_state = 586}, + [596] = {.lex_state = 586}, + [597] = {.lex_state = 586}, + [598] = {.lex_state = 586}, + [599] = {.lex_state = 8}, [600] = {.lex_state = 15}, - [601] = {.lex_state = 452}, - [602] = {.lex_state = 452}, - [603] = {.lex_state = 15}, - [604] = {.lex_state = 452}, - [605] = {.lex_state = 452}, - [606] = {.lex_state = 452}, - [607] = {.lex_state = 452}, - [608] = {.lex_state = 452}, - [609] = {.lex_state = 452}, - [610] = {.lex_state = 452}, - [611] = {.lex_state = 452}, - [612] = {.lex_state = 452}, - [613] = {.lex_state = 453}, - [614] = {.lex_state = 454}, - [615] = {.lex_state = 453}, - [616] = {.lex_state = 455}, - [617] = {.lex_state = 453}, - [618] = {.lex_state = 453}, - [619] = {.lex_state = 453}, - [620] = {.lex_state = 453}, - [621] = {.lex_state = 453}, - [622] = {.lex_state = 453}, - [623] = {.lex_state = 453}, - [624] = {.lex_state = 453}, - [625] = {.lex_state = 453}, - [626] = {.lex_state = 453}, - [627] = {.lex_state = 453}, - [628] = {.lex_state = 453}, - [629] = {.lex_state = 453}, - [630] = {.lex_state = 453}, - [631] = {.lex_state = 453}, - [632] = {.lex_state = 453}, - [633] = {.lex_state = 453}, - [634] = {.lex_state = 453}, - [635] = {.lex_state = 453}, - [636] = {.lex_state = 453}, - [637] = {.lex_state = 454}, - [638] = {.lex_state = 453}, - [639] = {.lex_state = 453}, - [640] = {.lex_state = 453}, - [641] = {.lex_state = 454}, - [642] = {.lex_state = 454}, - [643] = {.lex_state = 453}, - [644] = {.lex_state = 453}, - [645] = {.lex_state = 454}, - [646] = {.lex_state = 454}, - [647] = {.lex_state = 453}, - [648] = {.lex_state = 454}, - [649] = {.lex_state = 454}, - [650] = {.lex_state = 454}, - [651] = {.lex_state = 453}, - [652] = {.lex_state = 454}, - [653] = {.lex_state = 454}, - [654] = {.lex_state = 454}, - [655] = {.lex_state = 454}, - [656] = {.lex_state = 454}, - [657] = {.lex_state = 454}, - [658] = {.lex_state = 454}, - [659] = {.lex_state = 454}, - [660] = {.lex_state = 454}, - [661] = {.lex_state = 454}, - [662] = {.lex_state = 455}, - [663] = {.lex_state = 454}, - [664] = {.lex_state = 454}, - [665] = {.lex_state = 454}, - [666] = {.lex_state = 454}, - [667] = {.lex_state = 454}, - [668] = {.lex_state = 454}, - [669] = {.lex_state = 454}, - [670] = {.lex_state = 454}, - [671] = {.lex_state = 454}, - [672] = {.lex_state = 454}, - [673] = {.lex_state = 453}, - [674] = {.lex_state = 453}, - [675] = {.lex_state = 453}, - [676] = {.lex_state = 453}, - [677] = {.lex_state = 455}, - [678] = {.lex_state = 453}, - [679] = {.lex_state = 453}, - [680] = {.lex_state = 453}, - [681] = {.lex_state = 455}, - [682] = {.lex_state = 453}, - [683] = {.lex_state = 453}, - [684] = {.lex_state = 454}, - [685] = {.lex_state = 453}, - [686] = {.lex_state = 453}, - [687] = {.lex_state = 453}, - [688] = {.lex_state = 453}, - [689] = {.lex_state = 453}, - [690] = {.lex_state = 453}, - [691] = {.lex_state = 455}, - [692] = {.lex_state = 454}, - [693] = {.lex_state = 453}, - [694] = {.lex_state = 453}, - [695] = {.lex_state = 454}, - [696] = {.lex_state = 454}, - [697] = {.lex_state = 453}, - [698] = {.lex_state = 453}, - [699] = {.lex_state = 454}, - [700] = {.lex_state = 453}, - [701] = {.lex_state = 454}, - [702] = {.lex_state = 453}, - [703] = {.lex_state = 453}, - [704] = {.lex_state = 453}, - [705] = {.lex_state = 454}, - [706] = {.lex_state = 454}, - [707] = {.lex_state = 454}, - [708] = {.lex_state = 454}, - [709] = {.lex_state = 454}, - [710] = {.lex_state = 454}, - [711] = {.lex_state = 454}, - [712] = {.lex_state = 454}, - [713] = {.lex_state = 8}, - [714] = {.lex_state = 8}, - [715] = {.lex_state = 8}, - [716] = {.lex_state = 8}, - [717] = {.lex_state = 8}, - [718] = {.lex_state = 8}, - [719] = {.lex_state = 8}, - [720] = {.lex_state = 8}, - [721] = {.lex_state = 8}, - [722] = {.lex_state = 454}, - [723] = {.lex_state = 8}, - [724] = {.lex_state = 454}, - [725] = {.lex_state = 454}, - [726] = {.lex_state = 454}, + [601] = {.lex_state = 586}, + [602] = {.lex_state = 586}, + [603] = {.lex_state = 586}, + [604] = {.lex_state = 586}, + [605] = {.lex_state = 586}, + [606] = {.lex_state = 586}, + [607] = {.lex_state = 587}, + [608] = {.lex_state = 586}, + [609] = {.lex_state = 15}, + [610] = {.lex_state = 587}, + [611] = {.lex_state = 586}, + [612] = {.lex_state = 586}, + [613] = {.lex_state = 586}, + [614] = {.lex_state = 586}, + [615] = {.lex_state = 586}, + [616] = {.lex_state = 586}, + [617] = {.lex_state = 586}, + [618] = {.lex_state = 586}, + [619] = {.lex_state = 15}, + [620] = {.lex_state = 15}, + [621] = {.lex_state = 8}, + [622] = {.lex_state = 15}, + [623] = {.lex_state = 8}, + [624] = {.lex_state = 587}, + [625] = {.lex_state = 587}, + [626] = {.lex_state = 587}, + [627] = {.lex_state = 587}, + [628] = {.lex_state = 588}, + [629] = {.lex_state = 588}, + [630] = {.lex_state = 588}, + [631] = {.lex_state = 587}, + [632] = {.lex_state = 588}, + [633] = {.lex_state = 588}, + [634] = {.lex_state = 588}, + [635] = {.lex_state = 588}, + [636] = {.lex_state = 588}, + [637] = {.lex_state = 587}, + [638] = {.lex_state = 587}, + [639] = {.lex_state = 588}, + [640] = {.lex_state = 588}, + [641] = {.lex_state = 588}, + [642] = {.lex_state = 588}, + [643] = {.lex_state = 588}, + [644] = {.lex_state = 588}, + [645] = {.lex_state = 588}, + [646] = {.lex_state = 588}, + [647] = {.lex_state = 588}, + [648] = {.lex_state = 588}, + [649] = {.lex_state = 588}, + [650] = {.lex_state = 588}, + [651] = {.lex_state = 588}, + [652] = {.lex_state = 588}, + [653] = {.lex_state = 588}, + [654] = {.lex_state = 588}, + [655] = {.lex_state = 588}, + [656] = {.lex_state = 588}, + [657] = {.lex_state = 588}, + [658] = {.lex_state = 588}, + [659] = {.lex_state = 588}, + [660] = {.lex_state = 588}, + [661] = {.lex_state = 588}, + [662] = {.lex_state = 588}, + [663] = {.lex_state = 588}, + [664] = {.lex_state = 588}, + [665] = {.lex_state = 588}, + [666] = {.lex_state = 588}, + [667] = {.lex_state = 587}, + [668] = {.lex_state = 588}, + [669] = {.lex_state = 588}, + [670] = {.lex_state = 588}, + [671] = {.lex_state = 588}, + [672] = {.lex_state = 589}, + [673] = {.lex_state = 588}, + [674] = {.lex_state = 587}, + [675] = {.lex_state = 587}, + [676] = {.lex_state = 588}, + [677] = {.lex_state = 588}, + [678] = {.lex_state = 587}, + [679] = {.lex_state = 587}, + [680] = {.lex_state = 587}, + [681] = {.lex_state = 588}, + [682] = {.lex_state = 587}, + [683] = {.lex_state = 587}, + [684] = {.lex_state = 587}, + [685] = {.lex_state = 589}, + [686] = {.lex_state = 589}, + [687] = {.lex_state = 589}, + [688] = {.lex_state = 588}, + [689] = {.lex_state = 587}, + [690] = {.lex_state = 587}, + [691] = {.lex_state = 588}, + [692] = {.lex_state = 587}, + [693] = {.lex_state = 587}, + [694] = {.lex_state = 588}, + [695] = {.lex_state = 587}, + [696] = {.lex_state = 587}, + [697] = {.lex_state = 588}, + [698] = {.lex_state = 587}, + [699] = {.lex_state = 588}, + [700] = {.lex_state = 587}, + [701] = {.lex_state = 587}, + [702] = {.lex_state = 587}, + [703] = {.lex_state = 589}, + [704] = {.lex_state = 589}, + [705] = {.lex_state = 587}, + [706] = {.lex_state = 587}, + [707] = {.lex_state = 587}, + [708] = {.lex_state = 589}, + [709] = {.lex_state = 587}, + [710] = {.lex_state = 587}, + [711] = {.lex_state = 588}, + [712] = {.lex_state = 589}, + [713] = {.lex_state = 587}, + [714] = {.lex_state = 587}, + [715] = {.lex_state = 587}, + [716] = {.lex_state = 588}, + [717] = {.lex_state = 587}, + [718] = {.lex_state = 588}, + [719] = {.lex_state = 587}, + [720] = {.lex_state = 588}, + [721] = {.lex_state = 587}, + [722] = {.lex_state = 587}, + [723] = {.lex_state = 587}, + [724] = {.lex_state = 587}, + [725] = {.lex_state = 8}, + [726] = {.lex_state = 8}, [727] = {.lex_state = 8}, - [728] = {.lex_state = 453}, - [729] = {.lex_state = 454}, - [730] = {.lex_state = 454}, - [731] = {.lex_state = 454}, - [732] = {.lex_state = 454}, - [733] = {.lex_state = 455}, - [734] = {.lex_state = 454}, - [735] = {.lex_state = 454}, - [736] = {.lex_state = 454}, - [737] = {.lex_state = 454}, - [738] = {.lex_state = 454}, - [739] = {.lex_state = 454}, - [740] = {.lex_state = 454}, - [741] = {.lex_state = 454}, - [742] = {.lex_state = 454}, - [743] = {.lex_state = 454}, - [744] = {.lex_state = 454}, - [745] = {.lex_state = 453}, - [746] = {.lex_state = 454}, - [747] = {.lex_state = 454}, - [748] = {.lex_state = 453}, - [749] = {.lex_state = 453}, - [750] = {.lex_state = 455}, - [751] = {.lex_state = 455}, - [752] = {.lex_state = 453}, - [753] = {.lex_state = 455}, - [754] = {.lex_state = 455}, - [755] = {.lex_state = 455}, - [756] = {.lex_state = 455}, - [757] = {.lex_state = 455}, - [758] = {.lex_state = 455}, - [759] = {.lex_state = 455}, - [760] = {.lex_state = 455}, - [761] = {.lex_state = 455}, - [762] = {.lex_state = 455}, - [763] = {.lex_state = 455}, - [764] = {.lex_state = 455}, - [765] = {.lex_state = 455}, - [766] = {.lex_state = 455}, - [767] = {.lex_state = 455}, - [768] = {.lex_state = 455}, - [769] = {.lex_state = 455}, - [770] = {.lex_state = 455}, - [771] = {.lex_state = 455}, - [772] = {.lex_state = 455}, - [773] = {.lex_state = 455}, - [774] = {.lex_state = 455}, - [775] = {.lex_state = 455}, - [776] = {.lex_state = 455}, - [777] = {.lex_state = 455}, - [778] = {.lex_state = 455}, - [779] = {.lex_state = 455}, - [780] = {.lex_state = 455}, - [781] = {.lex_state = 455}, - [782] = {.lex_state = 455}, - [783] = {.lex_state = 455}, - [784] = {.lex_state = 455}, - [785] = {.lex_state = 455}, - [786] = {.lex_state = 455}, - [787] = {.lex_state = 455}, - [788] = {.lex_state = 455}, - [789] = {.lex_state = 455}, - [790] = {.lex_state = 455}, - [791] = {.lex_state = 455}, - [792] = {.lex_state = 455}, - [793] = {.lex_state = 455}, - [794] = {.lex_state = 455}, - [795] = {.lex_state = 455}, - [796] = {.lex_state = 455}, - [797] = {.lex_state = 455}, - [798] = {.lex_state = 455}, - [799] = {.lex_state = 455}, - [800] = {.lex_state = 455}, - [801] = {.lex_state = 455}, - [802] = {.lex_state = 455}, - [803] = {.lex_state = 455}, - [804] = {.lex_state = 455}, - [805] = {.lex_state = 3}, - [806] = {.lex_state = 10}, - [807] = {.lex_state = 10}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 8}, - [810] = {.lex_state = 8}, - [811] = {.lex_state = 8}, - [812] = {.lex_state = 8}, - [813] = {.lex_state = 8}, - [814] = {.lex_state = 8}, - [815] = {.lex_state = 8}, - [816] = {.lex_state = 9}, - [817] = {.lex_state = 9}, - [818] = {.lex_state = 8}, - [819] = {.lex_state = 8}, - [820] = {.lex_state = 8}, - [821] = {.lex_state = 8}, - [822] = {.lex_state = 9}, - [823] = {.lex_state = 8}, - [824] = {.lex_state = 9}, + [728] = {.lex_state = 8}, + [729] = {.lex_state = 8}, + [730] = {.lex_state = 8}, + [731] = {.lex_state = 8}, + [732] = {.lex_state = 8}, + [733] = {.lex_state = 8}, + [734] = {.lex_state = 588}, + [735] = {.lex_state = 588}, + [736] = {.lex_state = 588}, + [737] = {.lex_state = 8}, + [738] = {.lex_state = 587}, + [739] = {.lex_state = 588}, + [740] = {.lex_state = 588}, + [741] = {.lex_state = 588}, + [742] = {.lex_state = 588}, + [743] = {.lex_state = 587}, + [744] = {.lex_state = 587}, + [745] = {.lex_state = 588}, + [746] = {.lex_state = 588}, + [747] = {.lex_state = 588}, + [748] = {.lex_state = 587}, + [749] = {.lex_state = 588}, + [750] = {.lex_state = 587}, + [751] = {.lex_state = 587}, + [752] = {.lex_state = 587}, + [753] = {.lex_state = 588}, + [754] = {.lex_state = 587}, + [755] = {.lex_state = 587}, + [756] = {.lex_state = 587}, + [757] = {.lex_state = 587}, + [758] = {.lex_state = 587}, + [759] = {.lex_state = 587}, + [760] = {.lex_state = 587}, + [761] = {.lex_state = 587}, + [762] = {.lex_state = 587}, + [763] = {.lex_state = 587}, + [764] = {.lex_state = 587}, + [765] = {.lex_state = 588}, + [766] = {.lex_state = 589}, + [767] = {.lex_state = 589}, + [768] = {.lex_state = 589}, + [769] = {.lex_state = 589}, + [770] = {.lex_state = 589}, + [771] = {.lex_state = 589}, + [772] = {.lex_state = 589}, + [773] = {.lex_state = 589}, + [774] = {.lex_state = 589}, + [775] = {.lex_state = 589}, + [776] = {.lex_state = 589}, + [777] = {.lex_state = 589}, + [778] = {.lex_state = 589}, + [779] = {.lex_state = 589}, + [780] = {.lex_state = 589}, + [781] = {.lex_state = 589}, + [782] = {.lex_state = 589}, + [783] = {.lex_state = 589}, + [784] = {.lex_state = 589}, + [785] = {.lex_state = 589}, + [786] = {.lex_state = 589}, + [787] = {.lex_state = 589}, + [788] = {.lex_state = 589}, + [789] = {.lex_state = 589}, + [790] = {.lex_state = 589}, + [791] = {.lex_state = 589}, + [792] = {.lex_state = 589}, + [793] = {.lex_state = 589}, + [794] = {.lex_state = 589}, + [795] = {.lex_state = 589}, + [796] = {.lex_state = 589}, + [797] = {.lex_state = 589}, + [798] = {.lex_state = 589}, + [799] = {.lex_state = 589}, + [800] = {.lex_state = 589}, + [801] = {.lex_state = 589}, + [802] = {.lex_state = 589}, + [803] = {.lex_state = 589}, + [804] = {.lex_state = 589}, + [805] = {.lex_state = 589}, + [806] = {.lex_state = 589}, + [807] = {.lex_state = 589}, + [808] = {.lex_state = 589}, + [809] = {.lex_state = 589}, + [810] = {.lex_state = 589}, + [811] = {.lex_state = 589}, + [812] = {.lex_state = 589}, + [813] = {.lex_state = 589}, + [814] = {.lex_state = 589}, + [815] = {.lex_state = 589}, + [816] = {.lex_state = 589}, + [817] = {.lex_state = 589}, + [818] = {.lex_state = 589}, + [819] = {.lex_state = 589}, + [820] = {.lex_state = 10}, + [821] = {.lex_state = 11}, + [822] = {.lex_state = 3}, + [823] = {.lex_state = 10}, + [824] = {.lex_state = 8}, [825] = {.lex_state = 8}, [826] = {.lex_state = 8}, [827] = {.lex_state = 8}, - [828] = {.lex_state = 8}, + [828] = {.lex_state = 9}, [829] = {.lex_state = 8}, [830] = {.lex_state = 8}, [831] = {.lex_state = 8}, - [832] = {.lex_state = 8}, - [833] = {.lex_state = 8}, - [834] = {.lex_state = 8}, + [832] = {.lex_state = 9}, + [833] = {.lex_state = 9}, + [834] = {.lex_state = 9}, [835] = {.lex_state = 8}, [836] = {.lex_state = 8}, [837] = {.lex_state = 8}, @@ -14641,29 +14122,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [855] = {.lex_state = 8}, [856] = {.lex_state = 8}, [857] = {.lex_state = 8}, - [858] = {.lex_state = 10}, - [859] = {.lex_state = 10}, - [860] = {.lex_state = 10}, - [861] = {.lex_state = 17}, - [862] = {.lex_state = 10}, - [863] = {.lex_state = 10}, - [864] = {.lex_state = 10}, - [865] = {.lex_state = 10}, - [866] = {.lex_state = 10}, - [867] = {.lex_state = 10}, - [868] = {.lex_state = 10}, - [869] = {.lex_state = 10}, - [870] = {.lex_state = 10}, - [871] = {.lex_state = 10}, - [872] = {.lex_state = 10}, + [858] = {.lex_state = 8}, + [859] = {.lex_state = 8}, + [860] = {.lex_state = 8}, + [861] = {.lex_state = 8}, + [862] = {.lex_state = 8}, + [863] = {.lex_state = 8}, + [864] = {.lex_state = 8}, + [865] = {.lex_state = 8}, + [866] = {.lex_state = 8}, + [867] = {.lex_state = 8}, + [868] = {.lex_state = 8}, + [869] = {.lex_state = 8}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 8}, + [872] = {.lex_state = 8}, [873] = {.lex_state = 10}, [874] = {.lex_state = 10}, [875] = {.lex_state = 10}, [876] = {.lex_state = 10}, - [877] = {.lex_state = 10}, + [877] = {.lex_state = 17}, [878] = {.lex_state = 10}, [879] = {.lex_state = 10}, - [880] = {.lex_state = 16}, + [880] = {.lex_state = 10}, [881] = {.lex_state = 10}, [882] = {.lex_state = 10}, [883] = {.lex_state = 10}, @@ -14672,47 +14153,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [886] = {.lex_state = 10}, [887] = {.lex_state = 10}, [888] = {.lex_state = 10}, - [889] = {.lex_state = 16}, - [890] = {.lex_state = 16}, - [891] = {.lex_state = 16}, - [892] = {.lex_state = 16}, - [893] = {.lex_state = 16}, + [889] = {.lex_state = 10}, + [890] = {.lex_state = 10}, + [891] = {.lex_state = 10}, + [892] = {.lex_state = 10}, + [893] = {.lex_state = 10}, [894] = {.lex_state = 16}, [895] = {.lex_state = 10}, - [896] = {.lex_state = 10}, - [897] = {.lex_state = 16}, + [896] = {.lex_state = 16}, + [897] = {.lex_state = 10}, [898] = {.lex_state = 16}, [899] = {.lex_state = 10}, - [900] = {.lex_state = 16}, - [901] = {.lex_state = 16}, + [900] = {.lex_state = 10}, + [901] = {.lex_state = 10}, [902] = {.lex_state = 16}, - [903] = {.lex_state = 10}, - [904] = {.lex_state = 10}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 16}, [905] = {.lex_state = 10}, [906] = {.lex_state = 10}, [907] = {.lex_state = 10}, - [908] = {.lex_state = 10}, - [909] = {.lex_state = 10}, - [910] = {.lex_state = 10}, + [908] = {.lex_state = 16}, + [909] = {.lex_state = 16}, + [910] = {.lex_state = 16}, [911] = {.lex_state = 10}, [912] = {.lex_state = 10}, - [913] = {.lex_state = 10}, - [914] = {.lex_state = 10}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, [915] = {.lex_state = 10}, [916] = {.lex_state = 10}, [917] = {.lex_state = 10}, - [918] = {.lex_state = 10}, + [918] = {.lex_state = 16}, [919] = {.lex_state = 10}, [920] = {.lex_state = 10}, [921] = {.lex_state = 10}, [922] = {.lex_state = 10}, [923] = {.lex_state = 10}, - [924] = {.lex_state = 10}, - [925] = {.lex_state = 10}, - [926] = {.lex_state = 10}, - [927] = {.lex_state = 10}, + [924] = {.lex_state = 0}, + [925] = {.lex_state = 0}, + [926] = {.lex_state = 0}, + [927] = {.lex_state = 0}, [928] = {.lex_state = 10}, - [929] = {.lex_state = 10}, + [929] = {.lex_state = 0}, [930] = {.lex_state = 10}, [931] = {.lex_state = 10}, [932] = {.lex_state = 10}, @@ -14789,7 +14270,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1003] = {.lex_state = 10}, [1004] = {.lex_state = 10}, [1005] = {.lex_state = 10}, - [1006] = {.lex_state = 10}, + [1006] = {.lex_state = 585}, [1007] = {.lex_state = 10}, [1008] = {.lex_state = 10}, [1009] = {.lex_state = 10}, @@ -15005,41 +14486,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1219] = {.lex_state = 10}, [1220] = {.lex_state = 10}, [1221] = {.lex_state = 10}, - [1222] = {.lex_state = 8}, - [1223] = {.lex_state = 8}, - [1224] = {.lex_state = 8}, - [1225] = {.lex_state = 8}, - [1226] = {.lex_state = 8}, - [1227] = {.lex_state = 451}, - [1228] = {.lex_state = 8}, - [1229] = {.lex_state = 8}, - [1230] = {.lex_state = 8}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 9}, - [1236] = {.lex_state = 9}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 9}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 8}, - [1241] = {.lex_state = 9}, - [1242] = {.lex_state = 9}, - [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 9}, - [1245] = {.lex_state = 9}, - [1246] = {.lex_state = 9}, - [1247] = {.lex_state = 9}, - [1248] = {.lex_state = 9}, - [1249] = {.lex_state = 9}, - [1250] = {.lex_state = 9}, - [1251] = {.lex_state = 9}, - [1252] = {.lex_state = 9}, - [1253] = {.lex_state = 9}, - [1254] = {.lex_state = 9}, - [1255] = {.lex_state = 9}, - [1256] = {.lex_state = 9}, + [1222] = {.lex_state = 10}, + [1223] = {.lex_state = 10}, + [1224] = {.lex_state = 10}, + [1225] = {.lex_state = 10}, + [1226] = {.lex_state = 10}, + [1227] = {.lex_state = 10}, + [1228] = {.lex_state = 10}, + [1229] = {.lex_state = 10}, + [1230] = {.lex_state = 10}, + [1231] = {.lex_state = 10}, + [1232] = {.lex_state = 10}, + [1233] = {.lex_state = 10}, + [1234] = {.lex_state = 10}, + [1235] = {.lex_state = 10}, + [1236] = {.lex_state = 10}, + [1237] = {.lex_state = 10}, + [1238] = {.lex_state = 10}, + [1239] = {.lex_state = 10}, + [1240] = {.lex_state = 10}, + [1241] = {.lex_state = 10}, + [1242] = {.lex_state = 10}, + [1243] = {.lex_state = 10}, + [1244] = {.lex_state = 10}, + [1245] = {.lex_state = 10}, + [1246] = {.lex_state = 8}, + [1247] = {.lex_state = 10}, + [1248] = {.lex_state = 0}, + [1249] = {.lex_state = 8}, + [1250] = {.lex_state = 0}, + [1251] = {.lex_state = 0}, + [1252] = {.lex_state = 0}, + [1253] = {.lex_state = 0}, + [1254] = {.lex_state = 0}, + [1255] = {.lex_state = 0}, + [1256] = {.lex_state = 8}, [1257] = {.lex_state = 9}, [1258] = {.lex_state = 9}, [1259] = {.lex_state = 9}, @@ -15060,7 +14541,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1274] = {.lex_state = 9}, [1275] = {.lex_state = 9}, [1276] = {.lex_state = 9}, - [1277] = {.lex_state = 10}, + [1277] = {.lex_state = 9}, [1278] = {.lex_state = 9}, [1279] = {.lex_state = 9}, [1280] = {.lex_state = 9}, @@ -15078,7 +14559,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1292] = {.lex_state = 9}, [1293] = {.lex_state = 9}, [1294] = {.lex_state = 9}, - [1295] = {.lex_state = 9}, + [1295] = {.lex_state = 10}, [1296] = {.lex_state = 9}, [1297] = {.lex_state = 9}, [1298] = {.lex_state = 9}, @@ -15356,148 +14837,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1570] = {.lex_state = 9}, [1571] = {.lex_state = 9}, [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 20}, - [1574] = {.lex_state = 20}, - [1575] = {.lex_state = 20}, - [1576] = {.lex_state = 20}, - [1577] = {.lex_state = 20}, - [1578] = {.lex_state = 20}, - [1579] = {.lex_state = 20}, - [1580] = {.lex_state = 20}, - [1581] = {.lex_state = 20}, - [1582] = {.lex_state = 20}, - [1583] = {.lex_state = 20}, - [1584] = {.lex_state = 20}, - [1585] = {.lex_state = 20}, - [1586] = {.lex_state = 20}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 20}, - [1589] = {.lex_state = 20}, - [1590] = {.lex_state = 20}, - [1591] = {.lex_state = 20}, - [1592] = {.lex_state = 20}, - [1593] = {.lex_state = 20}, - [1594] = {.lex_state = 20}, - [1595] = {.lex_state = 20}, - [1596] = {.lex_state = 20}, - [1597] = {.lex_state = 20}, - [1598] = {.lex_state = 20}, - [1599] = {.lex_state = 20}, - [1600] = {.lex_state = 20}, - [1601] = {.lex_state = 20}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 20}, - [1604] = {.lex_state = 20}, - [1605] = {.lex_state = 20}, - [1606] = {.lex_state = 20}, - [1607] = {.lex_state = 20}, - [1608] = {.lex_state = 20}, - [1609] = {.lex_state = 20}, - [1610] = {.lex_state = 20}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 20}, - [1613] = {.lex_state = 20}, - [1614] = {.lex_state = 20}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 20}, - [1617] = {.lex_state = 20}, - [1618] = {.lex_state = 20}, - [1619] = {.lex_state = 20}, - [1620] = {.lex_state = 20}, - [1621] = {.lex_state = 20}, - [1622] = {.lex_state = 20}, - [1623] = {.lex_state = 20}, - [1624] = {.lex_state = 20}, - [1625] = {.lex_state = 20}, - [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 20}, - [1628] = {.lex_state = 20}, - [1629] = {.lex_state = 20}, - [1630] = {.lex_state = 20}, - [1631] = {.lex_state = 20}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 20}, - [1634] = {.lex_state = 20}, - [1635] = {.lex_state = 20}, - [1636] = {.lex_state = 20}, - [1637] = {.lex_state = 20}, - [1638] = {.lex_state = 20}, - [1639] = {.lex_state = 20}, - [1640] = {.lex_state = 20}, - [1641] = {.lex_state = 20}, - [1642] = {.lex_state = 20}, - [1643] = {.lex_state = 20}, - [1644] = {.lex_state = 20}, - [1645] = {.lex_state = 20}, - [1646] = {.lex_state = 20}, - [1647] = {.lex_state = 20}, - [1648] = {.lex_state = 20}, - [1649] = {.lex_state = 20}, - [1650] = {.lex_state = 20}, - [1651] = {.lex_state = 20}, - [1652] = {.lex_state = 20}, - [1653] = {.lex_state = 20}, - [1654] = {.lex_state = 20}, - [1655] = {.lex_state = 20}, - [1656] = {.lex_state = 20}, - [1657] = {.lex_state = 20}, - [1658] = {.lex_state = 20}, - [1659] = {.lex_state = 20}, - [1660] = {.lex_state = 20}, - [1661] = {.lex_state = 20}, - [1662] = {.lex_state = 20}, - [1663] = {.lex_state = 20}, - [1664] = {.lex_state = 20}, - [1665] = {.lex_state = 20}, - [1666] = {.lex_state = 20}, - [1667] = {.lex_state = 20}, - [1668] = {.lex_state = 20}, - [1669] = {.lex_state = 20}, - [1670] = {.lex_state = 20}, - [1671] = {.lex_state = 20}, - [1672] = {.lex_state = 20}, - [1673] = {.lex_state = 20}, - [1674] = {.lex_state = 20}, - [1675] = {.lex_state = 20}, - [1676] = {.lex_state = 20}, - [1677] = {.lex_state = 20}, - [1678] = {.lex_state = 20}, - [1679] = {.lex_state = 20}, - [1680] = {.lex_state = 20}, - [1681] = {.lex_state = 20}, - [1682] = {.lex_state = 20}, - [1683] = {.lex_state = 20}, - [1684] = {.lex_state = 20}, - [1685] = {.lex_state = 20}, - [1686] = {.lex_state = 20}, - [1687] = {.lex_state = 20}, - [1688] = {.lex_state = 20}, - [1689] = {.lex_state = 20}, - [1690] = {.lex_state = 20}, - [1691] = {.lex_state = 20}, - [1692] = {.lex_state = 0}, - [1693] = {.lex_state = 0}, - [1694] = {.lex_state = 0}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 0}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 0}, - [1703] = {.lex_state = 0}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 0}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 0}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, + [1573] = {.lex_state = 9}, + [1574] = {.lex_state = 9}, + [1575] = {.lex_state = 9}, + [1576] = {.lex_state = 9}, + [1577] = {.lex_state = 9}, + [1578] = {.lex_state = 9}, + [1579] = {.lex_state = 9}, + [1580] = {.lex_state = 9}, + [1581] = {.lex_state = 9}, + [1582] = {.lex_state = 9}, + [1583] = {.lex_state = 9}, + [1584] = {.lex_state = 9}, + [1585] = {.lex_state = 9}, + [1586] = {.lex_state = 9}, + [1587] = {.lex_state = 9}, + [1588] = {.lex_state = 9}, + [1589] = {.lex_state = 9}, + [1590] = {.lex_state = 9}, + [1591] = {.lex_state = 9}, + [1592] = {.lex_state = 9}, + [1593] = {.lex_state = 9}, + [1594] = {.lex_state = 21}, + [1595] = {.lex_state = 21}, + [1596] = {.lex_state = 21}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 21}, + [1599] = {.lex_state = 21}, + [1600] = {.lex_state = 21}, + [1601] = {.lex_state = 21}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 9}, + [1604] = {.lex_state = 21}, + [1605] = {.lex_state = 21}, + [1606] = {.lex_state = 21}, + [1607] = {.lex_state = 21}, + [1608] = {.lex_state = 21}, + [1609] = {.lex_state = 21}, + [1610] = {.lex_state = 21}, + [1611] = {.lex_state = 21}, + [1612] = {.lex_state = 21}, + [1613] = {.lex_state = 21}, + [1614] = {.lex_state = 21}, + [1615] = {.lex_state = 21}, + [1616] = {.lex_state = 21}, + [1617] = {.lex_state = 9}, + [1618] = {.lex_state = 21}, + [1619] = {.lex_state = 21}, + [1620] = {.lex_state = 21}, + [1621] = {.lex_state = 21}, + [1622] = {.lex_state = 21}, + [1623] = {.lex_state = 21}, + [1624] = {.lex_state = 21}, + [1625] = {.lex_state = 21}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 21}, + [1628] = {.lex_state = 21}, + [1629] = {.lex_state = 21}, + [1630] = {.lex_state = 21}, + [1631] = {.lex_state = 21}, + [1632] = {.lex_state = 21}, + [1633] = {.lex_state = 21}, + [1634] = {.lex_state = 21}, + [1635] = {.lex_state = 21}, + [1636] = {.lex_state = 21}, + [1637] = {.lex_state = 21}, + [1638] = {.lex_state = 21}, + [1639] = {.lex_state = 21}, + [1640] = {.lex_state = 21}, + [1641] = {.lex_state = 21}, + [1642] = {.lex_state = 21}, + [1643] = {.lex_state = 21}, + [1644] = {.lex_state = 21}, + [1645] = {.lex_state = 21}, + [1646] = {.lex_state = 21}, + [1647] = {.lex_state = 21}, + [1648] = {.lex_state = 21}, + [1649] = {.lex_state = 21}, + [1650] = {.lex_state = 21}, + [1651] = {.lex_state = 21}, + [1652] = {.lex_state = 21}, + [1653] = {.lex_state = 21}, + [1654] = {.lex_state = 21}, + [1655] = {.lex_state = 21}, + [1656] = {.lex_state = 21}, + [1657] = {.lex_state = 21}, + [1658] = {.lex_state = 21}, + [1659] = {.lex_state = 21}, + [1660] = {.lex_state = 21}, + [1661] = {.lex_state = 21}, + [1662] = {.lex_state = 21}, + [1663] = {.lex_state = 21}, + [1664] = {.lex_state = 21}, + [1665] = {.lex_state = 21}, + [1666] = {.lex_state = 21}, + [1667] = {.lex_state = 21}, + [1668] = {.lex_state = 21}, + [1669] = {.lex_state = 21}, + [1670] = {.lex_state = 21}, + [1671] = {.lex_state = 21}, + [1672] = {.lex_state = 21}, + [1673] = {.lex_state = 21}, + [1674] = {.lex_state = 21}, + [1675] = {.lex_state = 21}, + [1676] = {.lex_state = 21}, + [1677] = {.lex_state = 21}, + [1678] = {.lex_state = 21}, + [1679] = {.lex_state = 21}, + [1680] = {.lex_state = 21}, + [1681] = {.lex_state = 21}, + [1682] = {.lex_state = 21}, + [1683] = {.lex_state = 21}, + [1684] = {.lex_state = 21}, + [1685] = {.lex_state = 21}, + [1686] = {.lex_state = 21}, + [1687] = {.lex_state = 21}, + [1688] = {.lex_state = 21}, + [1689] = {.lex_state = 21}, + [1690] = {.lex_state = 21}, + [1691] = {.lex_state = 21}, + [1692] = {.lex_state = 21}, + [1693] = {.lex_state = 21}, + [1694] = {.lex_state = 21}, + [1695] = {.lex_state = 21}, + [1696] = {.lex_state = 21}, + [1697] = {.lex_state = 21}, + [1698] = {.lex_state = 21}, + [1699] = {.lex_state = 21}, + [1700] = {.lex_state = 21}, + [1701] = {.lex_state = 21}, + [1702] = {.lex_state = 21}, + [1703] = {.lex_state = 21}, + [1704] = {.lex_state = 21}, + [1705] = {.lex_state = 21}, + [1706] = {.lex_state = 21}, + [1707] = {.lex_state = 21}, + [1708] = {.lex_state = 21}, + [1709] = {.lex_state = 21}, + [1710] = {.lex_state = 21}, + [1711] = {.lex_state = 21}, + [1712] = {.lex_state = 21}, + [1713] = {.lex_state = 21}, + [1714] = {.lex_state = 21}, [1715] = {.lex_state = 0}, [1716] = {.lex_state = 0}, [1717] = {.lex_state = 0}, @@ -15508,7 +14989,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1722] = {.lex_state = 0}, [1723] = {.lex_state = 0}, [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 20}, + [1725] = {.lex_state = 0}, [1726] = {.lex_state = 0}, [1727] = {.lex_state = 0}, [1728] = {.lex_state = 0}, @@ -15549,45 +15030,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 8}, - [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 8}, - [1769] = {.lex_state = 8}, - [1770] = {.lex_state = 8}, - [1771] = {.lex_state = 8}, - [1772] = {.lex_state = 8}, - [1773] = {.lex_state = 8}, - [1774] = {.lex_state = 8}, - [1775] = {.lex_state = 8}, - [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, - [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, - [1782] = {.lex_state = 8}, - [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 8}, - [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 8}, - [1787] = {.lex_state = 8}, - [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, - [1792] = {.lex_state = 8}, - [1793] = {.lex_state = 8}, - [1794] = {.lex_state = 8}, - [1795] = {.lex_state = 8}, - [1796] = {.lex_state = 8}, - [1797] = {.lex_state = 8}, - [1798] = {.lex_state = 8}, - [1799] = {.lex_state = 8}, - [1800] = {.lex_state = 8}, - [1801] = {.lex_state = 8}, - [1802] = {.lex_state = 8}, - [1803] = {.lex_state = 8}, - [1804] = {.lex_state = 18}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 0}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 0}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 21}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 0}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 0}, + [1778] = {.lex_state = 0}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 0}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 0}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 0}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 0}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 0}, + [1796] = {.lex_state = 0}, + [1797] = {.lex_state = 0}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, [1805] = {.lex_state = 0}, [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, @@ -15605,225 +15086,225 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1819] = {.lex_state = 0}, [1820] = {.lex_state = 0}, [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 451}, - [1823] = {.lex_state = 451}, + [1822] = {.lex_state = 0}, + [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 451}, - [1826] = {.lex_state = 451}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 0}, [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 451}, + [1828] = {.lex_state = 18}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, [1831] = {.lex_state = 0}, [1832] = {.lex_state = 0}, [1833] = {.lex_state = 0}, [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 451}, - [1836] = {.lex_state = 19}, - [1837] = {.lex_state = 8}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, [1839] = {.lex_state = 0}, - [1840] = {.lex_state = 19}, - [1841] = {.lex_state = 8}, - [1842] = {.lex_state = 19}, - [1843] = {.lex_state = 8}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 8}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 0}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 585}, + [1845] = {.lex_state = 0}, [1846] = {.lex_state = 19}, [1847] = {.lex_state = 0}, - [1848] = {.lex_state = 19}, - [1849] = {.lex_state = 8}, - [1850] = {.lex_state = 19}, - [1851] = {.lex_state = 19}, + [1848] = {.lex_state = 585}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, - [1853] = {.lex_state = 8}, - [1854] = {.lex_state = 19}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 585}, [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 8}, - [1857] = {.lex_state = 451}, - [1858] = {.lex_state = 19}, - [1859] = {.lex_state = 0}, - [1860] = {.lex_state = 8}, - [1861] = {.lex_state = 19}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 585}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 585}, + [1860] = {.lex_state = 585}, + [1861] = {.lex_state = 0}, [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 8}, + [1864] = {.lex_state = 0}, [1865] = {.lex_state = 19}, - [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 8}, + [1866] = {.lex_state = 19}, + [1867] = {.lex_state = 0}, [1868] = {.lex_state = 19}, [1869] = {.lex_state = 0}, [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 8}, - [1872] = {.lex_state = 8}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, [1873] = {.lex_state = 0}, - [1874] = {.lex_state = 0}, - [1875] = {.lex_state = 8}, + [1874] = {.lex_state = 19}, + [1875] = {.lex_state = 19}, [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 19}, - [1878] = {.lex_state = 0}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 8}, - [1881] = {.lex_state = 8}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 8}, + [1879] = {.lex_state = 585}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 19}, - [1884] = {.lex_state = 21}, - [1885] = {.lex_state = 19}, - [1886] = {.lex_state = 21}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 19}, [1887] = {.lex_state = 19}, - [1888] = {.lex_state = 22}, - [1889] = {.lex_state = 21}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 0}, [1890] = {.lex_state = 19}, - [1891] = {.lex_state = 19}, - [1892] = {.lex_state = 19}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 0}, [1893] = {.lex_state = 19}, - [1894] = {.lex_state = 19}, - [1895] = {.lex_state = 8}, - [1896] = {.lex_state = 19}, - [1897] = {.lex_state = 19}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 19}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, [1899] = {.lex_state = 19}, - [1900] = {.lex_state = 22}, - [1901] = {.lex_state = 19}, - [1902] = {.lex_state = 8}, - [1903] = {.lex_state = 19}, - [1904] = {.lex_state = 8}, - [1905] = {.lex_state = 19}, - [1906] = {.lex_state = 19}, + [1900] = {.lex_state = 19}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 0}, + [1903] = {.lex_state = 8}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 0}, [1907] = {.lex_state = 19}, [1908] = {.lex_state = 19}, [1909] = {.lex_state = 19}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 0}, + [1910] = {.lex_state = 19}, + [1911] = {.lex_state = 19}, + [1912] = {.lex_state = 19}, + [1913] = {.lex_state = 22}, [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 8}, - [1916] = {.lex_state = 0}, - [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 451}, - [1919] = {.lex_state = 8}, - [1920] = {.lex_state = 19}, - [1921] = {.lex_state = 8}, - [1922] = {.lex_state = 0}, + [1915] = {.lex_state = 19}, + [1916] = {.lex_state = 19}, + [1917] = {.lex_state = 22}, + [1918] = {.lex_state = 19}, + [1919] = {.lex_state = 19}, + [1920] = {.lex_state = 23}, + [1921] = {.lex_state = 19}, + [1922] = {.lex_state = 19}, [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 8}, - [1927] = {.lex_state = 0}, + [1924] = {.lex_state = 19}, + [1925] = {.lex_state = 19}, + [1926] = {.lex_state = 23}, + [1927] = {.lex_state = 19}, [1928] = {.lex_state = 0}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 0}, - [1932] = {.lex_state = 8}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, + [1929] = {.lex_state = 19}, + [1930] = {.lex_state = 8}, + [1931] = {.lex_state = 22}, + [1932] = {.lex_state = 19}, + [1933] = {.lex_state = 19}, + [1934] = {.lex_state = 585}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, [1938] = {.lex_state = 0}, [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 19}, - [1941] = {.lex_state = 8}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, [1942] = {.lex_state = 0}, [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 8}, + [1944] = {.lex_state = 0}, [1945] = {.lex_state = 0}, [1946] = {.lex_state = 0}, [1947] = {.lex_state = 0}, - [1948] = {.lex_state = 451}, - [1949] = {.lex_state = 19}, - [1950] = {.lex_state = 19}, - [1951] = {.lex_state = 451}, - [1952] = {.lex_state = 19}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 0}, + [1950] = {.lex_state = 8}, + [1951] = {.lex_state = 0}, + [1952] = {.lex_state = 0}, [1953] = {.lex_state = 0}, [1954] = {.lex_state = 0}, - [1955] = {.lex_state = 19}, - [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 451}, - [1958] = {.lex_state = 19}, - [1959] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, + [1956] = {.lex_state = 8}, + [1957] = {.lex_state = 0}, + [1958] = {.lex_state = 0}, + [1959] = {.lex_state = 19}, [1960] = {.lex_state = 8}, - [1961] = {.lex_state = 0}, - [1962] = {.lex_state = 19}, - [1963] = {.lex_state = 8}, - [1964] = {.lex_state = 451}, - [1965] = {.lex_state = 451}, - [1966] = {.lex_state = 451}, - [1967] = {.lex_state = 23}, + [1961] = {.lex_state = 8}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 19}, + [1964] = {.lex_state = 0}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 8}, [1968] = {.lex_state = 0}, - [1969] = {.lex_state = 8}, + [1969] = {.lex_state = 0}, [1970] = {.lex_state = 0}, [1971] = {.lex_state = 0}, [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, [1975] = {.lex_state = 19}, - [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 19}, - [1978] = {.lex_state = 451}, + [1976] = {.lex_state = 585}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 19}, [1979] = {.lex_state = 8}, [1980] = {.lex_state = 0}, - [1981] = {.lex_state = 8}, - [1982] = {.lex_state = 451}, + [1981] = {.lex_state = 0}, + [1982] = {.lex_state = 585}, [1983] = {.lex_state = 0}, - [1984] = {.lex_state = 0}, + [1984] = {.lex_state = 19}, [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 0}, - [1987] = {.lex_state = 19}, + [1986] = {.lex_state = 8}, + [1987] = {.lex_state = 0}, [1988] = {.lex_state = 0}, [1989] = {.lex_state = 0}, [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 451}, - [1992] = {.lex_state = 0}, + [1991] = {.lex_state = 19}, + [1992] = {.lex_state = 585}, [1993] = {.lex_state = 0}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 8}, + [1994] = {.lex_state = 19}, + [1995] = {.lex_state = 0}, [1996] = {.lex_state = 0}, [1997] = {.lex_state = 0}, - [1998] = {.lex_state = 8}, - [1999] = {.lex_state = 23}, - [2000] = {.lex_state = 8}, - [2001] = {.lex_state = 8}, - [2002] = {.lex_state = 8}, - [2003] = {.lex_state = 8}, - [2004] = {.lex_state = 8}, - [2005] = {.lex_state = 8}, - [2006] = {.lex_state = 8}, + [1998] = {.lex_state = 585}, + [1999] = {.lex_state = 0}, + [2000] = {.lex_state = 19}, + [2001] = {.lex_state = 0}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 22}, + [2004] = {.lex_state = 0}, + [2005] = {.lex_state = 0}, + [2006] = {.lex_state = 585}, [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, + [2008] = {.lex_state = 19}, [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 8}, - [2013] = {.lex_state = 8}, - [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 8}, - [2016] = {.lex_state = 8}, - [2017] = {.lex_state = 8}, - [2018] = {.lex_state = 8}, - [2019] = {.lex_state = 8}, - [2020] = {.lex_state = 8}, - [2021] = {.lex_state = 8}, + [2010] = {.lex_state = 19}, + [2011] = {.lex_state = 585}, + [2012] = {.lex_state = 585}, + [2013] = {.lex_state = 0}, + [2014] = {.lex_state = 19}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 585}, + [2017] = {.lex_state = 0}, + [2018] = {.lex_state = 19}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 585}, + [2021] = {.lex_state = 0}, [2022] = {.lex_state = 19}, - [2023] = {.lex_state = 451}, - [2024] = {.lex_state = 8}, - [2025] = {.lex_state = 8}, - [2026] = {.lex_state = 8}, + [2023] = {.lex_state = 8}, + [2024] = {.lex_state = 0}, + [2025] = {.lex_state = 585}, + [2026] = {.lex_state = 0}, [2027] = {.lex_state = 19}, - [2028] = {.lex_state = 8}, - [2029] = {.lex_state = 8}, - [2030] = {.lex_state = 8}, - [2031] = {.lex_state = 8}, - [2032] = {.lex_state = 8}, - [2033] = {.lex_state = 8}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 585}, + [2030] = {.lex_state = 0}, + [2031] = {.lex_state = 0}, + [2032] = {.lex_state = 585}, + [2033] = {.lex_state = 0}, [2034] = {.lex_state = 19}, - [2035] = {.lex_state = 8}, - [2036] = {.lex_state = 8}, - [2037] = {.lex_state = 8}, - [2038] = {.lex_state = 19}, - [2039] = {.lex_state = 19}, - [2040] = {.lex_state = 0}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 585}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 585}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 19}, [2041] = {.lex_state = 0}, [2042] = {.lex_state = 0}, [2043] = {.lex_state = 0}, @@ -15832,776 +15313,776 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2046] = {.lex_state = 0}, [2047] = {.lex_state = 0}, [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, + [2049] = {.lex_state = 19}, [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 8}, - [2052] = {.lex_state = 8}, - [2053] = {.lex_state = 8}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 19}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 19}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 20}, + [2055] = {.lex_state = 0}, [2056] = {.lex_state = 0}, [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 451}, - [2059] = {.lex_state = 21}, - [2060] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 585}, [2061] = {.lex_state = 0}, [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 19}, + [2063] = {.lex_state = 0}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 8}, - [2067] = {.lex_state = 19}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 8}, + [2069] = {.lex_state = 19}, + [2070] = {.lex_state = 0}, [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 19}, + [2072] = {.lex_state = 20}, [2073] = {.lex_state = 19}, - [2074] = {.lex_state = 451}, + [2074] = {.lex_state = 0}, [2075] = {.lex_state = 0}, [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 19}, - [2078] = {.lex_state = 19}, - [2079] = {.lex_state = 8}, + [2077] = {.lex_state = 0}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 0}, [2080] = {.lex_state = 0}, [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 451}, - [2083] = {.lex_state = 19}, - [2084] = {.lex_state = 23}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 0}, [2085] = {.lex_state = 0}, [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 451}, - [2088] = {.lex_state = 19}, - [2089] = {.lex_state = 19}, + [2087] = {.lex_state = 20}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 19}, + [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 19}, + [2098] = {.lex_state = 0}, [2099] = {.lex_state = 0}, [2100] = {.lex_state = 0}, [2101] = {.lex_state = 0}, [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 19}, - [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 19}, + [2105] = {.lex_state = 585}, [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 19}, - [2109] = {.lex_state = 451}, + [2107] = {.lex_state = 19}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, [2110] = {.lex_state = 0}, [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 19}, + [2112] = {.lex_state = 0}, [2113] = {.lex_state = 0}, [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 19}, - [2116] = {.lex_state = 19}, - [2117] = {.lex_state = 0}, - [2118] = {.lex_state = 19}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 19}, + [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 19}, + [2122] = {.lex_state = 0}, [2123] = {.lex_state = 0}, [2124] = {.lex_state = 19}, - [2125] = {.lex_state = 19}, - [2126] = {.lex_state = 19}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, [2127] = {.lex_state = 19}, [2128] = {.lex_state = 19}, - [2129] = {.lex_state = 19}, - [2130] = {.lex_state = 19}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 0}, [2131] = {.lex_state = 19}, - [2132] = {.lex_state = 19}, - [2133] = {.lex_state = 19}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 0}, [2134] = {.lex_state = 19}, - [2135] = {.lex_state = 19}, - [2136] = {.lex_state = 19}, - [2137] = {.lex_state = 19}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 0}, + [2137] = {.lex_state = 0}, [2138] = {.lex_state = 19}, - [2139] = {.lex_state = 19}, - [2140] = {.lex_state = 19}, - [2141] = {.lex_state = 19}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, [2142] = {.lex_state = 19}, - [2143] = {.lex_state = 19}, + [2143] = {.lex_state = 0}, [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 451}, - [2147] = {.lex_state = 19}, + [2145] = {.lex_state = 19}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 0}, [2148] = {.lex_state = 19}, [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 8}, + [2150] = {.lex_state = 0}, [2151] = {.lex_state = 19}, [2152] = {.lex_state = 0}, [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, + [2154] = {.lex_state = 19}, [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 19}, - [2157] = {.lex_state = 24}, - [2158] = {.lex_state = 19}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 0}, [2159] = {.lex_state = 19}, - [2160] = {.lex_state = 0}, + [2160] = {.lex_state = 19}, [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, + [2162] = {.lex_state = 19}, + [2163] = {.lex_state = 19}, + [2164] = {.lex_state = 19}, + [2165] = {.lex_state = 19}, [2166] = {.lex_state = 19}, - [2167] = {.lex_state = 24}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 24}, - [2170] = {.lex_state = 0}, + [2167] = {.lex_state = 19}, + [2168] = {.lex_state = 19}, + [2169] = {.lex_state = 19}, + [2170] = {.lex_state = 19}, [2171] = {.lex_state = 19}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, + [2172] = {.lex_state = 19}, + [2173] = {.lex_state = 19}, [2174] = {.lex_state = 19}, - [2175] = {.lex_state = 451}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, + [2175] = {.lex_state = 19}, + [2176] = {.lex_state = 19}, + [2177] = {.lex_state = 19}, + [2178] = {.lex_state = 19}, [2179] = {.lex_state = 19}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 0}, + [2180] = {.lex_state = 19}, + [2181] = {.lex_state = 19}, [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 24}, + [2183] = {.lex_state = 19}, + [2184] = {.lex_state = 0}, [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 451}, + [2186] = {.lex_state = 0}, [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 19}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 19}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 19}, + [2191] = {.lex_state = 0}, [2192] = {.lex_state = 19}, - [2193] = {.lex_state = 19}, + [2193] = {.lex_state = 25}, [2194] = {.lex_state = 19}, [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 8}, - [2197] = {.lex_state = 19}, + [2196] = {.lex_state = 24}, + [2197] = {.lex_state = 24}, [2198] = {.lex_state = 0}, [2199] = {.lex_state = 19}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 19}, + [2200] = {.lex_state = 19}, + [2201] = {.lex_state = 25}, [2202] = {.lex_state = 19}, [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, + [2204] = {.lex_state = 19}, [2205] = {.lex_state = 0}, - [2206] = {.lex_state = 19}, + [2206] = {.lex_state = 0}, [2207] = {.lex_state = 0}, [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 0}, + [2209] = {.lex_state = 19}, + [2210] = {.lex_state = 25}, + [2211] = {.lex_state = 19}, + [2212] = {.lex_state = 25}, [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 8}, + [2214] = {.lex_state = 19}, [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 19}, - [2217] = {.lex_state = 8}, - [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 19}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 19}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 24}, + [2221] = {.lex_state = 25}, [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, + [2223] = {.lex_state = 19}, [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 451}, - [2227] = {.lex_state = 8}, - [2228] = {.lex_state = 19}, - [2229] = {.lex_state = 0}, + [2225] = {.lex_state = 19}, + [2226] = {.lex_state = 24}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 19}, [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 24}, - [2232] = {.lex_state = 19}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 8}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 19}, + [2234] = {.lex_state = 585}, + [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 451}, - [2238] = {.lex_state = 0}, + [2237] = {.lex_state = 25}, + [2238] = {.lex_state = 19}, [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 451}, - [2241] = {.lex_state = 0}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 19}, [2242] = {.lex_state = 19}, [2243] = {.lex_state = 0}, [2244] = {.lex_state = 0}, [2245] = {.lex_state = 0}, [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 24}, - [2248] = {.lex_state = 8}, + [2247] = {.lex_state = 19}, + [2248] = {.lex_state = 0}, [2249] = {.lex_state = 0}, [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 8}, + [2251] = {.lex_state = 0}, [2252] = {.lex_state = 0}, [2253] = {.lex_state = 0}, [2254] = {.lex_state = 0}, [2255] = {.lex_state = 0}, [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, + [2257] = {.lex_state = 19}, [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 19}, + [2259] = {.lex_state = 19}, + [2260] = {.lex_state = 0}, [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 8}, + [2262] = {.lex_state = 19}, [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 19}, + [2264] = {.lex_state = 0}, [2265] = {.lex_state = 0}, [2266] = {.lex_state = 19}, - [2267] = {.lex_state = 24}, - [2268] = {.lex_state = 8}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 8}, + [2270] = {.lex_state = 0}, [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 8}, - [2273] = {.lex_state = 8}, - [2274] = {.lex_state = 0}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 585}, + [2274] = {.lex_state = 8}, [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 8}, - [2277] = {.lex_state = 8}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 0}, [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, + [2279] = {.lex_state = 19}, [2280] = {.lex_state = 0}, [2281] = {.lex_state = 0}, [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 451}, - [2284] = {.lex_state = 19}, - [2285] = {.lex_state = 19}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 19}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 585}, + [2285] = {.lex_state = 0}, + [2286] = {.lex_state = 19}, + [2287] = {.lex_state = 25}, [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, + [2289] = {.lex_state = 19}, [2290] = {.lex_state = 0}, [2291] = {.lex_state = 0}, [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 24}, - [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 19}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 24}, - [2298] = {.lex_state = 19}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 8}, - [2301] = {.lex_state = 451}, + [2293] = {.lex_state = 0}, + [2294] = {.lex_state = 585}, + [2295] = {.lex_state = 0}, + [2296] = {.lex_state = 8}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 24}, + [2300] = {.lex_state = 0}, + [2301] = {.lex_state = 0}, [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 0}, + [2303] = {.lex_state = 19}, [2304] = {.lex_state = 0}, [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 8}, - [2307] = {.lex_state = 8}, - [2308] = {.lex_state = 8}, + [2306] = {.lex_state = 0}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 0}, [2309] = {.lex_state = 8}, - [2310] = {.lex_state = 19}, - [2311] = {.lex_state = 19}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 0}, [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 451}, + [2313] = {.lex_state = 0}, [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 19}, + [2315] = {.lex_state = 0}, [2316] = {.lex_state = 0}, [2317] = {.lex_state = 0}, [2318] = {.lex_state = 0}, [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 451}, + [2320] = {.lex_state = 0}, [2321] = {.lex_state = 0}, - [2322] = {.lex_state = 24}, - [2323] = {.lex_state = 19}, + [2322] = {.lex_state = 585}, + [2323] = {.lex_state = 0}, [2324] = {.lex_state = 0}, [2325] = {.lex_state = 0}, [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0}, + [2327] = {.lex_state = 19}, [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 0}, + [2329] = {.lex_state = 25}, [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 8}, - [2332] = {.lex_state = 19}, - [2333] = {.lex_state = 19}, + [2331] = {.lex_state = 19}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 0}, [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 8}, - [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 8}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 0}, + [2335] = {.lex_state = 0}, + [2336] = {.lex_state = 19}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 8}, + [2339] = {.lex_state = 19}, [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 0}, + [2341] = {.lex_state = 19}, [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 451}, - [2344] = {.lex_state = 0}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 24}, [2345] = {.lex_state = 0}, [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, + [2347] = {.lex_state = 25}, [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 8}, - [2352] = {.lex_state = 0}, + [2349] = {.lex_state = 585}, + [2350] = {.lex_state = 24}, + [2351] = {.lex_state = 19}, + [2352] = {.lex_state = 8}, [2353] = {.lex_state = 0}, [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 8}, + [2355] = {.lex_state = 0}, [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 8}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, + [2357] = {.lex_state = 0}, + [2358] = {.lex_state = 19}, + [2359] = {.lex_state = 19}, [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 451}, + [2361] = {.lex_state = 585}, + [2362] = {.lex_state = 25}, + [2363] = {.lex_state = 0}, [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 8}, - [2366] = {.lex_state = 19}, + [2365] = {.lex_state = 0}, + [2366] = {.lex_state = 0}, [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, + [2368] = {.lex_state = 585}, [2369] = {.lex_state = 0}, [2370] = {.lex_state = 19}, - [2371] = {.lex_state = 8}, + [2371] = {.lex_state = 19}, [2372] = {.lex_state = 19}, [2373] = {.lex_state = 0}, - [2374] = {.lex_state = 8}, - [2375] = {.lex_state = 8}, + [2374] = {.lex_state = 0}, + [2375] = {.lex_state = 0}, [2376] = {.lex_state = 0}, - [2377] = {.lex_state = 8}, - [2378] = {.lex_state = 24}, - [2379] = {.lex_state = 19}, - [2380] = {.lex_state = 0}, - [2381] = {.lex_state = 0}, + [2377] = {.lex_state = 0}, + [2378] = {.lex_state = 0}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 19}, + [2381] = {.lex_state = 19}, [2382] = {.lex_state = 0}, - [2383] = {.lex_state = 451}, + [2383] = {.lex_state = 0}, [2384] = {.lex_state = 0}, - [2385] = {.lex_state = 451}, + [2385] = {.lex_state = 0}, [2386] = {.lex_state = 0}, [2387] = {.lex_state = 0}, - [2388] = {.lex_state = 8}, + [2388] = {.lex_state = 0}, [2389] = {.lex_state = 0}, [2390] = {.lex_state = 0}, - [2391] = {.lex_state = 8}, - [2392] = {.lex_state = 0}, - [2393] = {.lex_state = 24}, - [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 8}, - [2396] = {.lex_state = 24}, - [2397] = {.lex_state = 8}, - [2398] = {.lex_state = 8}, - [2399] = {.lex_state = 24}, + [2391] = {.lex_state = 585}, + [2392] = {.lex_state = 19}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 585}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 0}, + [2398] = {.lex_state = 19}, + [2399] = {.lex_state = 0}, [2400] = {.lex_state = 0}, - [2401] = {.lex_state = 0}, + [2401] = {.lex_state = 19}, [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 451}, - [2404] = {.lex_state = 19}, - [2405] = {.lex_state = 19}, + [2403] = {.lex_state = 0}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 0}, [2406] = {.lex_state = 0}, - [2407] = {.lex_state = 8}, - [2408] = {.lex_state = 451}, - [2409] = {.lex_state = 19}, - [2410] = {.lex_state = 8}, - [2411] = {.lex_state = 0}, - [2412] = {.lex_state = 8}, + [2407] = {.lex_state = 19}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 585}, + [2412] = {.lex_state = 0}, [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 19}, + [2414] = {.lex_state = 0}, [2415] = {.lex_state = 0}, [2416] = {.lex_state = 0}, [2417] = {.lex_state = 0}, - [2418] = {.lex_state = 451}, - [2419] = {.lex_state = 8}, + [2418] = {.lex_state = 0}, + [2419] = {.lex_state = 0}, [2420] = {.lex_state = 0}, - [2421] = {.lex_state = 0}, - [2422] = {.lex_state = 8}, + [2421] = {.lex_state = 19}, + [2422] = {.lex_state = 0}, [2423] = {.lex_state = 0}, [2424] = {.lex_state = 19}, - [2425] = {.lex_state = 8}, - [2426] = {.lex_state = 24}, - [2427] = {.lex_state = 8}, - [2428] = {.lex_state = 24}, - [2429] = {.lex_state = 19}, + [2425] = {.lex_state = 0}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 0}, + [2428] = {.lex_state = 0}, + [2429] = {.lex_state = 0}, [2430] = {.lex_state = 0}, - [2431] = {.lex_state = 0}, - [2432] = {.lex_state = 0}, - [2433] = {.lex_state = 451}, - [2434] = {.lex_state = 0}, - [2435] = {.lex_state = 19}, - [2436] = {.lex_state = 0}, - [2437] = {.lex_state = 8}, - [2438] = {.lex_state = 19}, + [2431] = {.lex_state = 585}, + [2432] = {.lex_state = 25}, + [2433] = {.lex_state = 0}, + [2434] = {.lex_state = 19}, + [2435] = {.lex_state = 25}, + [2436] = {.lex_state = 19}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 0}, [2439] = {.lex_state = 0}, - [2440] = {.lex_state = 8}, - [2441] = {.lex_state = 19}, - [2442] = {.lex_state = 8}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 0}, + [2442] = {.lex_state = 19}, [2443] = {.lex_state = 0}, [2444] = {.lex_state = 0}, [2445] = {.lex_state = 0}, [2446] = {.lex_state = 0}, [2447] = {.lex_state = 0}, - [2448] = {.lex_state = 451}, + [2448] = {.lex_state = 0}, [2449] = {.lex_state = 0}, - [2450] = {.lex_state = 8}, - [2451] = {.lex_state = 19}, - [2452] = {.lex_state = 8}, - [2453] = {.lex_state = 19}, + [2450] = {.lex_state = 0}, + [2451] = {.lex_state = 585}, + [2452] = {.lex_state = 0}, + [2453] = {.lex_state = 0}, [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 8}, + [2455] = {.lex_state = 0}, [2456] = {.lex_state = 0}, - [2457] = {.lex_state = 8}, + [2457] = {.lex_state = 0}, [2458] = {.lex_state = 0}, [2459] = {.lex_state = 0}, [2460] = {.lex_state = 0}, [2461] = {.lex_state = 0}, [2462] = {.lex_state = 0}, - [2463] = {.lex_state = 451}, + [2463] = {.lex_state = 0}, [2464] = {.lex_state = 0}, [2465] = {.lex_state = 0}, - [2466] = {.lex_state = 19}, - [2467] = {.lex_state = 8}, + [2466] = {.lex_state = 585}, + [2467] = {.lex_state = 0}, [2468] = {.lex_state = 0}, [2469] = {.lex_state = 0}, - [2470] = {.lex_state = 8}, + [2470] = {.lex_state = 0}, [2471] = {.lex_state = 0}, - [2472] = {.lex_state = 8}, + [2472] = {.lex_state = 0}, [2473] = {.lex_state = 0}, [2474] = {.lex_state = 0}, [2475] = {.lex_state = 0}, [2476] = {.lex_state = 0}, [2477] = {.lex_state = 0}, - [2478] = {.lex_state = 451}, + [2478] = {.lex_state = 0}, [2479] = {.lex_state = 0}, - [2480] = {.lex_state = 8}, - [2481] = {.lex_state = 8}, - [2482] = {.lex_state = 8}, + [2480] = {.lex_state = 0}, + [2481] = {.lex_state = 585}, + [2482] = {.lex_state = 0}, [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 8}, + [2484] = {.lex_state = 19}, [2485] = {.lex_state = 0}, - [2486] = {.lex_state = 8}, + [2486] = {.lex_state = 19}, [2487] = {.lex_state = 0}, [2488] = {.lex_state = 0}, [2489] = {.lex_state = 0}, - [2490] = {.lex_state = 0}, - [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 19}, + [2490] = {.lex_state = 25}, + [2491] = {.lex_state = 19}, + [2492] = {.lex_state = 0}, [2493] = {.lex_state = 0}, - [2494] = {.lex_state = 19}, - [2495] = {.lex_state = 19}, - [2496] = {.lex_state = 451}, - [2497] = {.lex_state = 0}, - [2498] = {.lex_state = 19}, + [2494] = {.lex_state = 0}, + [2495] = {.lex_state = 0}, + [2496] = {.lex_state = 585}, + [2497] = {.lex_state = 19}, + [2498] = {.lex_state = 0}, [2499] = {.lex_state = 0}, [2500] = {.lex_state = 0}, - [2501] = {.lex_state = 0}, - [2502] = {.lex_state = 0}, + [2501] = {.lex_state = 19}, + [2502] = {.lex_state = 19}, [2503] = {.lex_state = 0}, [2504] = {.lex_state = 0}, - [2505] = {.lex_state = 8}, + [2505] = {.lex_state = 0}, [2506] = {.lex_state = 0}, [2507] = {.lex_state = 0}, [2508] = {.lex_state = 0}, [2509] = {.lex_state = 0}, [2510] = {.lex_state = 0}, - [2511] = {.lex_state = 0}, - [2512] = {.lex_state = 451}, + [2511] = {.lex_state = 585}, + [2512] = {.lex_state = 19}, [2513] = {.lex_state = 0}, - [2514] = {.lex_state = 0}, + [2514] = {.lex_state = 19}, [2515] = {.lex_state = 0}, - [2516] = {.lex_state = 0}, - [2517] = {.lex_state = 8}, + [2516] = {.lex_state = 19}, + [2517] = {.lex_state = 25}, [2518] = {.lex_state = 0}, - [2519] = {.lex_state = 0}, + [2519] = {.lex_state = 24}, [2520] = {.lex_state = 0}, - [2521] = {.lex_state = 0}, + [2521] = {.lex_state = 8}, [2522] = {.lex_state = 0}, - [2523] = {.lex_state = 24}, - [2524] = {.lex_state = 19}, - [2525] = {.lex_state = 24}, - [2526] = {.lex_state = 19}, + [2523] = {.lex_state = 0}, + [2524] = {.lex_state = 0}, + [2525] = {.lex_state = 0}, + [2526] = {.lex_state = 585}, [2527] = {.lex_state = 0}, [2528] = {.lex_state = 0}, [2529] = {.lex_state = 0}, [2530] = {.lex_state = 0}, - [2531] = {.lex_state = 0}, + [2531] = {.lex_state = 19}, [2532] = {.lex_state = 0}, - [2533] = {.lex_state = 19}, + [2533] = {.lex_state = 0}, [2534] = {.lex_state = 0}, - [2535] = {.lex_state = 0}, - [2536] = {.lex_state = 19}, - [2537] = {.lex_state = 19}, - [2538] = {.lex_state = 8}, - [2539] = {.lex_state = 24}, - [2540] = {.lex_state = 0}, - [2541] = {.lex_state = 19}, - [2542] = {.lex_state = 0}, - [2543] = {.lex_state = 0}, + [2535] = {.lex_state = 19}, + [2536] = {.lex_state = 0}, + [2537] = {.lex_state = 0}, + [2538] = {.lex_state = 0}, + [2539] = {.lex_state = 0}, + [2540] = {.lex_state = 19}, + [2541] = {.lex_state = 0}, + [2542] = {.lex_state = 25}, + [2543] = {.lex_state = 19}, [2544] = {.lex_state = 0}, - [2545] = {.lex_state = 0}, - [2546] = {.lex_state = 0}, - [2547] = {.lex_state = 0}, + [2545] = {.lex_state = 19}, + [2546] = {.lex_state = 19}, + [2547] = {.lex_state = 585}, [2548] = {.lex_state = 0}, - [2549] = {.lex_state = 0}, + [2549] = {.lex_state = 24}, [2550] = {.lex_state = 0}, [2551] = {.lex_state = 0}, - [2552] = {.lex_state = 8}, + [2552] = {.lex_state = 0}, [2553] = {.lex_state = 0}, [2554] = {.lex_state = 0}, [2555] = {.lex_state = 0}, [2556] = {.lex_state = 0}, [2557] = {.lex_state = 0}, [2558] = {.lex_state = 0}, - [2559] = {.lex_state = 0}, - [2560] = {.lex_state = 0}, - [2561] = {.lex_state = 0}, + [2559] = {.lex_state = 585}, + [2560] = {.lex_state = 585}, + [2561] = {.lex_state = 19}, [2562] = {.lex_state = 0}, - [2563] = {.lex_state = 19}, + [2563] = {.lex_state = 0}, [2564] = {.lex_state = 0}, [2565] = {.lex_state = 19}, [2566] = {.lex_state = 0}, - [2567] = {.lex_state = 0}, + [2567] = {.lex_state = 19}, [2568] = {.lex_state = 0}, [2569] = {.lex_state = 0}, [2570] = {.lex_state = 0}, - [2571] = {.lex_state = 8}, - [2572] = {.lex_state = 0}, - [2573] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 25}, + [2573] = {.lex_state = 19}, [2574] = {.lex_state = 0}, [2575] = {.lex_state = 0}, - [2576] = {.lex_state = 19}, - [2577] = {.lex_state = 24}, - [2578] = {.lex_state = 19}, - [2579] = {.lex_state = 19}, + [2576] = {.lex_state = 0}, + [2577] = {.lex_state = 0}, + [2578] = {.lex_state = 0}, + [2579] = {.lex_state = 0}, [2580] = {.lex_state = 0}, - [2581] = {.lex_state = 0}, + [2581] = {.lex_state = 19}, [2582] = {.lex_state = 19}, [2583] = {.lex_state = 0}, [2584] = {.lex_state = 0}, - [2585] = {.lex_state = 0}, - [2586] = {.lex_state = 24}, + [2585] = {.lex_state = 19}, + [2586] = {.lex_state = 0}, [2587] = {.lex_state = 0}, - [2588] = {.lex_state = 451}, + [2588] = {.lex_state = 0}, [2589] = {.lex_state = 0}, - [2590] = {.lex_state = 19}, - [2591] = {.lex_state = 8}, - [2592] = {.lex_state = 19}, - [2593] = {.lex_state = 19}, - [2594] = {.lex_state = 8}, - [2595] = {.lex_state = 8}, + [2590] = {.lex_state = 0}, + [2591] = {.lex_state = 0}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 0}, + [2594] = {.lex_state = 0}, + [2595] = {.lex_state = 0}, [2596] = {.lex_state = 0}, [2597] = {.lex_state = 0}, [2598] = {.lex_state = 0}, [2599] = {.lex_state = 0}, [2600] = {.lex_state = 0}, [2601] = {.lex_state = 0}, - [2602] = {.lex_state = 8}, - [2603] = {.lex_state = 0}, + [2602] = {.lex_state = 0}, + [2603] = {.lex_state = 19}, [2604] = {.lex_state = 0}, - [2605] = {.lex_state = 0}, - [2606] = {.lex_state = 0}, + [2605] = {.lex_state = 19}, + [2606] = {.lex_state = 25}, [2607] = {.lex_state = 0}, [2608] = {.lex_state = 0}, - [2609] = {.lex_state = 451}, + [2609] = {.lex_state = 24}, [2610] = {.lex_state = 0}, - [2611] = {.lex_state = 0}, + [2611] = {.lex_state = 19}, [2612] = {.lex_state = 0}, - [2613] = {.lex_state = 0}, - [2614] = {.lex_state = 0}, + [2613] = {.lex_state = 25}, + [2614] = {.lex_state = 585}, [2615] = {.lex_state = 0}, - [2616] = {.lex_state = 0}, + [2616] = {.lex_state = 19}, [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 19}, - [2619] = {.lex_state = 451}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, [2620] = {.lex_state = 0}, - [2621] = {.lex_state = 8}, + [2621] = {.lex_state = 0}, [2622] = {.lex_state = 0}, [2623] = {.lex_state = 0}, [2624] = {.lex_state = 0}, [2625] = {.lex_state = 0}, - [2626] = {.lex_state = 8}, + [2626] = {.lex_state = 0}, [2627] = {.lex_state = 0}, - [2628] = {.lex_state = 24}, + [2628] = {.lex_state = 0}, [2629] = {.lex_state = 0}, [2630] = {.lex_state = 0}, [2631] = {.lex_state = 0}, - [2632] = {.lex_state = 8}, + [2632] = {.lex_state = 25}, [2633] = {.lex_state = 19}, [2634] = {.lex_state = 0}, [2635] = {.lex_state = 0}, [2636] = {.lex_state = 0}, - [2637] = {.lex_state = 19}, - [2638] = {.lex_state = 19}, + [2637] = {.lex_state = 585}, + [2638] = {.lex_state = 0}, [2639] = {.lex_state = 0}, [2640] = {.lex_state = 0}, - [2641] = {.lex_state = 451}, + [2641] = {.lex_state = 0}, [2642] = {.lex_state = 0}, [2643] = {.lex_state = 0}, [2644] = {.lex_state = 0}, [2645] = {.lex_state = 0}, [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0}, - [2648] = {.lex_state = 19}, + [2647] = {.lex_state = 19}, + [2648] = {.lex_state = 0}, [2649] = {.lex_state = 0}, - [2650] = {.lex_state = 19}, - [2651] = {.lex_state = 19}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 0}, [2652] = {.lex_state = 0}, [2653] = {.lex_state = 0}, - [2654] = {.lex_state = 19}, + [2654] = {.lex_state = 0}, [2655] = {.lex_state = 0}, [2656] = {.lex_state = 0}, [2657] = {.lex_state = 0}, [2658] = {.lex_state = 0}, [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 19}, - [2661] = {.lex_state = 19}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 0}, [2662] = {.lex_state = 19}, - [2663] = {.lex_state = 19}, + [2663] = {.lex_state = 0}, [2664] = {.lex_state = 0}, - [2665] = {.lex_state = 19}, - [2666] = {.lex_state = 0}, - [2667] = {.lex_state = 24}, + [2665] = {.lex_state = 0}, + [2666] = {.lex_state = 19}, + [2667] = {.lex_state = 0}, [2668] = {.lex_state = 0}, [2669] = {.lex_state = 0}, - [2670] = {.lex_state = 0}, - [2671] = {.lex_state = 19}, - [2672] = {.lex_state = 19}, - [2673] = {.lex_state = 19}, - [2674] = {.lex_state = 19}, - [2675] = {.lex_state = 19}, + [2670] = {.lex_state = 585}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 0}, + [2673] = {.lex_state = 0}, + [2674] = {.lex_state = 0}, + [2675] = {.lex_state = 0}, [2676] = {.lex_state = 0}, [2677] = {.lex_state = 0}, [2678] = {.lex_state = 0}, [2679] = {.lex_state = 0}, [2680] = {.lex_state = 0}, - [2681] = {.lex_state = 0}, - [2682] = {.lex_state = 0}, - [2683] = {.lex_state = 19}, - [2684] = {.lex_state = 0}, - [2685] = {.lex_state = 19}, + [2681] = {.lex_state = 19}, + [2682] = {.lex_state = 19}, + [2683] = {.lex_state = 0}, + [2684] = {.lex_state = 19}, + [2685] = {.lex_state = 585}, [2686] = {.lex_state = 19}, - [2687] = {.lex_state = 0}, + [2687] = {.lex_state = 19}, [2688] = {.lex_state = 0}, [2689] = {.lex_state = 0}, - [2690] = {.lex_state = 19}, + [2690] = {.lex_state = 0}, [2691] = {.lex_state = 0}, [2692] = {.lex_state = 0}, - [2693] = {.lex_state = 24}, - [2694] = {.lex_state = 19}, + [2693] = {.lex_state = 0}, + [2694] = {.lex_state = 0}, [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 19}, + [2696] = {.lex_state = 0}, [2697] = {.lex_state = 19}, [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 0}, - [2700] = {.lex_state = 0}, + [2699] = {.lex_state = 19}, + [2700] = {.lex_state = 19}, [2701] = {.lex_state = 0}, [2702] = {.lex_state = 0}, [2703] = {.lex_state = 0}, [2704] = {.lex_state = 0}, - [2705] = {.lex_state = 19}, - [2706] = {.lex_state = 19}, - [2707] = {.lex_state = 19}, - [2708] = {.lex_state = 19}, - [2709] = {.lex_state = 0}, + [2705] = {.lex_state = 0}, + [2706] = {.lex_state = 0}, + [2707] = {.lex_state = 0}, + [2708] = {.lex_state = 0}, + [2709] = {.lex_state = 19}, [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 8}, + [2711] = {.lex_state = 19}, [2712] = {.lex_state = 19}, [2713] = {.lex_state = 0}, [2714] = {.lex_state = 0}, [2715] = {.lex_state = 0}, [2716] = {.lex_state = 19}, [2717] = {.lex_state = 0}, - [2718] = {.lex_state = 19}, - [2719] = {.lex_state = 19}, + [2718] = {.lex_state = 0}, + [2719] = {.lex_state = 0}, [2720] = {.lex_state = 0}, - [2721] = {.lex_state = 0}, - [2722] = {.lex_state = 8}, + [2721] = {.lex_state = 19}, + [2722] = {.lex_state = 0}, [2723] = {.lex_state = 19}, - [2724] = {.lex_state = 0}, + [2724] = {.lex_state = 19}, [2725] = {.lex_state = 0}, [2726] = {.lex_state = 0}, - [2727] = {.lex_state = 19}, + [2727] = {.lex_state = 0}, [2728] = {.lex_state = 0}, - [2729] = {.lex_state = 19}, - [2730] = {.lex_state = 19}, - [2731] = {.lex_state = 8}, - [2732] = {.lex_state = 0}, + [2729] = {.lex_state = 0}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 0}, + [2732] = {.lex_state = 19}, [2733] = {.lex_state = 19}, - [2734] = {.lex_state = 0}, + [2734] = {.lex_state = 19}, [2735] = {.lex_state = 19}, - [2736] = {.lex_state = 19}, + [2736] = {.lex_state = 0}, [2737] = {.lex_state = 0}, [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 0}, + [2739] = {.lex_state = 19}, [2740] = {.lex_state = 0}, - [2741] = {.lex_state = 19}, + [2741] = {.lex_state = 0}, [2742] = {.lex_state = 0}, - [2743] = {.lex_state = 24}, - [2744] = {.lex_state = 8}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 451}, + [2743] = {.lex_state = 19}, + [2744] = {.lex_state = 0}, + [2745] = {.lex_state = 19}, + [2746] = {.lex_state = 19}, [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 19}, - [2749] = {.lex_state = 0}, - [2750] = {.lex_state = 0}, + [2748] = {.lex_state = 25}, + [2749] = {.lex_state = 19}, + [2750] = {.lex_state = 19}, [2751] = {.lex_state = 0}, - [2752] = {.lex_state = 19}, - [2753] = {.lex_state = 0}, - [2754] = {.lex_state = 0}, + [2752] = {.lex_state = 0}, + [2753] = {.lex_state = 25}, + [2754] = {.lex_state = 19}, [2755] = {.lex_state = 0}, [2756] = {.lex_state = 19}, - [2757] = {.lex_state = 0}, + [2757] = {.lex_state = 19}, [2758] = {.lex_state = 0}, - [2759] = {.lex_state = 24}, + [2759] = {.lex_state = 0}, [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 8}, + [2761] = {.lex_state = 0}, [2762] = {.lex_state = 0}, [2763] = {.lex_state = 0}, [2764] = {.lex_state = 0}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 24}, - [2768] = {.lex_state = 0}, + [2765] = {.lex_state = 19}, + [2766] = {.lex_state = 19}, + [2767] = {.lex_state = 19}, + [2768] = {.lex_state = 19}, [2769] = {.lex_state = 0}, [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 19}, + [2771] = {.lex_state = 0}, [2772] = {.lex_state = 0}, [2773] = {.lex_state = 0}, [2774] = {.lex_state = 0}, - [2775] = {.lex_state = 8}, - [2776] = {.lex_state = 8}, - [2777] = {.lex_state = 451}, - [2778] = {.lex_state = 0}, + [2775] = {.lex_state = 25}, + [2776] = {.lex_state = 19}, + [2777] = {.lex_state = 0}, + [2778] = {.lex_state = 19}, [2779] = {.lex_state = 19}, - [2780] = {.lex_state = 0}, - [2781] = {.lex_state = 19}, + [2780] = {.lex_state = 24}, + [2781] = {.lex_state = 0}, [2782] = {.lex_state = 19}, [2783] = {.lex_state = 0}, - [2784] = {.lex_state = 0}, + [2784] = {.lex_state = 19}, [2785] = {.lex_state = 19}, [2786] = {.lex_state = 0}, [2787] = {.lex_state = 0}, [2788] = {.lex_state = 0}, [2789] = {.lex_state = 0}, - [2790] = {.lex_state = 19}, + [2790] = {.lex_state = 0}, [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 8}, + [2792] = {.lex_state = 0}, [2793] = {.lex_state = 0}, [2794] = {.lex_state = 0}, [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 24}, + [2796] = {.lex_state = 585}, [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 19}, + [2798] = {.lex_state = 0}, [2799] = {.lex_state = 0}, [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 8}, + [2801] = {.lex_state = 0}, [2802] = {.lex_state = 0}, [2803] = {.lex_state = 0}, - [2804] = {.lex_state = 8}, - [2805] = {.lex_state = 8}, + [2804] = {.lex_state = 0}, + [2805] = {.lex_state = 0}, [2806] = {.lex_state = 0}, - [2807] = {.lex_state = 19}, + [2807] = {.lex_state = 0}, [2808] = {.lex_state = 0}, - [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 19}, - [2811] = {.lex_state = 19}, + [2809] = {.lex_state = 25}, + [2810] = {.lex_state = 0}, + [2811] = {.lex_state = 0}, [2812] = {.lex_state = 0}, - [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 19}, + [2813] = {.lex_state = 19}, + [2814] = {.lex_state = 585}, [2815] = {.lex_state = 0}, - [2816] = {.lex_state = 19}, - [2817] = {.lex_state = 19}, - [2818] = {.lex_state = 19}, + [2816] = {.lex_state = 0}, + [2817] = {.lex_state = 0}, + [2818] = {.lex_state = 0}, [2819] = {.lex_state = 0}, [2820] = {.lex_state = 0}, [2821] = {.lex_state = 0}, @@ -16610,19 +16091,69 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2824] = {.lex_state = 0}, [2825] = {.lex_state = 0}, [2826] = {.lex_state = 0}, - [2827] = {.lex_state = 0}, + [2827] = {.lex_state = 585}, [2828] = {.lex_state = 0}, [2829] = {.lex_state = 0}, [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0}, + [2831] = {.lex_state = 19}, + [2832] = {.lex_state = 19}, [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 19}, + [2834] = {.lex_state = 0}, [2835] = {.lex_state = 0}, - [2836] = {.lex_state = 19}, + [2836] = {.lex_state = 0}, [2837] = {.lex_state = 0}, [2838] = {.lex_state = 0}, - [2839] = {.lex_state = 8}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 19}, + [2841] = {.lex_state = 0}, + [2842] = {.lex_state = 8}, + [2843] = {.lex_state = 19}, + [2844] = {.lex_state = 0}, + [2845] = {.lex_state = 0}, + [2846] = {.lex_state = 19}, + [2847] = {.lex_state = 0}, + [2848] = {.lex_state = 0}, + [2849] = {.lex_state = 0}, + [2850] = {.lex_state = 0}, + [2851] = {.lex_state = 0}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 0}, + [2854] = {.lex_state = 19}, + [2855] = {.lex_state = 0}, + [2856] = {.lex_state = 0}, + [2857] = {.lex_state = 25}, + [2858] = {.lex_state = 0}, + [2859] = {.lex_state = 0}, + [2860] = {.lex_state = 19}, + [2861] = {.lex_state = 0}, + [2862] = {.lex_state = 0}, + [2863] = {.lex_state = 0}, + [2864] = {.lex_state = 25}, + [2865] = {.lex_state = 0}, + [2866] = {.lex_state = 19}, + [2867] = {.lex_state = 19}, + [2868] = {.lex_state = 19}, + [2869] = {.lex_state = 25}, + [2870] = {.lex_state = 19}, + [2871] = {.lex_state = 25}, + [2872] = {.lex_state = 0}, + [2873] = {.lex_state = 0}, + [2874] = {.lex_state = 24}, + [2875] = {.lex_state = 0}, + [2876] = {.lex_state = 0}, + [2877] = {.lex_state = 19}, + [2878] = {.lex_state = 24}, + [2879] = {.lex_state = 0}, + [2880] = {.lex_state = 0}, + [2881] = {.lex_state = 0}, + [2882] = {.lex_state = 0}, + [2883] = {.lex_state = 24}, + [2884] = {.lex_state = 0}, + [2885] = {.lex_state = 0}, + [2886] = {.lex_state = 0}, + [2887] = {.lex_state = 0}, + [2888] = {.lex_state = 0}, + [2889] = {.lex_state = 25}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -16641,6 +16172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_record] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_type] = ACTIONS(1), [anon_sym_print] = ACTIONS(1), [anon_sym_event] = ACTIONS(1), @@ -16689,7 +16221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_file] = ACTIONS(1), [anon_sym_opaque] = ACTIONS(1), [anon_sym_AMPdeprecated] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1), [anon_sym_AMPerror_handler] = ACTIONS(1), [anon_sym_AMPis_assigned] = ACTIONS(1), @@ -16751,9 +16282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1), [anon_sym_ATendif] = ACTIONS(1), [anon_sym_ATelse] = ACTIONS(1), + [anon_sym_ATpragma] = ACTIONS(1), + [anon_sym_push] = ACTIONS(1), + [anon_sym_pop] = ACTIONS(1), [anon_sym_ATDIR] = ACTIONS(1), [anon_sym_ATFILENAME] = ACTIONS(1), - [sym_id] = ACTIONS(1), [sym_pattern] = ACTIONS(1), [sym_ipv6] = ACTIONS(1), [sym_ipv4] = ACTIONS(1), @@ -16769,33 +16302,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [1] = { - [sym_source_file] = STATE(2688), - [sym_decl] = STATE(3), - [sym_module_decl] = STATE(295), - [sym_export_decl] = STATE(295), - [sym_global_decl] = STATE(295), - [sym_option_decl] = STATE(295), - [sym_const_decl] = STATE(295), - [sym_redef_decl] = STATE(295), - [sym_redef_enum_decl] = STATE(295), - [sym_redef_record_decl] = STATE(295), - [sym_type_decl] = STATE(295), - [sym_func_decl] = STATE(295), - [sym_stmt] = STATE(94), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_func_hdr] = STATE(1805), - [sym_func] = STATE(1813), - [sym_hook] = STATE(1813), - [sym_event] = STATE(1813), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(331), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_source_file_repeat2] = STATE(94), + [sym_source_file] = STATE(2886), + [sym_decl] = STATE(2), + [sym_module_decl] = STATE(360), + [sym_export_decl] = STATE(360), + [sym_global_decl] = STATE(360), + [sym_option_decl] = STATE(360), + [sym_const_decl] = STATE(360), + [sym_redef_decl] = STATE(360), + [sym_redef_enum_decl] = STATE(360), + [sym_redef_record_decl] = STATE(360), + [sym_type_decl] = STATE(360), + [sym_func_decl] = STATE(360), + [sym_stmt] = STATE(84), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_func_hdr] = STATE(1829), + [sym_func] = STATE(1834), + [sym_hook] = STATE(1834), + [sym_event] = STATE(1834), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(362), + [sym_pragma] = STATE(313), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_source_file_repeat2] = STATE(84), [ts_builtin_sym_end] = ACTIONS(7), [anon_sym_module] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -16853,17 +16387,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(93), [anon_sym_ATendif] = ACTIONS(95), [anon_sym_ATelse] = ACTIONS(95), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATpragma] = ACTIONS(97), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -16871,134 +16406,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [2] = { - [sym_expr] = STATE(1279), - [sym_constant] = STATE(1269), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_record] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_local] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [3] = { - [sym_decl] = STATE(10), - [sym_module_decl] = STATE(295), - [sym_export_decl] = STATE(295), - [sym_global_decl] = STATE(295), - [sym_option_decl] = STATE(295), - [sym_const_decl] = STATE(295), - [sym_redef_decl] = STATE(295), - [sym_redef_enum_decl] = STATE(295), - [sym_redef_record_decl] = STATE(295), - [sym_type_decl] = STATE(295), - [sym_func_decl] = STATE(295), - [sym_stmt] = STATE(96), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_func_hdr] = STATE(1805), - [sym_func] = STATE(1813), - [sym_hook] = STATE(1813), - [sym_event] = STATE(1813), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(331), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_source_file_repeat2] = STATE(96), - [ts_builtin_sym_end] = ACTIONS(121), + [sym_decl] = STATE(8), + [sym_module_decl] = STATE(360), + [sym_export_decl] = STATE(360), + [sym_global_decl] = STATE(360), + [sym_option_decl] = STATE(360), + [sym_const_decl] = STATE(360), + [sym_redef_decl] = STATE(360), + [sym_redef_enum_decl] = STATE(360), + [sym_redef_record_decl] = STATE(360), + [sym_type_decl] = STATE(360), + [sym_func_decl] = STATE(360), + [sym_stmt] = STATE(87), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_func_hdr] = STATE(1829), + [sym_func] = STATE(1834), + [sym_hook] = STATE(1834), + [sym_event] = STATE(1834), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(362), + [sym_pragma] = STATE(313), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_source_file_repeat2] = STATE(87), + [ts_builtin_sym_end] = ACTIONS(113), [anon_sym_module] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_export] = ACTIONS(13), @@ -17055,17 +16490,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(93), [anon_sym_ATendif] = ACTIONS(95), [anon_sym_ATelse] = ACTIONS(95), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATpragma] = ACTIONS(97), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [3] = { + [sym_expr] = STATE(1303), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_record] = ACTIONS(25), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_local] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(117), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17073,99 +16611,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [4] = { - [ts_builtin_sym_end] = ACTIONS(123), - [anon_sym_module] = ACTIONS(125), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_global] = ACTIONS(125), - [anon_sym_option] = ACTIONS(125), - [anon_sym_const] = ACTIONS(125), - [anon_sym_redef] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_type] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_COMMA] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_AMPdeprecated] = ACTIONS(123), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(123), - [anon_sym_AMPerror_handler] = ACTIONS(123), - [anon_sym_AMPis_assigned] = ACTIONS(123), - [anon_sym_AMPis_used] = ACTIONS(123), - [anon_sym_AMPlog] = ACTIONS(123), - [anon_sym_AMPoptional] = ACTIONS(123), - [anon_sym_AMPraw_output] = ACTIONS(123), - [anon_sym_AMPredef] = ACTIONS(123), - [anon_sym_AMPadd_func] = ACTIONS(123), - [anon_sym_AMPbackend] = ACTIONS(123), - [anon_sym_AMPbroker_store] = ACTIONS(123), - [anon_sym_AMPcreate_expire] = ACTIONS(123), - [anon_sym_AMPdefault] = ACTIONS(123), - [anon_sym_AMPdelete_func] = ACTIONS(123), - [anon_sym_AMPexpire_func] = ACTIONS(123), - [anon_sym_AMPgroup] = ACTIONS(123), - [anon_sym_AMPon_change] = ACTIONS(123), - [anon_sym_AMPpriority] = ACTIONS(123), - [anon_sym_AMPread_expire] = ACTIONS(123), - [anon_sym_AMPtype_column] = ACTIONS(123), - [anon_sym_AMPwrite_expire] = ACTIONS(123), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [ts_builtin_sym_end] = ACTIONS(125), + [anon_sym_module] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_export] = ACTIONS(127), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_global] = ACTIONS(127), + [anon_sym_option] = ACTIONS(127), + [anon_sym_const] = ACTIONS(127), + [anon_sym_redef] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_type] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_AMPdeprecated] = ACTIONS(125), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(125), + [anon_sym_AMPerror_handler] = ACTIONS(125), + [anon_sym_AMPis_assigned] = ACTIONS(125), + [anon_sym_AMPis_used] = ACTIONS(125), + [anon_sym_AMPlog] = ACTIONS(125), + [anon_sym_AMPoptional] = ACTIONS(125), + [anon_sym_AMPraw_output] = ACTIONS(125), + [anon_sym_AMPredef] = ACTIONS(125), + [anon_sym_AMPadd_func] = ACTIONS(125), + [anon_sym_AMPbackend] = ACTIONS(125), + [anon_sym_AMPbroker_store] = ACTIONS(125), + [anon_sym_AMPcreate_expire] = ACTIONS(125), + [anon_sym_AMPdefault] = ACTIONS(125), + [anon_sym_AMPdelete_func] = ACTIONS(125), + [anon_sym_AMPexpire_func] = ACTIONS(125), + [anon_sym_AMPgroup] = ACTIONS(125), + [anon_sym_AMPon_change] = ACTIONS(125), + [anon_sym_AMPpriority] = ACTIONS(125), + [anon_sym_AMPread_expire] = ACTIONS(125), + [anon_sym_AMPtype_column] = ACTIONS(125), + [anon_sym_AMPwrite_expire] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17173,99 +16712,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [5] = { - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_module] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_export] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_global] = ACTIONS(129), - [anon_sym_option] = ACTIONS(129), - [anon_sym_const] = ACTIONS(129), - [anon_sym_redef] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_type] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_AMPdeprecated] = ACTIONS(127), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(127), - [anon_sym_AMPerror_handler] = ACTIONS(127), - [anon_sym_AMPis_assigned] = ACTIONS(127), - [anon_sym_AMPis_used] = ACTIONS(127), - [anon_sym_AMPlog] = ACTIONS(127), - [anon_sym_AMPoptional] = ACTIONS(127), - [anon_sym_AMPraw_output] = ACTIONS(127), - [anon_sym_AMPredef] = ACTIONS(127), - [anon_sym_AMPadd_func] = ACTIONS(127), - [anon_sym_AMPbackend] = ACTIONS(127), - [anon_sym_AMPbroker_store] = ACTIONS(127), - [anon_sym_AMPcreate_expire] = ACTIONS(127), - [anon_sym_AMPdefault] = ACTIONS(127), - [anon_sym_AMPdelete_func] = ACTIONS(127), - [anon_sym_AMPexpire_func] = ACTIONS(127), - [anon_sym_AMPgroup] = ACTIONS(127), - [anon_sym_AMPon_change] = ACTIONS(127), - [anon_sym_AMPpriority] = ACTIONS(127), - [anon_sym_AMPread_expire] = ACTIONS(127), - [anon_sym_AMPtype_column] = ACTIONS(127), - [anon_sym_AMPwrite_expire] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(129), + [anon_sym_module] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_export] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_global] = ACTIONS(131), + [anon_sym_option] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_redef] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_type] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_AMPdeprecated] = ACTIONS(129), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(129), + [anon_sym_AMPerror_handler] = ACTIONS(129), + [anon_sym_AMPis_assigned] = ACTIONS(129), + [anon_sym_AMPis_used] = ACTIONS(129), + [anon_sym_AMPlog] = ACTIONS(129), + [anon_sym_AMPoptional] = ACTIONS(129), + [anon_sym_AMPraw_output] = ACTIONS(129), + [anon_sym_AMPredef] = ACTIONS(129), + [anon_sym_AMPadd_func] = ACTIONS(129), + [anon_sym_AMPbackend] = ACTIONS(129), + [anon_sym_AMPbroker_store] = ACTIONS(129), + [anon_sym_AMPcreate_expire] = ACTIONS(129), + [anon_sym_AMPdefault] = ACTIONS(129), + [anon_sym_AMPdelete_func] = ACTIONS(129), + [anon_sym_AMPexpire_func] = ACTIONS(129), + [anon_sym_AMPgroup] = ACTIONS(129), + [anon_sym_AMPon_change] = ACTIONS(129), + [anon_sym_AMPpriority] = ACTIONS(129), + [anon_sym_AMPread_expire] = ACTIONS(129), + [anon_sym_AMPtype_column] = ACTIONS(129), + [anon_sym_AMPwrite_expire] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17273,95 +16813,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [6] = { - [sym_expr] = STATE(1279), - [sym_constant] = STATE(1269), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS_EQ] = ACTIONS(111), + [sym_expr] = STATE(1303), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_PLUS_EQ] = ACTIONS(115), [anon_sym_record] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_local] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_local] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(117), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(69), [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(117), [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), [anon_sym_copy] = ACTIONS(73), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), [anon_sym_schedule] = ACTIONS(75), [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17369,93 +16909,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [7] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17463,92 +17004,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [8] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [sym_decl] = STATE(8), + [sym_module_decl] = STATE(360), + [sym_export_decl] = STATE(360), + [sym_global_decl] = STATE(360), + [sym_option_decl] = STATE(360), + [sym_const_decl] = STATE(360), + [sym_redef_decl] = STATE(360), + [sym_redef_enum_decl] = STATE(360), + [sym_redef_record_decl] = STATE(360), + [sym_type_decl] = STATE(360), + [sym_func_decl] = STATE(360), + [sym_func_hdr] = STATE(1829), + [sym_func] = STATE(1834), + [sym_hook] = STATE(1834), + [sym_event] = STATE(1834), + [sym_preproc_directive] = STATE(360), + [sym_pragma] = STATE(313), + [aux_sym_source_file_repeat1] = STATE(8), + [ts_builtin_sym_end] = ACTIONS(143), + [anon_sym_module] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(143), + [anon_sym_export] = ACTIONS(148), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_global] = ACTIONS(151), + [anon_sym_option] = ACTIONS(154), + [anon_sym_const] = ACTIONS(157), + [anon_sym_redef] = ACTIONS(160), + [anon_sym_record] = ACTIONS(163), + [anon_sym_type] = ACTIONS(165), + [anon_sym_print] = ACTIONS(163), + [anon_sym_event] = ACTIONS(168), + [anon_sym_if] = ACTIONS(163), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_switch] = ACTIONS(163), + [anon_sym_for] = ACTIONS(163), + [anon_sym_LBRACK] = ACTIONS(143), + [anon_sym_while] = ACTIONS(163), + [anon_sym_next] = ACTIONS(163), + [anon_sym_break] = ACTIONS(163), + [anon_sym_fallthrough] = ACTIONS(163), + [anon_sym_return] = ACTIONS(163), + [anon_sym_add] = ACTIONS(163), + [anon_sym_delete] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_when] = ACTIONS(163), + [anon_sym_assert] = ACTIONS(163), + [anon_sym_table] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [anon_sym_vector] = ACTIONS(163), + [anon_sym_function] = ACTIONS(171), + [anon_sym_hook] = ACTIONS(174), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_PLUS_PLUS] = ACTIONS(143), + [anon_sym_DASH_DASH] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(163), + [anon_sym_copy] = ACTIONS(163), + [anon_sym_schedule] = ACTIONS(163), + [aux_sym_constant_token1] = ACTIONS(163), + [anon_sym_T] = ACTIONS(163), + [anon_sym_F] = ACTIONS(163), + [anon_sym_ATdeprecated] = ACTIONS(177), + [anon_sym_ATload] = ACTIONS(180), + [anon_sym_ATload_DASHsigs] = ACTIONS(183), + [anon_sym_ATload_DASHplugin] = ACTIONS(186), + [anon_sym_ATunload] = ACTIONS(183), + [anon_sym_ATprefixes] = ACTIONS(189), + [anon_sym_ATif] = ACTIONS(192), + [anon_sym_ATifdef] = ACTIONS(195), + [anon_sym_ATifndef] = ACTIONS(195), + [anon_sym_ATendif] = ACTIONS(198), + [anon_sym_ATelse] = ACTIONS(198), + [anon_sym_ATpragma] = ACTIONS(201), + [anon_sym_ATDIR] = ACTIONS(143), + [anon_sym_ATFILENAME] = ACTIONS(143), + [sym_id] = ACTIONS(163), + [sym_pattern] = ACTIONS(143), + [sym_ipv6] = ACTIONS(163), + [sym_ipv4] = ACTIONS(163), + [sym_port] = ACTIONS(143), + [sym_floatp] = ACTIONS(163), + [sym_hex] = ACTIONS(163), + [sym_hostname] = ACTIONS(163), + [aux_sym_string_token1] = ACTIONS(143), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17556,92 +17098,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [9] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17649,91 +17192,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [10] = { - [sym_decl] = STATE(10), - [sym_module_decl] = STATE(295), - [sym_export_decl] = STATE(295), - [sym_global_decl] = STATE(295), - [sym_option_decl] = STATE(295), - [sym_const_decl] = STATE(295), - [sym_redef_decl] = STATE(295), - [sym_redef_enum_decl] = STATE(295), - [sym_redef_record_decl] = STATE(295), - [sym_type_decl] = STATE(295), - [sym_func_decl] = STATE(295), - [sym_func_hdr] = STATE(1805), - [sym_func] = STATE(1813), - [sym_hook] = STATE(1813), - [sym_event] = STATE(1813), - [sym_preproc_directive] = STATE(295), - [aux_sym_source_file_repeat1] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(141), - [anon_sym_module] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_export] = ACTIONS(146), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_global] = ACTIONS(149), - [anon_sym_option] = ACTIONS(152), - [anon_sym_const] = ACTIONS(155), - [anon_sym_redef] = ACTIONS(158), - [anon_sym_record] = ACTIONS(161), - [anon_sym_type] = ACTIONS(163), - [anon_sym_print] = ACTIONS(161), - [anon_sym_event] = ACTIONS(166), - [anon_sym_if] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(141), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_while] = ACTIONS(161), - [anon_sym_next] = ACTIONS(161), - [anon_sym_break] = ACTIONS(161), - [anon_sym_fallthrough] = ACTIONS(161), - [anon_sym_return] = ACTIONS(161), - [anon_sym_add] = ACTIONS(161), - [anon_sym_delete] = ACTIONS(161), - [anon_sym_local] = ACTIONS(161), - [anon_sym_when] = ACTIONS(161), - [anon_sym_assert] = ACTIONS(161), - [anon_sym_table] = ACTIONS(161), - [anon_sym_set] = ACTIONS(161), - [anon_sym_vector] = ACTIONS(161), - [anon_sym_function] = ACTIONS(169), - [anon_sym_hook] = ACTIONS(172), - [anon_sym_DOLLAR] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_PLUS_PLUS] = ACTIONS(141), - [anon_sym_DASH_DASH] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), [anon_sym_BANG] = ACTIONS(141), - [anon_sym_TILDE] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_copy] = ACTIONS(161), - [anon_sym_schedule] = ACTIONS(161), - [aux_sym_constant_token1] = ACTIONS(161), - [anon_sym_T] = ACTIONS(161), - [anon_sym_F] = ACTIONS(161), - [anon_sym_ATdeprecated] = ACTIONS(175), - [anon_sym_ATload] = ACTIONS(178), - [anon_sym_ATload_DASHsigs] = ACTIONS(181), - [anon_sym_ATload_DASHplugin] = ACTIONS(184), - [anon_sym_ATunload] = ACTIONS(181), - [anon_sym_ATprefixes] = ACTIONS(187), - [anon_sym_ATif] = ACTIONS(190), - [anon_sym_ATifdef] = ACTIONS(193), - [anon_sym_ATifndef] = ACTIONS(193), - [anon_sym_ATendif] = ACTIONS(196), - [anon_sym_ATelse] = ACTIONS(196), - [anon_sym_ATDIR] = ACTIONS(141), - [anon_sym_ATFILENAME] = ACTIONS(141), - [sym_id] = ACTIONS(161), - [sym_pattern] = ACTIONS(141), - [sym_ipv6] = ACTIONS(161), - [sym_ipv4] = ACTIONS(161), - [sym_port] = ACTIONS(141), - [sym_floatp] = ACTIONS(161), - [sym_hex] = ACTIONS(161), - [sym_hostname] = ACTIONS(161), - [aux_sym_string_token1] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17741,91 +17286,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [11] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17833,91 +17379,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [12] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -17925,91 +17472,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [13] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18017,90 +17565,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [14] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18108,90 +17657,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [15] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18199,90 +17749,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [16] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18290,90 +17841,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [17] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18381,90 +17933,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [18] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18472,89 +18025,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [19] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18562,89 +18116,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [20] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_in] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_as] = ACTIONS(139), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(139), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_record] = ACTIONS(139), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_in] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_as] = ACTIONS(141), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(141), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18652,46 +18207,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [21] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2547), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(203), - [anon_sym_const] = ACTIONS(205), + [sym_stmt] = STATE(39), + [sym_stmt_list] = STATE(1935), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(39), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_RBRACE] = ACTIONS(208), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_case] = ACTIONS(236), + [anon_sym_default] = ACTIONS(236), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -18705,28 +18261,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18735,45 +18292,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [22] = { [sym_stmt] = STATE(39), - [sym_stmt_list] = STATE(1919), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), + [sym_stmt_list] = STATE(1938), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), [aux_sym_source_file_repeat2] = STATE(39), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_const] = ACTIONS(253), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_RBRACE] = ACTIONS(256), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), - [anon_sym_case] = ACTIONS(279), - [anon_sym_default] = ACTIONS(279), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_case] = ACTIONS(258), + [anon_sym_default] = ACTIONS(258), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -18787,28 +18345,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -18816,128 +18375,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [23] = { - [anon_sym_SEMI] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_record] = ACTIONS(299), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_RBRACK] = ACTIONS(297), - [anon_sym_local] = ACTIONS(299), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_table] = ACTIONS(299), - [anon_sym_set] = ACTIONS(299), - [anon_sym_vector] = ACTIONS(299), - [anon_sym_function] = ACTIONS(299), - [anon_sym_hook] = ACTIONS(299), - [anon_sym_AMPdeprecated] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(297), - [anon_sym_AMPerror_handler] = ACTIONS(297), - [anon_sym_AMPis_assigned] = ACTIONS(297), - [anon_sym_AMPis_used] = ACTIONS(297), - [anon_sym_AMPlog] = ACTIONS(297), - [anon_sym_AMPoptional] = ACTIONS(297), - [anon_sym_AMPraw_output] = ACTIONS(297), - [anon_sym_AMPredef] = ACTIONS(297), - [anon_sym_AMPadd_func] = ACTIONS(297), - [anon_sym_AMPbackend] = ACTIONS(297), - [anon_sym_AMPbroker_store] = ACTIONS(297), - [anon_sym_AMPcreate_expire] = ACTIONS(297), - [anon_sym_AMPdefault] = ACTIONS(297), - [anon_sym_AMPdelete_func] = ACTIONS(297), - [anon_sym_AMPexpire_func] = ACTIONS(297), - [anon_sym_AMPgroup] = ACTIONS(297), - [anon_sym_AMPon_change] = ACTIONS(297), - [anon_sym_AMPpriority] = ACTIONS(297), - [anon_sym_AMPread_expire] = ACTIONS(297), - [anon_sym_AMPtype_column] = ACTIONS(297), - [anon_sym_AMPwrite_expire] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(297), - [anon_sym_PLUS_PLUS] = ACTIONS(297), - [anon_sym_DASH_DASH] = ACTIONS(297), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_TILDE] = ACTIONS(297), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_copy] = ACTIONS(299), - [anon_sym_schedule] = ACTIONS(299), - [aux_sym_constant_token1] = ACTIONS(299), - [anon_sym_T] = ACTIONS(299), - [anon_sym_F] = ACTIONS(299), - [anon_sym_ATdeprecated] = ACTIONS(297), - [anon_sym_ATload] = ACTIONS(299), - [anon_sym_ATload_DASHsigs] = ACTIONS(297), - [anon_sym_ATload_DASHplugin] = ACTIONS(297), - [anon_sym_ATunload] = ACTIONS(297), - [anon_sym_ATprefixes] = ACTIONS(297), - [anon_sym_ATif] = ACTIONS(299), - [anon_sym_ATifdef] = ACTIONS(297), - [anon_sym_ATifndef] = ACTIONS(297), - [anon_sym_ATendif] = ACTIONS(297), - [anon_sym_ATelse] = ACTIONS(297), - [anon_sym_ATDIR] = ACTIONS(297), - [anon_sym_ATFILENAME] = ACTIONS(297), - [sym_id] = ACTIONS(299), - [sym_pattern] = ACTIONS(297), - [sym_ipv6] = ACTIONS(299), - [sym_ipv4] = ACTIONS(299), - [sym_port] = ACTIONS(297), - [sym_floatp] = ACTIONS(299), - [sym_hex] = ACTIONS(299), - [sym_hostname] = ACTIONS(299), - [aux_sym_string_token1] = ACTIONS(297), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [24] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2386), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_const] = ACTIONS(205), + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2264), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(264), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -18951,75 +18429,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [25] = { - [sym_stmt] = STATE(39), - [sym_stmt_list] = STATE(1915), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(39), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_const] = ACTIONS(253), + [24] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2452), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(310), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), - [anon_sym_case] = ACTIONS(305), - [anon_sym_default] = ACTIONS(305), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19033,75 +18513,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [26] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2316), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(307), - [anon_sym_const] = ACTIONS(205), + [25] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2452), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(312), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19115,75 +18597,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [27] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2316), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_const] = ACTIONS(205), + [26] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2206), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(314), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19197,75 +18681,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [28] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2312), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_const] = ACTIONS(205), + [27] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2441), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(316), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19279,75 +18765,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [29] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2678), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_const] = ACTIONS(205), + [28] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2650), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(318), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19361,75 +18849,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [30] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2160), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_const] = ACTIONS(205), + [29] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2792), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(320), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19443,75 +18933,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [31] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2302), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_const] = ACTIONS(205), + [30] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2858), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(322), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19525,75 +19017,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [32] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2411), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_const] = ACTIONS(205), + [31] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2456), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(324), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19607,157 +19101,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [33] = { - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_record] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_local] = ACTIONS(323), - [anon_sym_EQ] = ACTIONS(321), - [anon_sym_table] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - [anon_sym_vector] = ACTIONS(323), - [anon_sym_function] = ACTIONS(323), - [anon_sym_hook] = ACTIONS(323), - [anon_sym_AMPdeprecated] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(321), - [anon_sym_AMPerror_handler] = ACTIONS(321), - [anon_sym_AMPis_assigned] = ACTIONS(321), - [anon_sym_AMPis_used] = ACTIONS(321), - [anon_sym_AMPlog] = ACTIONS(321), - [anon_sym_AMPoptional] = ACTIONS(321), - [anon_sym_AMPraw_output] = ACTIONS(321), - [anon_sym_AMPredef] = ACTIONS(321), - [anon_sym_AMPadd_func] = ACTIONS(321), - [anon_sym_AMPbackend] = ACTIONS(321), - [anon_sym_AMPbroker_store] = ACTIONS(321), - [anon_sym_AMPcreate_expire] = ACTIONS(321), - [anon_sym_AMPdefault] = ACTIONS(321), - [anon_sym_AMPdelete_func] = ACTIONS(321), - [anon_sym_AMPexpire_func] = ACTIONS(321), - [anon_sym_AMPgroup] = ACTIONS(321), - [anon_sym_AMPon_change] = ACTIONS(321), - [anon_sym_AMPpriority] = ACTIONS(321), - [anon_sym_AMPread_expire] = ACTIONS(321), - [anon_sym_AMPtype_column] = ACTIONS(321), - [anon_sym_AMPwrite_expire] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(321), - [anon_sym_PLUS_PLUS] = ACTIONS(321), - [anon_sym_DASH_DASH] = ACTIONS(321), - [anon_sym_BANG] = ACTIONS(321), - [anon_sym_TILDE] = ACTIONS(321), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_copy] = ACTIONS(323), - [anon_sym_schedule] = ACTIONS(323), - [aux_sym_constant_token1] = ACTIONS(323), - [anon_sym_T] = ACTIONS(323), - [anon_sym_F] = ACTIONS(323), - [anon_sym_ATdeprecated] = ACTIONS(321), - [anon_sym_ATload] = ACTIONS(323), - [anon_sym_ATload_DASHsigs] = ACTIONS(321), - [anon_sym_ATload_DASHplugin] = ACTIONS(321), - [anon_sym_ATunload] = ACTIONS(321), - [anon_sym_ATprefixes] = ACTIONS(321), - [anon_sym_ATif] = ACTIONS(323), - [anon_sym_ATifdef] = ACTIONS(321), - [anon_sym_ATifndef] = ACTIONS(321), - [anon_sym_ATendif] = ACTIONS(321), - [anon_sym_ATelse] = ACTIONS(321), - [anon_sym_ATDIR] = ACTIONS(321), - [anon_sym_ATFILENAME] = ACTIONS(321), - [sym_id] = ACTIONS(323), - [sym_pattern] = ACTIONS(321), - [sym_ipv6] = ACTIONS(323), - [sym_ipv4] = ACTIONS(323), - [sym_port] = ACTIONS(321), - [sym_floatp] = ACTIONS(323), - [sym_hex] = ACTIONS(323), - [sym_hostname] = ACTIONS(323), - [aux_sym_string_token1] = ACTIONS(321), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [34] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2528), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_const] = ACTIONS(205), + [32] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2334), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(326), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19771,75 +19185,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [35] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2580), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_const] = ACTIONS(205), + [33] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2816), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(328), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19853,75 +19269,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [36] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2234), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_const] = ACTIONS(205), + [34] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2591), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(330), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -19935,75 +19353,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [37] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2753), - [sym_expr] = STATE(1297), - [sym_expr_list] = STATE(2620), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [aux_sym_expr_list_repeat1] = STATE(862), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_const] = ACTIONS(205), + [35] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2498), + [sym_expr] = STATE(1331), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(262), + [anon_sym_RBRACE] = ACTIONS(332), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20017,395 +19437,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [38] = { - [sym_stmt] = STATE(38), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(38), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_const] = ACTIONS(341), - [anon_sym_record] = ACTIONS(344), - [anon_sym_print] = ACTIONS(347), - [anon_sym_event] = ACTIONS(350), - [anon_sym_if] = ACTIONS(353), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(362), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_while] = ACTIONS(368), - [anon_sym_next] = ACTIONS(371), - [anon_sym_break] = ACTIONS(371), - [anon_sym_fallthrough] = ACTIONS(371), - [anon_sym_return] = ACTIONS(374), - [anon_sym_add] = ACTIONS(377), - [anon_sym_delete] = ACTIONS(377), - [anon_sym_local] = ACTIONS(380), - [anon_sym_when] = ACTIONS(383), - [anon_sym_assert] = ACTIONS(386), - [anon_sym_case] = ACTIONS(389), - [anon_sym_default] = ACTIONS(389), - [anon_sym_table] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_vector] = ACTIONS(394), - [anon_sym_function] = ACTIONS(397), - [anon_sym_hook] = ACTIONS(400), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_copy] = ACTIONS(415), - [anon_sym_schedule] = ACTIONS(418), - [aux_sym_constant_token1] = ACTIONS(421), - [anon_sym_T] = ACTIONS(424), - [anon_sym_F] = ACTIONS(424), - [anon_sym_ATdeprecated] = ACTIONS(427), - [anon_sym_ATload] = ACTIONS(430), - [anon_sym_ATload_DASHsigs] = ACTIONS(433), - [anon_sym_ATload_DASHplugin] = ACTIONS(436), - [anon_sym_ATunload] = ACTIONS(433), - [anon_sym_ATprefixes] = ACTIONS(439), - [anon_sym_ATif] = ACTIONS(442), - [anon_sym_ATifdef] = ACTIONS(445), - [anon_sym_ATifndef] = ACTIONS(445), - [anon_sym_ATendif] = ACTIONS(448), - [anon_sym_ATelse] = ACTIONS(448), - [anon_sym_ATDIR] = ACTIONS(451), - [anon_sym_ATFILENAME] = ACTIONS(451), - [sym_id] = ACTIONS(454), - [sym_pattern] = ACTIONS(457), - [sym_ipv6] = ACTIONS(460), - [sym_ipv4] = ACTIONS(460), - [sym_port] = ACTIONS(463), - [sym_floatp] = ACTIONS(466), - [sym_hex] = ACTIONS(424), - [sym_hostname] = ACTIONS(424), - [aux_sym_string_token1] = ACTIONS(469), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [39] = { - [sym_stmt] = STATE(38), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(38), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_const] = ACTIONS(253), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), - [anon_sym_case] = ACTIONS(474), - [anon_sym_default] = ACTIONS(474), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [36] = { + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(334), + [anon_sym_record] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_RPAREN] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(334), + [anon_sym_RBRACK] = ACTIONS(334), + [anon_sym_local] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(334), + [anon_sym_table] = ACTIONS(336), + [anon_sym_set] = ACTIONS(336), + [anon_sym_vector] = ACTIONS(336), + [anon_sym_function] = ACTIONS(336), + [anon_sym_hook] = ACTIONS(336), + [anon_sym_AMPdeprecated] = ACTIONS(334), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(334), + [anon_sym_AMPerror_handler] = ACTIONS(334), + [anon_sym_AMPis_assigned] = ACTIONS(334), + [anon_sym_AMPis_used] = ACTIONS(334), + [anon_sym_AMPlog] = ACTIONS(334), + [anon_sym_AMPoptional] = ACTIONS(334), + [anon_sym_AMPraw_output] = ACTIONS(334), + [anon_sym_AMPredef] = ACTIONS(334), + [anon_sym_AMPadd_func] = ACTIONS(334), + [anon_sym_AMPbackend] = ACTIONS(334), + [anon_sym_AMPbroker_store] = ACTIONS(334), + [anon_sym_AMPcreate_expire] = ACTIONS(334), + [anon_sym_AMPdefault] = ACTIONS(334), + [anon_sym_AMPdelete_func] = ACTIONS(334), + [anon_sym_AMPexpire_func] = ACTIONS(334), + [anon_sym_AMPgroup] = ACTIONS(334), + [anon_sym_AMPon_change] = ACTIONS(334), + [anon_sym_AMPpriority] = ACTIONS(334), + [anon_sym_AMPread_expire] = ACTIONS(334), + [anon_sym_AMPtype_column] = ACTIONS(334), + [anon_sym_AMPwrite_expire] = ACTIONS(334), + [anon_sym_DOLLAR] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(334), + [anon_sym_PLUS_PLUS] = ACTIONS(334), + [anon_sym_DASH_DASH] = ACTIONS(334), + [anon_sym_BANG] = ACTIONS(334), + [anon_sym_TILDE] = ACTIONS(334), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_copy] = ACTIONS(336), + [anon_sym_schedule] = ACTIONS(336), + [aux_sym_constant_token1] = ACTIONS(336), + [anon_sym_T] = ACTIONS(336), + [anon_sym_F] = ACTIONS(336), + [anon_sym_ATdeprecated] = ACTIONS(334), + [anon_sym_ATload] = ACTIONS(336), + [anon_sym_ATload_DASHsigs] = ACTIONS(334), + [anon_sym_ATload_DASHplugin] = ACTIONS(334), + [anon_sym_ATunload] = ACTIONS(334), + [anon_sym_ATprefixes] = ACTIONS(334), + [anon_sym_ATif] = ACTIONS(336), + [anon_sym_ATifdef] = ACTIONS(334), + [anon_sym_ATifndef] = ACTIONS(334), + [anon_sym_ATendif] = ACTIONS(334), + [anon_sym_ATelse] = ACTIONS(334), + [anon_sym_ATpragma] = ACTIONS(334), + [anon_sym_ATDIR] = ACTIONS(334), + [anon_sym_ATFILENAME] = ACTIONS(334), + [sym_id] = ACTIONS(336), + [sym_pattern] = ACTIONS(334), + [sym_ipv6] = ACTIONS(336), + [sym_ipv4] = ACTIONS(336), + [sym_port] = ACTIONS(334), + [sym_floatp] = ACTIONS(336), + [sym_hex] = ACTIONS(336), + [sym_hostname] = ACTIONS(336), + [aux_sym_string_token1] = ACTIONS(334), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [40] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2572), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_const] = ACTIONS(205), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [37] = { + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_record] = ACTIONS(340), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(338), + [anon_sym_local] = ACTIONS(340), + [anon_sym_EQ] = ACTIONS(338), + [anon_sym_table] = ACTIONS(340), + [anon_sym_set] = ACTIONS(340), + [anon_sym_vector] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_hook] = ACTIONS(340), + [anon_sym_AMPdeprecated] = ACTIONS(338), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(338), + [anon_sym_AMPerror_handler] = ACTIONS(338), + [anon_sym_AMPis_assigned] = ACTIONS(338), + [anon_sym_AMPis_used] = ACTIONS(338), + [anon_sym_AMPlog] = ACTIONS(338), + [anon_sym_AMPoptional] = ACTIONS(338), + [anon_sym_AMPraw_output] = ACTIONS(338), + [anon_sym_AMPredef] = ACTIONS(338), + [anon_sym_AMPadd_func] = ACTIONS(338), + [anon_sym_AMPbackend] = ACTIONS(338), + [anon_sym_AMPbroker_store] = ACTIONS(338), + [anon_sym_AMPcreate_expire] = ACTIONS(338), + [anon_sym_AMPdefault] = ACTIONS(338), + [anon_sym_AMPdelete_func] = ACTIONS(338), + [anon_sym_AMPexpire_func] = ACTIONS(338), + [anon_sym_AMPgroup] = ACTIONS(338), + [anon_sym_AMPon_change] = ACTIONS(338), + [anon_sym_AMPpriority] = ACTIONS(338), + [anon_sym_AMPread_expire] = ACTIONS(338), + [anon_sym_AMPtype_column] = ACTIONS(338), + [anon_sym_AMPwrite_expire] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(338), + [anon_sym_PLUS_PLUS] = ACTIONS(338), + [anon_sym_DASH_DASH] = ACTIONS(338), + [anon_sym_BANG] = ACTIONS(338), + [anon_sym_TILDE] = ACTIONS(338), + [anon_sym_DASH] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_copy] = ACTIONS(340), + [anon_sym_schedule] = ACTIONS(340), + [aux_sym_constant_token1] = ACTIONS(340), + [anon_sym_T] = ACTIONS(340), + [anon_sym_F] = ACTIONS(340), + [anon_sym_ATdeprecated] = ACTIONS(338), + [anon_sym_ATload] = ACTIONS(340), + [anon_sym_ATload_DASHsigs] = ACTIONS(338), + [anon_sym_ATload_DASHplugin] = ACTIONS(338), + [anon_sym_ATunload] = ACTIONS(338), + [anon_sym_ATprefixes] = ACTIONS(338), + [anon_sym_ATif] = ACTIONS(340), + [anon_sym_ATifdef] = ACTIONS(338), + [anon_sym_ATifndef] = ACTIONS(338), + [anon_sym_ATendif] = ACTIONS(338), + [anon_sym_ATelse] = ACTIONS(338), + [anon_sym_ATpragma] = ACTIONS(338), + [anon_sym_ATDIR] = ACTIONS(338), + [anon_sym_ATFILENAME] = ACTIONS(338), + [sym_id] = ACTIONS(340), + [sym_pattern] = ACTIONS(338), + [sym_ipv6] = ACTIONS(340), + [sym_ipv4] = ACTIONS(340), + [sym_port] = ACTIONS(338), + [sym_floatp] = ACTIONS(340), + [sym_hex] = ACTIONS(340), + [sym_hostname] = ACTIONS(340), + [aux_sym_string_token1] = ACTIONS(338), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [41] = { - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_record] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_local] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_table] = ACTIONS(482), - [anon_sym_set] = ACTIONS(482), - [anon_sym_vector] = ACTIONS(482), - [anon_sym_function] = ACTIONS(482), - [anon_sym_hook] = ACTIONS(482), - [anon_sym_AMPdeprecated] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(480), - [anon_sym_AMPerror_handler] = ACTIONS(480), - [anon_sym_AMPis_assigned] = ACTIONS(480), - [anon_sym_AMPis_used] = ACTIONS(480), - [anon_sym_AMPlog] = ACTIONS(480), - [anon_sym_AMPoptional] = ACTIONS(480), - [anon_sym_AMPraw_output] = ACTIONS(480), - [anon_sym_AMPredef] = ACTIONS(480), - [anon_sym_AMPadd_func] = ACTIONS(480), - [anon_sym_AMPbackend] = ACTIONS(480), - [anon_sym_AMPbroker_store] = ACTIONS(480), - [anon_sym_AMPcreate_expire] = ACTIONS(480), - [anon_sym_AMPdefault] = ACTIONS(480), - [anon_sym_AMPdelete_func] = ACTIONS(480), - [anon_sym_AMPexpire_func] = ACTIONS(480), - [anon_sym_AMPgroup] = ACTIONS(480), - [anon_sym_AMPon_change] = ACTIONS(480), - [anon_sym_AMPpriority] = ACTIONS(480), - [anon_sym_AMPread_expire] = ACTIONS(480), - [anon_sym_AMPtype_column] = ACTIONS(480), - [anon_sym_AMPwrite_expire] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_copy] = ACTIONS(482), - [anon_sym_schedule] = ACTIONS(482), - [aux_sym_constant_token1] = ACTIONS(482), - [anon_sym_T] = ACTIONS(482), - [anon_sym_F] = ACTIONS(482), - [anon_sym_ATdeprecated] = ACTIONS(480), - [anon_sym_ATload] = ACTIONS(482), - [anon_sym_ATload_DASHsigs] = ACTIONS(480), - [anon_sym_ATload_DASHplugin] = ACTIONS(480), - [anon_sym_ATunload] = ACTIONS(480), - [anon_sym_ATprefixes] = ACTIONS(480), - [anon_sym_ATif] = ACTIONS(482), - [anon_sym_ATifdef] = ACTIONS(480), - [anon_sym_ATifndef] = ACTIONS(480), - [anon_sym_ATendif] = ACTIONS(480), - [anon_sym_ATelse] = ACTIONS(480), - [anon_sym_ATDIR] = ACTIONS(480), - [anon_sym_ATFILENAME] = ACTIONS(480), - [sym_id] = ACTIONS(482), - [sym_pattern] = ACTIONS(480), - [sym_ipv6] = ACTIONS(482), - [sym_ipv4] = ACTIONS(482), - [sym_port] = ACTIONS(480), - [sym_floatp] = ACTIONS(482), - [sym_hex] = ACTIONS(482), - [sym_hostname] = ACTIONS(482), - [aux_sym_string_token1] = ACTIONS(480), + [38] = { + [sym_stmt] = STATE(38), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(38), + [anon_sym_SEMI] = ACTIONS(342), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(348), + [anon_sym_const] = ACTIONS(350), + [anon_sym_record] = ACTIONS(353), + [anon_sym_print] = ACTIONS(356), + [anon_sym_event] = ACTIONS(359), + [anon_sym_if] = ACTIONS(362), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(368), + [anon_sym_for] = ACTIONS(371), + [anon_sym_LBRACK] = ACTIONS(374), + [anon_sym_while] = ACTIONS(377), + [anon_sym_next] = ACTIONS(380), + [anon_sym_break] = ACTIONS(380), + [anon_sym_fallthrough] = ACTIONS(380), + [anon_sym_return] = ACTIONS(383), + [anon_sym_add] = ACTIONS(386), + [anon_sym_delete] = ACTIONS(386), + [anon_sym_local] = ACTIONS(389), + [anon_sym_when] = ACTIONS(392), + [anon_sym_assert] = ACTIONS(395), + [anon_sym_case] = ACTIONS(398), + [anon_sym_default] = ACTIONS(398), + [anon_sym_table] = ACTIONS(400), + [anon_sym_set] = ACTIONS(400), + [anon_sym_vector] = ACTIONS(403), + [anon_sym_function] = ACTIONS(406), + [anon_sym_hook] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_PLUS_PLUS] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_copy] = ACTIONS(424), + [anon_sym_schedule] = ACTIONS(427), + [aux_sym_constant_token1] = ACTIONS(430), + [anon_sym_T] = ACTIONS(433), + [anon_sym_F] = ACTIONS(433), + [anon_sym_ATdeprecated] = ACTIONS(436), + [anon_sym_ATload] = ACTIONS(439), + [anon_sym_ATload_DASHsigs] = ACTIONS(442), + [anon_sym_ATload_DASHplugin] = ACTIONS(445), + [anon_sym_ATunload] = ACTIONS(442), + [anon_sym_ATprefixes] = ACTIONS(448), + [anon_sym_ATif] = ACTIONS(451), + [anon_sym_ATifdef] = ACTIONS(454), + [anon_sym_ATifndef] = ACTIONS(454), + [anon_sym_ATendif] = ACTIONS(457), + [anon_sym_ATelse] = ACTIONS(457), + [anon_sym_ATpragma] = ACTIONS(460), + [anon_sym_ATDIR] = ACTIONS(463), + [anon_sym_ATFILENAME] = ACTIONS(463), + [sym_id] = ACTIONS(466), + [sym_pattern] = ACTIONS(469), + [sym_ipv6] = ACTIONS(472), + [sym_ipv4] = ACTIONS(472), + [sym_port] = ACTIONS(475), + [sym_floatp] = ACTIONS(478), + [sym_hex] = ACTIONS(433), + [sym_hostname] = ACTIONS(433), + [aux_sym_string_token1] = ACTIONS(481), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [42] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2734), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), + [39] = { + [sym_stmt] = STATE(38), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(38), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), [anon_sym_RBRACE] = ACTIONS(484), - [anon_sym_const] = ACTIONS(205), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_case] = ACTIONS(486), + [anon_sym_default] = ACTIONS(486), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20419,73 +19769,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [43] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2328), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(486), - [anon_sym_const] = ACTIONS(205), + [40] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2691), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20499,73 +19851,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [44] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2346), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(488), - [anon_sym_const] = ACTIONS(205), + [41] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2849), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20579,73 +19933,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [45] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2353), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(490), - [anon_sym_const] = ACTIONS(205), + [42] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2590), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20659,153 +20015,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [46] = { - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_record] = ACTIONS(494), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_local] = ACTIONS(494), - [anon_sym_EQ] = ACTIONS(492), - [anon_sym_table] = ACTIONS(494), - [anon_sym_set] = ACTIONS(494), - [anon_sym_vector] = ACTIONS(494), - [anon_sym_function] = ACTIONS(494), - [anon_sym_hook] = ACTIONS(494), - [anon_sym_AMPdeprecated] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(492), - [anon_sym_AMPerror_handler] = ACTIONS(492), - [anon_sym_AMPis_assigned] = ACTIONS(492), - [anon_sym_AMPis_used] = ACTIONS(492), - [anon_sym_AMPlog] = ACTIONS(492), - [anon_sym_AMPoptional] = ACTIONS(492), - [anon_sym_AMPraw_output] = ACTIONS(492), - [anon_sym_AMPredef] = ACTIONS(492), - [anon_sym_AMPadd_func] = ACTIONS(492), - [anon_sym_AMPbackend] = ACTIONS(492), - [anon_sym_AMPbroker_store] = ACTIONS(492), - [anon_sym_AMPcreate_expire] = ACTIONS(492), - [anon_sym_AMPdefault] = ACTIONS(492), - [anon_sym_AMPdelete_func] = ACTIONS(492), - [anon_sym_AMPexpire_func] = ACTIONS(492), - [anon_sym_AMPgroup] = ACTIONS(492), - [anon_sym_AMPon_change] = ACTIONS(492), - [anon_sym_AMPpriority] = ACTIONS(492), - [anon_sym_AMPread_expire] = ACTIONS(492), - [anon_sym_AMPtype_column] = ACTIONS(492), - [anon_sym_AMPwrite_expire] = ACTIONS(492), - [anon_sym_DOLLAR] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(492), - [anon_sym_PLUS_PLUS] = ACTIONS(492), - [anon_sym_DASH_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_TILDE] = ACTIONS(492), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_copy] = ACTIONS(494), - [anon_sym_schedule] = ACTIONS(494), - [aux_sym_constant_token1] = ACTIONS(494), - [anon_sym_T] = ACTIONS(494), - [anon_sym_F] = ACTIONS(494), - [anon_sym_ATdeprecated] = ACTIONS(492), - [anon_sym_ATload] = ACTIONS(494), - [anon_sym_ATload_DASHsigs] = ACTIONS(492), - [anon_sym_ATload_DASHplugin] = ACTIONS(492), - [anon_sym_ATunload] = ACTIONS(492), - [anon_sym_ATprefixes] = ACTIONS(492), - [anon_sym_ATif] = ACTIONS(494), - [anon_sym_ATifdef] = ACTIONS(492), - [anon_sym_ATifndef] = ACTIONS(492), - [anon_sym_ATendif] = ACTIONS(492), - [anon_sym_ATelse] = ACTIONS(492), - [anon_sym_ATDIR] = ACTIONS(492), - [anon_sym_ATFILENAME] = ACTIONS(492), - [sym_id] = ACTIONS(494), - [sym_pattern] = ACTIONS(492), - [sym_ipv6] = ACTIONS(494), - [sym_ipv4] = ACTIONS(494), - [sym_port] = ACTIONS(492), - [sym_floatp] = ACTIONS(494), - [sym_hex] = ACTIONS(494), - [sym_hostname] = ACTIONS(494), - [aux_sym_string_token1] = ACTIONS(492), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [47] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2635), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), + [43] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2818), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), [anon_sym_RBRACE] = ACTIONS(496), - [anon_sym_const] = ACTIONS(205), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20819,73 +20097,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [48] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2642), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), + [44] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2820), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), [anon_sym_RBRACE] = ACTIONS(498), - [anon_sym_const] = ACTIONS(205), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20899,73 +20179,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [49] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2647), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), + [45] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2822), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_const] = ACTIONS(205), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -20979,153 +20261,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [50] = { - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(502), - [anon_sym_record] = ACTIONS(504), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_local] = ACTIONS(504), - [anon_sym_EQ] = ACTIONS(502), - [anon_sym_table] = ACTIONS(504), - [anon_sym_set] = ACTIONS(504), - [anon_sym_vector] = ACTIONS(504), - [anon_sym_function] = ACTIONS(504), - [anon_sym_hook] = ACTIONS(504), - [anon_sym_AMPdeprecated] = ACTIONS(502), - [anon_sym_DASH_EQ] = ACTIONS(502), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(502), - [anon_sym_AMPerror_handler] = ACTIONS(502), - [anon_sym_AMPis_assigned] = ACTIONS(502), - [anon_sym_AMPis_used] = ACTIONS(502), - [anon_sym_AMPlog] = ACTIONS(502), - [anon_sym_AMPoptional] = ACTIONS(502), - [anon_sym_AMPraw_output] = ACTIONS(502), - [anon_sym_AMPredef] = ACTIONS(502), - [anon_sym_AMPadd_func] = ACTIONS(502), - [anon_sym_AMPbackend] = ACTIONS(502), - [anon_sym_AMPbroker_store] = ACTIONS(502), - [anon_sym_AMPcreate_expire] = ACTIONS(502), - [anon_sym_AMPdefault] = ACTIONS(502), - [anon_sym_AMPdelete_func] = ACTIONS(502), - [anon_sym_AMPexpire_func] = ACTIONS(502), - [anon_sym_AMPgroup] = ACTIONS(502), - [anon_sym_AMPon_change] = ACTIONS(502), - [anon_sym_AMPpriority] = ACTIONS(502), - [anon_sym_AMPread_expire] = ACTIONS(502), - [anon_sym_AMPtype_column] = ACTIONS(502), - [anon_sym_AMPwrite_expire] = ACTIONS(502), - [anon_sym_DOLLAR] = ACTIONS(502), - [anon_sym_PIPE] = ACTIONS(502), - [anon_sym_PLUS_PLUS] = ACTIONS(502), - [anon_sym_DASH_DASH] = ACTIONS(502), - [anon_sym_BANG] = ACTIONS(502), - [anon_sym_TILDE] = ACTIONS(502), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_copy] = ACTIONS(504), - [anon_sym_schedule] = ACTIONS(504), - [aux_sym_constant_token1] = ACTIONS(504), - [anon_sym_T] = ACTIONS(504), - [anon_sym_F] = ACTIONS(504), - [anon_sym_ATdeprecated] = ACTIONS(502), - [anon_sym_ATload] = ACTIONS(504), - [anon_sym_ATload_DASHsigs] = ACTIONS(502), - [anon_sym_ATload_DASHplugin] = ACTIONS(502), - [anon_sym_ATunload] = ACTIONS(502), - [anon_sym_ATprefixes] = ACTIONS(502), - [anon_sym_ATif] = ACTIONS(504), - [anon_sym_ATifdef] = ACTIONS(502), - [anon_sym_ATifndef] = ACTIONS(502), - [anon_sym_ATendif] = ACTIONS(502), - [anon_sym_ATelse] = ACTIONS(502), - [anon_sym_ATDIR] = ACTIONS(502), - [anon_sym_ATFILENAME] = ACTIONS(502), - [sym_id] = ACTIONS(504), - [sym_pattern] = ACTIONS(502), - [sym_ipv6] = ACTIONS(504), - [sym_ipv4] = ACTIONS(504), - [sym_port] = ACTIONS(502), - [sym_floatp] = ACTIONS(504), - [sym_hex] = ACTIONS(504), - [sym_hostname] = ACTIONS(504), - [aux_sym_string_token1] = ACTIONS(502), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [51] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2813), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(506), - [anon_sym_const] = ACTIONS(205), + [46] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2305), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21139,73 +20343,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [52] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2819), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_const] = ACTIONS(205), + [47] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2420), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21219,73 +20425,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [53] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2835), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(510), - [anon_sym_const] = ACTIONS(205), + [48] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2260), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21299,153 +20507,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [54] = { - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_record] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_local] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(512), - [anon_sym_table] = ACTIONS(514), - [anon_sym_set] = ACTIONS(514), - [anon_sym_vector] = ACTIONS(514), - [anon_sym_function] = ACTIONS(514), - [anon_sym_hook] = ACTIONS(514), - [anon_sym_AMPdeprecated] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(512), - [anon_sym_AMPerror_handler] = ACTIONS(512), - [anon_sym_AMPis_assigned] = ACTIONS(512), - [anon_sym_AMPis_used] = ACTIONS(512), - [anon_sym_AMPlog] = ACTIONS(512), - [anon_sym_AMPoptional] = ACTIONS(512), - [anon_sym_AMPraw_output] = ACTIONS(512), - [anon_sym_AMPredef] = ACTIONS(512), - [anon_sym_AMPadd_func] = ACTIONS(512), - [anon_sym_AMPbackend] = ACTIONS(512), - [anon_sym_AMPbroker_store] = ACTIONS(512), - [anon_sym_AMPcreate_expire] = ACTIONS(512), - [anon_sym_AMPdefault] = ACTIONS(512), - [anon_sym_AMPdelete_func] = ACTIONS(512), - [anon_sym_AMPexpire_func] = ACTIONS(512), - [anon_sym_AMPgroup] = ACTIONS(512), - [anon_sym_AMPon_change] = ACTIONS(512), - [anon_sym_AMPpriority] = ACTIONS(512), - [anon_sym_AMPread_expire] = ACTIONS(512), - [anon_sym_AMPtype_column] = ACTIONS(512), - [anon_sym_AMPwrite_expire] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(512), - [anon_sym_PLUS_PLUS] = ACTIONS(512), - [anon_sym_DASH_DASH] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(512), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_copy] = ACTIONS(514), - [anon_sym_schedule] = ACTIONS(514), - [aux_sym_constant_token1] = ACTIONS(514), - [anon_sym_T] = ACTIONS(514), - [anon_sym_F] = ACTIONS(514), - [anon_sym_ATdeprecated] = ACTIONS(512), - [anon_sym_ATload] = ACTIONS(514), - [anon_sym_ATload_DASHsigs] = ACTIONS(512), - [anon_sym_ATload_DASHplugin] = ACTIONS(512), - [anon_sym_ATunload] = ACTIONS(512), - [anon_sym_ATprefixes] = ACTIONS(512), - [anon_sym_ATif] = ACTIONS(514), - [anon_sym_ATifdef] = ACTIONS(512), - [anon_sym_ATifndef] = ACTIONS(512), - [anon_sym_ATendif] = ACTIONS(512), - [anon_sym_ATelse] = ACTIONS(512), - [anon_sym_ATDIR] = ACTIONS(512), - [anon_sym_ATFILENAME] = ACTIONS(512), - [sym_id] = ACTIONS(514), - [sym_pattern] = ACTIONS(512), - [sym_ipv6] = ACTIONS(514), - [sym_ipv4] = ACTIONS(514), - [sym_port] = ACTIONS(512), - [sym_floatp] = ACTIONS(514), - [sym_hex] = ACTIONS(514), - [sym_hostname] = ACTIONS(514), - [aux_sym_string_token1] = ACTIONS(512), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [55] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2210), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_const] = ACTIONS(205), + [49] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2584), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21459,73 +20589,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [56] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2212), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_const] = ACTIONS(205), + [50] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2205), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(510), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21539,73 +20671,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [57] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2215), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_const] = ACTIONS(205), + [51] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2575), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21619,153 +20753,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [58] = { - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_PLUS_EQ] = ACTIONS(522), - [anon_sym_record] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_local] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_table] = ACTIONS(524), - [anon_sym_set] = ACTIONS(524), - [anon_sym_vector] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_hook] = ACTIONS(524), - [anon_sym_AMPdeprecated] = ACTIONS(522), - [anon_sym_DASH_EQ] = ACTIONS(522), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(522), - [anon_sym_AMPerror_handler] = ACTIONS(522), - [anon_sym_AMPis_assigned] = ACTIONS(522), - [anon_sym_AMPis_used] = ACTIONS(522), - [anon_sym_AMPlog] = ACTIONS(522), - [anon_sym_AMPoptional] = ACTIONS(522), - [anon_sym_AMPraw_output] = ACTIONS(522), - [anon_sym_AMPredef] = ACTIONS(522), - [anon_sym_AMPadd_func] = ACTIONS(522), - [anon_sym_AMPbackend] = ACTIONS(522), - [anon_sym_AMPbroker_store] = ACTIONS(522), - [anon_sym_AMPcreate_expire] = ACTIONS(522), - [anon_sym_AMPdefault] = ACTIONS(522), - [anon_sym_AMPdelete_func] = ACTIONS(522), - [anon_sym_AMPexpire_func] = ACTIONS(522), - [anon_sym_AMPgroup] = ACTIONS(522), - [anon_sym_AMPon_change] = ACTIONS(522), - [anon_sym_AMPpriority] = ACTIONS(522), - [anon_sym_AMPread_expire] = ACTIONS(522), - [anon_sym_AMPtype_column] = ACTIONS(522), - [anon_sym_AMPwrite_expire] = ACTIONS(522), - [anon_sym_DOLLAR] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_copy] = ACTIONS(524), - [anon_sym_schedule] = ACTIONS(524), - [aux_sym_constant_token1] = ACTIONS(524), - [anon_sym_T] = ACTIONS(524), - [anon_sym_F] = ACTIONS(524), - [anon_sym_ATdeprecated] = ACTIONS(522), - [anon_sym_ATload] = ACTIONS(524), - [anon_sym_ATload_DASHsigs] = ACTIONS(522), - [anon_sym_ATload_DASHplugin] = ACTIONS(522), - [anon_sym_ATunload] = ACTIONS(522), - [anon_sym_ATprefixes] = ACTIONS(522), - [anon_sym_ATif] = ACTIONS(524), - [anon_sym_ATifdef] = ACTIONS(522), - [anon_sym_ATifndef] = ACTIONS(522), - [anon_sym_ATendif] = ACTIONS(522), - [anon_sym_ATelse] = ACTIONS(522), - [anon_sym_ATDIR] = ACTIONS(522), - [anon_sym_ATFILENAME] = ACTIONS(522), - [sym_id] = ACTIONS(524), - [sym_pattern] = ACTIONS(522), - [sym_ipv6] = ACTIONS(524), - [sym_ipv4] = ACTIONS(524), - [sym_port] = ACTIONS(522), - [sym_floatp] = ACTIONS(524), - [sym_hex] = ACTIONS(524), - [sym_hostname] = ACTIONS(524), - [aux_sym_string_token1] = ACTIONS(522), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [59] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2288), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_const] = ACTIONS(205), + [52] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2548), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21779,73 +20835,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [60] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2755), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_const] = ACTIONS(205), + [53] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2589), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21859,73 +20917,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [61] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2292), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_const] = ACTIONS(205), + [54] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2615), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(518), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -21939,153 +20999,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [62] = { - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_record] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_local] = ACTIONS(534), - [anon_sym_EQ] = ACTIONS(532), - [anon_sym_table] = ACTIONS(534), - [anon_sym_set] = ACTIONS(534), - [anon_sym_vector] = ACTIONS(534), - [anon_sym_function] = ACTIONS(534), - [anon_sym_hook] = ACTIONS(534), - [anon_sym_AMPdeprecated] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(532), - [anon_sym_AMPerror_handler] = ACTIONS(532), - [anon_sym_AMPis_assigned] = ACTIONS(532), - [anon_sym_AMPis_used] = ACTIONS(532), - [anon_sym_AMPlog] = ACTIONS(532), - [anon_sym_AMPoptional] = ACTIONS(532), - [anon_sym_AMPraw_output] = ACTIONS(532), - [anon_sym_AMPredef] = ACTIONS(532), - [anon_sym_AMPadd_func] = ACTIONS(532), - [anon_sym_AMPbackend] = ACTIONS(532), - [anon_sym_AMPbroker_store] = ACTIONS(532), - [anon_sym_AMPcreate_expire] = ACTIONS(532), - [anon_sym_AMPdefault] = ACTIONS(532), - [anon_sym_AMPdelete_func] = ACTIONS(532), - [anon_sym_AMPexpire_func] = ACTIONS(532), - [anon_sym_AMPgroup] = ACTIONS(532), - [anon_sym_AMPon_change] = ACTIONS(532), - [anon_sym_AMPpriority] = ACTIONS(532), - [anon_sym_AMPread_expire] = ACTIONS(532), - [anon_sym_AMPtype_column] = ACTIONS(532), - [anon_sym_AMPwrite_expire] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_PLUS_PLUS] = ACTIONS(532), - [anon_sym_DASH_DASH] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(532), - [anon_sym_TILDE] = ACTIONS(532), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_copy] = ACTIONS(534), - [anon_sym_schedule] = ACTIONS(534), - [aux_sym_constant_token1] = ACTIONS(534), - [anon_sym_T] = ACTIONS(534), - [anon_sym_F] = ACTIONS(534), - [anon_sym_ATdeprecated] = ACTIONS(532), - [anon_sym_ATload] = ACTIONS(534), - [anon_sym_ATload_DASHsigs] = ACTIONS(532), - [anon_sym_ATload_DASHplugin] = ACTIONS(532), - [anon_sym_ATunload] = ACTIONS(532), - [anon_sym_ATprefixes] = ACTIONS(532), - [anon_sym_ATif] = ACTIONS(534), - [anon_sym_ATifdef] = ACTIONS(532), - [anon_sym_ATifndef] = ACTIONS(532), - [anon_sym_ATendif] = ACTIONS(532), - [anon_sym_ATelse] = ACTIONS(532), - [anon_sym_ATDIR] = ACTIONS(532), - [anon_sym_ATFILENAME] = ACTIONS(532), - [sym_id] = ACTIONS(534), - [sym_pattern] = ACTIONS(532), - [sym_ipv6] = ACTIONS(534), - [sym_ipv4] = ACTIONS(534), - [sym_port] = ACTIONS(532), - [sym_floatp] = ACTIONS(534), - [sym_hex] = ACTIONS(534), - [sym_hostname] = ACTIONS(534), - [aux_sym_string_token1] = ACTIONS(532), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [63] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2384), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_const] = ACTIONS(205), + [55] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2617), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22099,73 +21081,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [64] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2387), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_const] = ACTIONS(205), + [56] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2628), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22179,73 +21163,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [65] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2389), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_const] = ACTIONS(205), + [57] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2639), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(524), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22259,153 +21245,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [66] = { - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_record] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_local] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(542), - [anon_sym_table] = ACTIONS(544), - [anon_sym_set] = ACTIONS(544), - [anon_sym_vector] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_hook] = ACTIONS(544), - [anon_sym_AMPdeprecated] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(542), - [anon_sym_AMPerror_handler] = ACTIONS(542), - [anon_sym_AMPis_assigned] = ACTIONS(542), - [anon_sym_AMPis_used] = ACTIONS(542), - [anon_sym_AMPlog] = ACTIONS(542), - [anon_sym_AMPoptional] = ACTIONS(542), - [anon_sym_AMPraw_output] = ACTIONS(542), - [anon_sym_AMPredef] = ACTIONS(542), - [anon_sym_AMPadd_func] = ACTIONS(542), - [anon_sym_AMPbackend] = ACTIONS(542), - [anon_sym_AMPbroker_store] = ACTIONS(542), - [anon_sym_AMPcreate_expire] = ACTIONS(542), - [anon_sym_AMPdefault] = ACTIONS(542), - [anon_sym_AMPdelete_func] = ACTIONS(542), - [anon_sym_AMPexpire_func] = ACTIONS(542), - [anon_sym_AMPgroup] = ACTIONS(542), - [anon_sym_AMPon_change] = ACTIONS(542), - [anon_sym_AMPpriority] = ACTIONS(542), - [anon_sym_AMPread_expire] = ACTIONS(542), - [anon_sym_AMPtype_column] = ACTIONS(542), - [anon_sym_AMPwrite_expire] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(542), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_copy] = ACTIONS(544), - [anon_sym_schedule] = ACTIONS(544), - [aux_sym_constant_token1] = ACTIONS(544), - [anon_sym_T] = ACTIONS(544), - [anon_sym_F] = ACTIONS(544), - [anon_sym_ATdeprecated] = ACTIONS(542), - [anon_sym_ATload] = ACTIONS(544), - [anon_sym_ATload_DASHsigs] = ACTIONS(542), - [anon_sym_ATload_DASHplugin] = ACTIONS(542), - [anon_sym_ATunload] = ACTIONS(542), - [anon_sym_ATprefixes] = ACTIONS(542), - [anon_sym_ATif] = ACTIONS(544), - [anon_sym_ATifdef] = ACTIONS(542), - [anon_sym_ATifndef] = ACTIONS(542), - [anon_sym_ATendif] = ACTIONS(542), - [anon_sym_ATelse] = ACTIONS(542), - [anon_sym_ATDIR] = ACTIONS(542), - [anon_sym_ATFILENAME] = ACTIONS(542), - [sym_id] = ACTIONS(544), - [sym_pattern] = ACTIONS(542), - [sym_ipv6] = ACTIONS(544), - [sym_ipv4] = ACTIONS(544), - [sym_port] = ACTIONS(542), - [sym_floatp] = ACTIONS(544), - [sym_hex] = ACTIONS(544), - [sym_hostname] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [67] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2509), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(546), - [anon_sym_const] = ACTIONS(205), + [58] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2357), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22419,73 +21327,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [68] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2511), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_const] = ACTIONS(205), + [59] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2363), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(528), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22499,73 +21409,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [69] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2516), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(550), - [anon_sym_const] = ACTIONS(205), + [60] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2396), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22579,73 +21491,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [70] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2168), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_const] = ACTIONS(205), + [61] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2863), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22659,73 +21573,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [71] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2568), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(554), - [anon_sym_const] = ACTIONS(205), + [62] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2882), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(534), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22739,73 +21655,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [72] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2570), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(556), - [anon_sym_const] = ACTIONS(205), + [63] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2188), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22819,73 +21737,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [73] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2173), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(558), - [anon_sym_const] = ACTIONS(205), + [64] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2297), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(538), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22899,73 +21819,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [74] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2152), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_const] = ACTIONS(205), + [65] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2304), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -22979,73 +21901,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [75] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2208), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_const] = ACTIONS(205), + [66] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2312), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(542), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23059,73 +21983,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [76] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2543), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_const] = ACTIONS(205), + [67] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2552), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(544), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23139,73 +22065,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [77] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2622), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_const] = ACTIONS(205), + [68] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2556), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23219,73 +22147,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [78] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2624), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(568), - [anon_sym_const] = ACTIONS(205), + [69] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2564), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23299,73 +22229,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [79] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2636), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_const] = ACTIONS(205), + [70] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2683), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23379,73 +22311,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [80] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2507), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(572), - [anon_sym_const] = ACTIONS(205), + [71] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2790), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23459,73 +22393,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [81] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2833), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(574), - [anon_sym_const] = ACTIONS(205), + [72] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2801), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23539,73 +22475,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [82] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2401), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_const] = ACTIONS(205), + [73] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2702), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23619,73 +22557,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [83] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2585), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_const] = ACTIONS(205), + [74] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2772), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23699,73 +22639,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [84] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2612), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_const] = ACTIONS(205), + [75] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2821), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23779,73 +22721,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [85] = { - [sym_stmt] = STATE(95), - [sym_stmt_list] = STATE(2290), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(95), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_const] = ACTIONS(205), + [76] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2771), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -23859,684 +22803,623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [86] = { - [sym_initializer] = STATE(1706), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2601), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(588), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [87] = { - [sym_initializer] = STATE(1739), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2259), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(644), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(646), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [77] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2783), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_const] = ACTIONS(266), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [88] = { - [sym_initializer] = STATE(1693), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2548), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [78] = { + [sym_stmt] = STATE(88), + [sym_stmt_list] = STATE(2528), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(88), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_const] = ACTIONS(266), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [89] = { - [sym_initializer] = STATE(1749), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2659), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(654), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [79] = { + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_record] = ACTIONS(570), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_local] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(568), + [anon_sym_table] = ACTIONS(570), + [anon_sym_set] = ACTIONS(570), + [anon_sym_vector] = ACTIONS(570), + [anon_sym_function] = ACTIONS(570), + [anon_sym_hook] = ACTIONS(570), + [anon_sym_AMPdeprecated] = ACTIONS(568), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(568), + [anon_sym_AMPerror_handler] = ACTIONS(568), + [anon_sym_AMPis_assigned] = ACTIONS(568), + [anon_sym_AMPis_used] = ACTIONS(568), + [anon_sym_AMPlog] = ACTIONS(568), + [anon_sym_AMPoptional] = ACTIONS(568), + [anon_sym_AMPraw_output] = ACTIONS(568), + [anon_sym_AMPredef] = ACTIONS(568), + [anon_sym_AMPadd_func] = ACTIONS(568), + [anon_sym_AMPbackend] = ACTIONS(568), + [anon_sym_AMPbroker_store] = ACTIONS(568), + [anon_sym_AMPcreate_expire] = ACTIONS(568), + [anon_sym_AMPdefault] = ACTIONS(568), + [anon_sym_AMPdelete_func] = ACTIONS(568), + [anon_sym_AMPexpire_func] = ACTIONS(568), + [anon_sym_AMPgroup] = ACTIONS(568), + [anon_sym_AMPon_change] = ACTIONS(568), + [anon_sym_AMPpriority] = ACTIONS(568), + [anon_sym_AMPread_expire] = ACTIONS(568), + [anon_sym_AMPtype_column] = ACTIONS(568), + [anon_sym_AMPwrite_expire] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(568), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_DASH_DASH] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(568), + [anon_sym_TILDE] = ACTIONS(568), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_copy] = ACTIONS(570), + [anon_sym_schedule] = ACTIONS(570), + [aux_sym_constant_token1] = ACTIONS(570), + [anon_sym_T] = ACTIONS(570), + [anon_sym_F] = ACTIONS(570), + [anon_sym_ATdeprecated] = ACTIONS(568), + [anon_sym_ATload] = ACTIONS(570), + [anon_sym_ATload_DASHsigs] = ACTIONS(568), + [anon_sym_ATload_DASHplugin] = ACTIONS(568), + [anon_sym_ATunload] = ACTIONS(568), + [anon_sym_ATprefixes] = ACTIONS(568), + [anon_sym_ATif] = ACTIONS(570), + [anon_sym_ATifdef] = ACTIONS(568), + [anon_sym_ATifndef] = ACTIONS(568), + [anon_sym_ATendif] = ACTIONS(568), + [anon_sym_ATelse] = ACTIONS(568), + [anon_sym_ATpragma] = ACTIONS(568), + [anon_sym_ATDIR] = ACTIONS(568), + [anon_sym_ATFILENAME] = ACTIONS(568), + [sym_id] = ACTIONS(570), + [sym_pattern] = ACTIONS(568), + [sym_ipv6] = ACTIONS(570), + [sym_ipv4] = ACTIONS(570), + [sym_port] = ACTIONS(568), + [sym_floatp] = ACTIONS(570), + [sym_hex] = ACTIONS(570), + [sym_hostname] = ACTIONS(570), + [aux_sym_string_token1] = ACTIONS(568), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [90] = { - [sym_initializer] = STATE(1738), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2627), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(658), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [80] = { + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_record] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_local] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_table] = ACTIONS(574), + [anon_sym_set] = ACTIONS(574), + [anon_sym_vector] = ACTIONS(574), + [anon_sym_function] = ACTIONS(574), + [anon_sym_hook] = ACTIONS(574), + [anon_sym_AMPdeprecated] = ACTIONS(572), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(572), + [anon_sym_AMPerror_handler] = ACTIONS(572), + [anon_sym_AMPis_assigned] = ACTIONS(572), + [anon_sym_AMPis_used] = ACTIONS(572), + [anon_sym_AMPlog] = ACTIONS(572), + [anon_sym_AMPoptional] = ACTIONS(572), + [anon_sym_AMPraw_output] = ACTIONS(572), + [anon_sym_AMPredef] = ACTIONS(572), + [anon_sym_AMPadd_func] = ACTIONS(572), + [anon_sym_AMPbackend] = ACTIONS(572), + [anon_sym_AMPbroker_store] = ACTIONS(572), + [anon_sym_AMPcreate_expire] = ACTIONS(572), + [anon_sym_AMPdefault] = ACTIONS(572), + [anon_sym_AMPdelete_func] = ACTIONS(572), + [anon_sym_AMPexpire_func] = ACTIONS(572), + [anon_sym_AMPgroup] = ACTIONS(572), + [anon_sym_AMPon_change] = ACTIONS(572), + [anon_sym_AMPpriority] = ACTIONS(572), + [anon_sym_AMPread_expire] = ACTIONS(572), + [anon_sym_AMPtype_column] = ACTIONS(572), + [anon_sym_AMPwrite_expire] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_copy] = ACTIONS(574), + [anon_sym_schedule] = ACTIONS(574), + [aux_sym_constant_token1] = ACTIONS(574), + [anon_sym_T] = ACTIONS(574), + [anon_sym_F] = ACTIONS(574), + [anon_sym_ATdeprecated] = ACTIONS(572), + [anon_sym_ATload] = ACTIONS(574), + [anon_sym_ATload_DASHsigs] = ACTIONS(572), + [anon_sym_ATload_DASHplugin] = ACTIONS(572), + [anon_sym_ATunload] = ACTIONS(572), + [anon_sym_ATprefixes] = ACTIONS(572), + [anon_sym_ATif] = ACTIONS(574), + [anon_sym_ATifdef] = ACTIONS(572), + [anon_sym_ATifndef] = ACTIONS(572), + [anon_sym_ATendif] = ACTIONS(572), + [anon_sym_ATelse] = ACTIONS(572), + [anon_sym_ATpragma] = ACTIONS(572), + [anon_sym_ATDIR] = ACTIONS(572), + [anon_sym_ATFILENAME] = ACTIONS(572), + [sym_id] = ACTIONS(574), + [sym_pattern] = ACTIONS(572), + [sym_ipv6] = ACTIONS(574), + [sym_ipv4] = ACTIONS(574), + [sym_port] = ACTIONS(572), + [sym_floatp] = ACTIONS(574), + [sym_hex] = ACTIONS(574), + [sym_hostname] = ACTIONS(574), + [aux_sym_string_token1] = ACTIONS(572), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [91] = { - [sym_initializer] = STATE(1762), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2789), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(662), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [81] = { + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_record] = ACTIONS(578), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_local] = ACTIONS(578), + [anon_sym_EQ] = ACTIONS(576), + [anon_sym_table] = ACTIONS(578), + [anon_sym_set] = ACTIONS(578), + [anon_sym_vector] = ACTIONS(578), + [anon_sym_function] = ACTIONS(578), + [anon_sym_hook] = ACTIONS(578), + [anon_sym_AMPdeprecated] = ACTIONS(576), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(576), + [anon_sym_AMPerror_handler] = ACTIONS(576), + [anon_sym_AMPis_assigned] = ACTIONS(576), + [anon_sym_AMPis_used] = ACTIONS(576), + [anon_sym_AMPlog] = ACTIONS(576), + [anon_sym_AMPoptional] = ACTIONS(576), + [anon_sym_AMPraw_output] = ACTIONS(576), + [anon_sym_AMPredef] = ACTIONS(576), + [anon_sym_AMPadd_func] = ACTIONS(576), + [anon_sym_AMPbackend] = ACTIONS(576), + [anon_sym_AMPbroker_store] = ACTIONS(576), + [anon_sym_AMPcreate_expire] = ACTIONS(576), + [anon_sym_AMPdefault] = ACTIONS(576), + [anon_sym_AMPdelete_func] = ACTIONS(576), + [anon_sym_AMPexpire_func] = ACTIONS(576), + [anon_sym_AMPgroup] = ACTIONS(576), + [anon_sym_AMPon_change] = ACTIONS(576), + [anon_sym_AMPpriority] = ACTIONS(576), + [anon_sym_AMPread_expire] = ACTIONS(576), + [anon_sym_AMPtype_column] = ACTIONS(576), + [anon_sym_AMPwrite_expire] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(576), + [anon_sym_PLUS_PLUS] = ACTIONS(576), + [anon_sym_DASH_DASH] = ACTIONS(576), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_copy] = ACTIONS(578), + [anon_sym_schedule] = ACTIONS(578), + [aux_sym_constant_token1] = ACTIONS(578), + [anon_sym_T] = ACTIONS(578), + [anon_sym_F] = ACTIONS(578), + [anon_sym_ATdeprecated] = ACTIONS(576), + [anon_sym_ATload] = ACTIONS(578), + [anon_sym_ATload_DASHsigs] = ACTIONS(576), + [anon_sym_ATload_DASHplugin] = ACTIONS(576), + [anon_sym_ATunload] = ACTIONS(576), + [anon_sym_ATprefixes] = ACTIONS(576), + [anon_sym_ATif] = ACTIONS(578), + [anon_sym_ATifdef] = ACTIONS(576), + [anon_sym_ATifndef] = ACTIONS(576), + [anon_sym_ATendif] = ACTIONS(576), + [anon_sym_ATelse] = ACTIONS(576), + [anon_sym_ATpragma] = ACTIONS(576), + [anon_sym_ATDIR] = ACTIONS(576), + [anon_sym_ATFILENAME] = ACTIONS(576), + [sym_id] = ACTIONS(578), + [sym_pattern] = ACTIONS(576), + [sym_ipv6] = ACTIONS(578), + [sym_ipv4] = ACTIONS(578), + [sym_port] = ACTIONS(576), + [sym_floatp] = ACTIONS(578), + [sym_hex] = ACTIONS(578), + [sym_hostname] = ACTIONS(578), + [aux_sym_string_token1] = ACTIONS(576), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [92] = { - [sym_initializer] = STATE(1697), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2334), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(668), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [82] = { + [sym_stmt] = STATE(82), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(348), + [anon_sym_SEMI] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_const] = ACTIONS(586), + [anon_sym_record] = ACTIONS(353), + [anon_sym_print] = ACTIONS(589), + [anon_sym_event] = ACTIONS(592), + [anon_sym_if] = ACTIONS(595), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(598), + [anon_sym_for] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(374), + [anon_sym_while] = ACTIONS(604), + [anon_sym_next] = ACTIONS(607), + [anon_sym_break] = ACTIONS(607), + [anon_sym_fallthrough] = ACTIONS(607), + [anon_sym_return] = ACTIONS(610), + [anon_sym_add] = ACTIONS(613), + [anon_sym_delete] = ACTIONS(613), + [anon_sym_local] = ACTIONS(616), + [anon_sym_when] = ACTIONS(619), + [anon_sym_assert] = ACTIONS(622), + [anon_sym_table] = ACTIONS(400), + [anon_sym_set] = ACTIONS(400), + [anon_sym_vector] = ACTIONS(403), + [anon_sym_function] = ACTIONS(406), + [anon_sym_hook] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_PLUS_PLUS] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_copy] = ACTIONS(424), + [anon_sym_schedule] = ACTIONS(427), + [aux_sym_constant_token1] = ACTIONS(430), + [anon_sym_T] = ACTIONS(433), + [anon_sym_F] = ACTIONS(433), + [anon_sym_ATdeprecated] = ACTIONS(625), + [anon_sym_ATload] = ACTIONS(628), + [anon_sym_ATload_DASHsigs] = ACTIONS(631), + [anon_sym_ATload_DASHplugin] = ACTIONS(634), + [anon_sym_ATunload] = ACTIONS(631), + [anon_sym_ATprefixes] = ACTIONS(637), + [anon_sym_ATif] = ACTIONS(640), + [anon_sym_ATifdef] = ACTIONS(643), + [anon_sym_ATifndef] = ACTIONS(643), + [anon_sym_ATendif] = ACTIONS(646), + [anon_sym_ATelse] = ACTIONS(646), + [anon_sym_ATpragma] = ACTIONS(649), + [anon_sym_ATDIR] = ACTIONS(463), + [anon_sym_ATFILENAME] = ACTIONS(463), + [sym_id] = ACTIONS(466), + [sym_pattern] = ACTIONS(469), + [sym_ipv6] = ACTIONS(472), + [sym_ipv4] = ACTIONS(472), + [sym_port] = ACTIONS(475), + [sym_floatp] = ACTIONS(478), + [sym_hex] = ACTIONS(433), + [sym_hostname] = ACTIONS(433), + [aux_sym_string_token1] = ACTIONS(481), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [93] = { - [sym_initializer] = STATE(1700), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2345), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(672), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [83] = { + [sym_stmt] = STATE(83), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(83), + [anon_sym_SEMI] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(655), + [anon_sym_RBRACE] = ACTIONS(348), + [anon_sym_const] = ACTIONS(658), + [anon_sym_record] = ACTIONS(353), + [anon_sym_print] = ACTIONS(661), + [anon_sym_event] = ACTIONS(664), + [anon_sym_if] = ACTIONS(667), + [anon_sym_LPAREN] = ACTIONS(365), + [anon_sym_switch] = ACTIONS(670), + [anon_sym_for] = ACTIONS(673), + [anon_sym_LBRACK] = ACTIONS(374), + [anon_sym_while] = ACTIONS(676), + [anon_sym_next] = ACTIONS(679), + [anon_sym_break] = ACTIONS(679), + [anon_sym_fallthrough] = ACTIONS(679), + [anon_sym_return] = ACTIONS(682), + [anon_sym_add] = ACTIONS(685), + [anon_sym_delete] = ACTIONS(685), + [anon_sym_local] = ACTIONS(688), + [anon_sym_when] = ACTIONS(691), + [anon_sym_assert] = ACTIONS(694), + [anon_sym_table] = ACTIONS(400), + [anon_sym_set] = ACTIONS(400), + [anon_sym_vector] = ACTIONS(403), + [anon_sym_function] = ACTIONS(406), + [anon_sym_hook] = ACTIONS(409), + [anon_sym_DOLLAR] = ACTIONS(412), + [anon_sym_PIPE] = ACTIONS(415), + [anon_sym_PLUS_PLUS] = ACTIONS(418), + [anon_sym_DASH_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(418), + [anon_sym_TILDE] = ACTIONS(418), + [anon_sym_DASH] = ACTIONS(421), + [anon_sym_PLUS] = ACTIONS(421), + [anon_sym_copy] = ACTIONS(424), + [anon_sym_schedule] = ACTIONS(427), + [aux_sym_constant_token1] = ACTIONS(430), + [anon_sym_T] = ACTIONS(433), + [anon_sym_F] = ACTIONS(433), + [anon_sym_ATdeprecated] = ACTIONS(697), + [anon_sym_ATload] = ACTIONS(700), + [anon_sym_ATload_DASHsigs] = ACTIONS(703), + [anon_sym_ATload_DASHplugin] = ACTIONS(706), + [anon_sym_ATunload] = ACTIONS(703), + [anon_sym_ATprefixes] = ACTIONS(709), + [anon_sym_ATif] = ACTIONS(712), + [anon_sym_ATifdef] = ACTIONS(715), + [anon_sym_ATifndef] = ACTIONS(715), + [anon_sym_ATendif] = ACTIONS(718), + [anon_sym_ATelse] = ACTIONS(718), + [anon_sym_ATpragma] = ACTIONS(721), + [anon_sym_ATDIR] = ACTIONS(463), + [anon_sym_ATFILENAME] = ACTIONS(463), + [sym_id] = ACTIONS(466), + [sym_pattern] = ACTIONS(469), + [sym_ipv6] = ACTIONS(472), + [sym_ipv4] = ACTIONS(472), + [sym_port] = ACTIONS(475), + [sym_floatp] = ACTIONS(478), + [sym_hex] = ACTIONS(433), + [sym_hostname] = ACTIONS(433), + [aux_sym_string_token1] = ACTIONS(481), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [94] = { - [sym_stmt] = STATE(97), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(121), + [84] = { + [sym_stmt] = STATE(82), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(113), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), + [anon_sym_event] = ACTIONS(726), [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), @@ -24555,8 +23438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -24570,131 +23453,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [95] = { - [sym_stmt] = STATE(120), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(120), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(472), - [anon_sym_const] = ACTIONS(205), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [85] = { + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_PLUS_EQ] = ACTIONS(746), + [anon_sym_record] = ACTIONS(748), + [anon_sym_DASH_EQ] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_local] = ACTIONS(748), + [anon_sym_EQ] = ACTIONS(746), + [anon_sym_table] = ACTIONS(748), + [anon_sym_set] = ACTIONS(748), + [anon_sym_vector] = ACTIONS(748), + [anon_sym_function] = ACTIONS(748), + [anon_sym_hook] = ACTIONS(748), + [anon_sym_AMPdeprecated] = ACTIONS(746), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(746), + [anon_sym_AMPerror_handler] = ACTIONS(746), + [anon_sym_AMPis_assigned] = ACTIONS(746), + [anon_sym_AMPis_used] = ACTIONS(746), + [anon_sym_AMPlog] = ACTIONS(746), + [anon_sym_AMPoptional] = ACTIONS(746), + [anon_sym_AMPraw_output] = ACTIONS(746), + [anon_sym_AMPredef] = ACTIONS(746), + [anon_sym_AMPadd_func] = ACTIONS(746), + [anon_sym_AMPbackend] = ACTIONS(746), + [anon_sym_AMPbroker_store] = ACTIONS(746), + [anon_sym_AMPcreate_expire] = ACTIONS(746), + [anon_sym_AMPdefault] = ACTIONS(746), + [anon_sym_AMPdelete_func] = ACTIONS(746), + [anon_sym_AMPexpire_func] = ACTIONS(746), + [anon_sym_AMPgroup] = ACTIONS(746), + [anon_sym_AMPon_change] = ACTIONS(746), + [anon_sym_AMPpriority] = ACTIONS(746), + [anon_sym_AMPread_expire] = ACTIONS(746), + [anon_sym_AMPtype_column] = ACTIONS(746), + [anon_sym_AMPwrite_expire] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(746), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_DASH_DASH] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(746), + [anon_sym_TILDE] = ACTIONS(746), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_copy] = ACTIONS(748), + [anon_sym_schedule] = ACTIONS(748), + [aux_sym_constant_token1] = ACTIONS(748), + [anon_sym_T] = ACTIONS(748), + [anon_sym_F] = ACTIONS(748), + [anon_sym_ATdeprecated] = ACTIONS(746), + [anon_sym_ATload] = ACTIONS(748), + [anon_sym_ATload_DASHsigs] = ACTIONS(746), + [anon_sym_ATload_DASHplugin] = ACTIONS(746), + [anon_sym_ATunload] = ACTIONS(746), + [anon_sym_ATprefixes] = ACTIONS(746), + [anon_sym_ATif] = ACTIONS(748), + [anon_sym_ATifdef] = ACTIONS(746), + [anon_sym_ATifndef] = ACTIONS(746), + [anon_sym_ATendif] = ACTIONS(746), + [anon_sym_ATelse] = ACTIONS(746), + [anon_sym_ATpragma] = ACTIONS(746), + [anon_sym_ATDIR] = ACTIONS(746), + [anon_sym_ATFILENAME] = ACTIONS(746), + [sym_id] = ACTIONS(748), + [sym_pattern] = ACTIONS(746), + [sym_ipv6] = ACTIONS(748), + [sym_ipv4] = ACTIONS(748), + [sym_port] = ACTIONS(746), + [sym_floatp] = ACTIONS(748), + [sym_hex] = ACTIONS(748), + [sym_hostname] = ACTIONS(748), + [aux_sym_string_token1] = ACTIONS(746), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [96] = { - [sym_stmt] = STATE(97), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(694), + [86] = { + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_record] = ACTIONS(752), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_local] = ACTIONS(752), + [anon_sym_EQ] = ACTIONS(750), + [anon_sym_table] = ACTIONS(752), + [anon_sym_set] = ACTIONS(752), + [anon_sym_vector] = ACTIONS(752), + [anon_sym_function] = ACTIONS(752), + [anon_sym_hook] = ACTIONS(752), + [anon_sym_AMPdeprecated] = ACTIONS(750), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(750), + [anon_sym_AMPerror_handler] = ACTIONS(750), + [anon_sym_AMPis_assigned] = ACTIONS(750), + [anon_sym_AMPis_used] = ACTIONS(750), + [anon_sym_AMPlog] = ACTIONS(750), + [anon_sym_AMPoptional] = ACTIONS(750), + [anon_sym_AMPraw_output] = ACTIONS(750), + [anon_sym_AMPredef] = ACTIONS(750), + [anon_sym_AMPadd_func] = ACTIONS(750), + [anon_sym_AMPbackend] = ACTIONS(750), + [anon_sym_AMPbroker_store] = ACTIONS(750), + [anon_sym_AMPcreate_expire] = ACTIONS(750), + [anon_sym_AMPdefault] = ACTIONS(750), + [anon_sym_AMPdelete_func] = ACTIONS(750), + [anon_sym_AMPexpire_func] = ACTIONS(750), + [anon_sym_AMPgroup] = ACTIONS(750), + [anon_sym_AMPon_change] = ACTIONS(750), + [anon_sym_AMPpriority] = ACTIONS(750), + [anon_sym_AMPread_expire] = ACTIONS(750), + [anon_sym_AMPtype_column] = ACTIONS(750), + [anon_sym_AMPwrite_expire] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(750), + [anon_sym_PLUS_PLUS] = ACTIONS(750), + [anon_sym_DASH_DASH] = ACTIONS(750), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_copy] = ACTIONS(752), + [anon_sym_schedule] = ACTIONS(752), + [aux_sym_constant_token1] = ACTIONS(752), + [anon_sym_T] = ACTIONS(752), + [anon_sym_F] = ACTIONS(752), + [anon_sym_ATdeprecated] = ACTIONS(750), + [anon_sym_ATload] = ACTIONS(752), + [anon_sym_ATload_DASHsigs] = ACTIONS(750), + [anon_sym_ATload_DASHplugin] = ACTIONS(750), + [anon_sym_ATunload] = ACTIONS(750), + [anon_sym_ATprefixes] = ACTIONS(750), + [anon_sym_ATif] = ACTIONS(752), + [anon_sym_ATifdef] = ACTIONS(750), + [anon_sym_ATifndef] = ACTIONS(750), + [anon_sym_ATendif] = ACTIONS(750), + [anon_sym_ATelse] = ACTIONS(750), + [anon_sym_ATpragma] = ACTIONS(750), + [anon_sym_ATDIR] = ACTIONS(750), + [anon_sym_ATFILENAME] = ACTIONS(750), + [sym_id] = ACTIONS(752), + [sym_pattern] = ACTIONS(750), + [sym_ipv6] = ACTIONS(752), + [sym_ipv4] = ACTIONS(752), + [sym_port] = ACTIONS(750), + [sym_floatp] = ACTIONS(752), + [sym_hex] = ACTIONS(752), + [sym_hostname] = ACTIONS(752), + [aux_sym_string_token1] = ACTIONS(750), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [87] = { + [sym_stmt] = STATE(82), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(82), + [ts_builtin_sym_end] = ACTIONS(754), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), + [anon_sym_event] = ACTIONS(726), [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), @@ -24713,8 +23681,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -24728,4777 +23696,1421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [97] = { - [sym_stmt] = STATE(97), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(97), - [ts_builtin_sym_end] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_const] = ACTIONS(702), - [anon_sym_record] = ACTIONS(344), - [anon_sym_print] = ACTIONS(705), - [anon_sym_event] = ACTIONS(708), - [anon_sym_if] = ACTIONS(711), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(714), - [anon_sym_for] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_while] = ACTIONS(720), - [anon_sym_next] = ACTIONS(723), - [anon_sym_break] = ACTIONS(723), - [anon_sym_fallthrough] = ACTIONS(723), - [anon_sym_return] = ACTIONS(726), - [anon_sym_add] = ACTIONS(729), - [anon_sym_delete] = ACTIONS(729), - [anon_sym_local] = ACTIONS(732), - [anon_sym_when] = ACTIONS(735), - [anon_sym_assert] = ACTIONS(738), - [anon_sym_table] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_vector] = ACTIONS(394), - [anon_sym_function] = ACTIONS(397), - [anon_sym_hook] = ACTIONS(400), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_copy] = ACTIONS(415), - [anon_sym_schedule] = ACTIONS(418), - [aux_sym_constant_token1] = ACTIONS(421), - [anon_sym_T] = ACTIONS(424), - [anon_sym_F] = ACTIONS(424), - [anon_sym_ATdeprecated] = ACTIONS(741), - [anon_sym_ATload] = ACTIONS(744), - [anon_sym_ATload_DASHsigs] = ACTIONS(747), - [anon_sym_ATload_DASHplugin] = ACTIONS(750), - [anon_sym_ATunload] = ACTIONS(747), - [anon_sym_ATprefixes] = ACTIONS(753), - [anon_sym_ATif] = ACTIONS(756), - [anon_sym_ATifdef] = ACTIONS(759), - [anon_sym_ATifndef] = ACTIONS(759), - [anon_sym_ATendif] = ACTIONS(762), - [anon_sym_ATelse] = ACTIONS(762), - [anon_sym_ATDIR] = ACTIONS(451), - [anon_sym_ATFILENAME] = ACTIONS(451), - [sym_id] = ACTIONS(454), - [sym_pattern] = ACTIONS(457), - [sym_ipv6] = ACTIONS(460), - [sym_ipv4] = ACTIONS(460), - [sym_port] = ACTIONS(463), - [sym_floatp] = ACTIONS(466), - [sym_hex] = ACTIONS(424), - [sym_hostname] = ACTIONS(424), - [aux_sym_string_token1] = ACTIONS(469), + [88] = { + [sym_stmt] = STATE(83), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_source_file_repeat2] = STATE(83), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_const] = ACTIONS(266), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [98] = { - [sym_initializer] = STATE(1722), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2443), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(765), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(767), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [89] = { + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_PLUS_EQ] = ACTIONS(756), + [anon_sym_record] = ACTIONS(758), + [anon_sym_DASH_EQ] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_local] = ACTIONS(758), + [anon_sym_EQ] = ACTIONS(756), + [anon_sym_table] = ACTIONS(758), + [anon_sym_set] = ACTIONS(758), + [anon_sym_vector] = ACTIONS(758), + [anon_sym_function] = ACTIONS(758), + [anon_sym_hook] = ACTIONS(758), + [anon_sym_AMPdeprecated] = ACTIONS(756), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(756), + [anon_sym_AMPerror_handler] = ACTIONS(756), + [anon_sym_AMPis_assigned] = ACTIONS(756), + [anon_sym_AMPis_used] = ACTIONS(756), + [anon_sym_AMPlog] = ACTIONS(756), + [anon_sym_AMPoptional] = ACTIONS(756), + [anon_sym_AMPraw_output] = ACTIONS(756), + [anon_sym_AMPredef] = ACTIONS(756), + [anon_sym_AMPadd_func] = ACTIONS(756), + [anon_sym_AMPbackend] = ACTIONS(756), + [anon_sym_AMPbroker_store] = ACTIONS(756), + [anon_sym_AMPcreate_expire] = ACTIONS(756), + [anon_sym_AMPdefault] = ACTIONS(756), + [anon_sym_AMPdelete_func] = ACTIONS(756), + [anon_sym_AMPexpire_func] = ACTIONS(756), + [anon_sym_AMPgroup] = ACTIONS(756), + [anon_sym_AMPon_change] = ACTIONS(756), + [anon_sym_AMPpriority] = ACTIONS(756), + [anon_sym_AMPread_expire] = ACTIONS(756), + [anon_sym_AMPtype_column] = ACTIONS(756), + [anon_sym_AMPwrite_expire] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS_PLUS] = ACTIONS(756), + [anon_sym_DASH_DASH] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(756), + [anon_sym_TILDE] = ACTIONS(756), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_copy] = ACTIONS(758), + [anon_sym_schedule] = ACTIONS(758), + [aux_sym_constant_token1] = ACTIONS(758), + [anon_sym_T] = ACTIONS(758), + [anon_sym_F] = ACTIONS(758), + [anon_sym_ATdeprecated] = ACTIONS(756), + [anon_sym_ATload] = ACTIONS(758), + [anon_sym_ATload_DASHsigs] = ACTIONS(756), + [anon_sym_ATload_DASHplugin] = ACTIONS(756), + [anon_sym_ATunload] = ACTIONS(756), + [anon_sym_ATprefixes] = ACTIONS(756), + [anon_sym_ATif] = ACTIONS(758), + [anon_sym_ATifdef] = ACTIONS(756), + [anon_sym_ATifndef] = ACTIONS(756), + [anon_sym_ATendif] = ACTIONS(756), + [anon_sym_ATelse] = ACTIONS(756), + [anon_sym_ATpragma] = ACTIONS(756), + [anon_sym_ATDIR] = ACTIONS(756), + [anon_sym_ATFILENAME] = ACTIONS(756), + [sym_id] = ACTIONS(758), + [sym_pattern] = ACTIONS(756), + [sym_ipv6] = ACTIONS(758), + [sym_ipv4] = ACTIONS(758), + [sym_port] = ACTIONS(756), + [sym_floatp] = ACTIONS(758), + [sym_hex] = ACTIONS(758), + [sym_hostname] = ACTIONS(758), + [aux_sym_string_token1] = ACTIONS(756), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [99] = { - [sym_initializer] = STATE(1734), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2458), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(771), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [90] = { + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_record] = ACTIONS(762), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_local] = ACTIONS(762), + [anon_sym_EQ] = ACTIONS(760), + [anon_sym_table] = ACTIONS(762), + [anon_sym_set] = ACTIONS(762), + [anon_sym_vector] = ACTIONS(762), + [anon_sym_function] = ACTIONS(762), + [anon_sym_hook] = ACTIONS(762), + [anon_sym_AMPdeprecated] = ACTIONS(760), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(760), + [anon_sym_AMPerror_handler] = ACTIONS(760), + [anon_sym_AMPis_assigned] = ACTIONS(760), + [anon_sym_AMPis_used] = ACTIONS(760), + [anon_sym_AMPlog] = ACTIONS(760), + [anon_sym_AMPoptional] = ACTIONS(760), + [anon_sym_AMPraw_output] = ACTIONS(760), + [anon_sym_AMPredef] = ACTIONS(760), + [anon_sym_AMPadd_func] = ACTIONS(760), + [anon_sym_AMPbackend] = ACTIONS(760), + [anon_sym_AMPbroker_store] = ACTIONS(760), + [anon_sym_AMPcreate_expire] = ACTIONS(760), + [anon_sym_AMPdefault] = ACTIONS(760), + [anon_sym_AMPdelete_func] = ACTIONS(760), + [anon_sym_AMPexpire_func] = ACTIONS(760), + [anon_sym_AMPgroup] = ACTIONS(760), + [anon_sym_AMPon_change] = ACTIONS(760), + [anon_sym_AMPpriority] = ACTIONS(760), + [anon_sym_AMPread_expire] = ACTIONS(760), + [anon_sym_AMPtype_column] = ACTIONS(760), + [anon_sym_AMPwrite_expire] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PLUS_PLUS] = ACTIONS(760), + [anon_sym_DASH_DASH] = ACTIONS(760), + [anon_sym_BANG] = ACTIONS(760), + [anon_sym_TILDE] = ACTIONS(760), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_copy] = ACTIONS(762), + [anon_sym_schedule] = ACTIONS(762), + [aux_sym_constant_token1] = ACTIONS(762), + [anon_sym_T] = ACTIONS(762), + [anon_sym_F] = ACTIONS(762), + [anon_sym_ATdeprecated] = ACTIONS(760), + [anon_sym_ATload] = ACTIONS(762), + [anon_sym_ATload_DASHsigs] = ACTIONS(760), + [anon_sym_ATload_DASHplugin] = ACTIONS(760), + [anon_sym_ATunload] = ACTIONS(760), + [anon_sym_ATprefixes] = ACTIONS(760), + [anon_sym_ATif] = ACTIONS(762), + [anon_sym_ATifdef] = ACTIONS(760), + [anon_sym_ATifndef] = ACTIONS(760), + [anon_sym_ATendif] = ACTIONS(760), + [anon_sym_ATelse] = ACTIONS(760), + [anon_sym_ATpragma] = ACTIONS(760), + [anon_sym_ATDIR] = ACTIONS(760), + [anon_sym_ATFILENAME] = ACTIONS(760), + [sym_id] = ACTIONS(762), + [sym_pattern] = ACTIONS(760), + [sym_ipv6] = ACTIONS(762), + [sym_ipv4] = ACTIONS(762), + [sym_port] = ACTIONS(760), + [sym_floatp] = ACTIONS(762), + [sym_hex] = ACTIONS(762), + [sym_hostname] = ACTIONS(762), + [aux_sym_string_token1] = ACTIONS(760), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [100] = { - [sym_initializer] = STATE(1694), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2465), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(773), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [91] = { + [sym_stmt] = STATE(711), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [101] = { - [sym_initializer] = STATE(1698), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2502), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(779), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [92] = { + [sym_stmt] = STATE(647), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [102] = { - [sym_initializer] = STATE(1732), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2253), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(783), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [93] = { + [sym_stmt] = STATE(654), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [103] = { - [sym_initializer] = STATE(1742), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2238), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(785), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(787), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [94] = { + [sym_stmt] = STATE(655), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [104] = { - [sym_initializer] = STATE(1747), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2544), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(791), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [95] = { + [sym_stmt] = STATE(658), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [105] = { - [sym_initializer] = STATE(1750), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2549), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(795), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [96] = { + [sym_stmt] = STATE(660), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [106] = { - [sym_initializer] = STATE(1731), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2456), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(799), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [97] = { + [sym_stmt] = STATE(662), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [107] = { - [sym_initializer] = STATE(1729), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2469), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(801), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(803), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [98] = { + [sym_stmt] = STATE(665), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [108] = { - [sym_initializer] = STATE(1746), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2704), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(805), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(807), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [99] = { + [sym_stmt] = STATE(802), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [109] = { - [sym_initializer] = STATE(1756), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2732), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(809), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(811), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [100] = { + [sym_stmt] = STATE(509), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [110] = { - [sym_initializer] = STATE(1707), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2596), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(813), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(815), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [101] = { + [sym_stmt] = STATE(515), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [111] = { - [sym_initializer] = STATE(1741), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2483), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(819), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [102] = { + [sym_stmt] = STATE(516), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [112] = { - [sym_initializer] = STATE(1692), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2510), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), + [103] = { + [sym_initializer] = STATE(1733), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2332), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(823), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(864), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [113] = { - [sym_initializer] = STATE(1721), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2279), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), + [104] = { + [sym_stmt] = STATE(521), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [114] = { - [sym_initializer] = STATE(1758), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2550), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [115] = { - [sym_initializer] = STATE(1757), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2176), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [116] = { - [sym_initializer] = STATE(1765), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2183), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [117] = { - [sym_initializer] = STATE(1730), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2764), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(843), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [118] = { - [sym_initializer] = STATE(1733), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2769), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(847), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [119] = { - [sym_initializer] = STATE(1720), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2597), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(851), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [120] = { - [sym_stmt] = STATE(120), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [aux_sym_source_file_repeat2] = STATE(120), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(856), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_const] = ACTIONS(859), - [anon_sym_record] = ACTIONS(344), - [anon_sym_print] = ACTIONS(862), - [anon_sym_event] = ACTIONS(865), - [anon_sym_if] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(871), - [anon_sym_for] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_while] = ACTIONS(877), - [anon_sym_next] = ACTIONS(880), - [anon_sym_break] = ACTIONS(880), - [anon_sym_fallthrough] = ACTIONS(880), - [anon_sym_return] = ACTIONS(883), - [anon_sym_add] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_local] = ACTIONS(889), - [anon_sym_when] = ACTIONS(892), - [anon_sym_assert] = ACTIONS(895), - [anon_sym_table] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_vector] = ACTIONS(394), - [anon_sym_function] = ACTIONS(397), - [anon_sym_hook] = ACTIONS(400), - [anon_sym_DOLLAR] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(406), - [anon_sym_PLUS_PLUS] = ACTIONS(409), - [anon_sym_DASH_DASH] = ACTIONS(409), - [anon_sym_BANG] = ACTIONS(409), - [anon_sym_TILDE] = ACTIONS(409), - [anon_sym_DASH] = ACTIONS(412), - [anon_sym_PLUS] = ACTIONS(412), - [anon_sym_copy] = ACTIONS(415), - [anon_sym_schedule] = ACTIONS(418), - [aux_sym_constant_token1] = ACTIONS(421), - [anon_sym_T] = ACTIONS(424), - [anon_sym_F] = ACTIONS(424), - [anon_sym_ATdeprecated] = ACTIONS(898), - [anon_sym_ATload] = ACTIONS(901), - [anon_sym_ATload_DASHsigs] = ACTIONS(904), - [anon_sym_ATload_DASHplugin] = ACTIONS(907), - [anon_sym_ATunload] = ACTIONS(904), - [anon_sym_ATprefixes] = ACTIONS(910), - [anon_sym_ATif] = ACTIONS(913), - [anon_sym_ATifdef] = ACTIONS(916), - [anon_sym_ATifndef] = ACTIONS(916), - [anon_sym_ATendif] = ACTIONS(919), - [anon_sym_ATelse] = ACTIONS(919), - [anon_sym_ATDIR] = ACTIONS(451), - [anon_sym_ATFILENAME] = ACTIONS(451), - [sym_id] = ACTIONS(454), - [sym_pattern] = ACTIONS(457), - [sym_ipv6] = ACTIONS(460), - [sym_ipv4] = ACTIONS(460), - [sym_port] = ACTIONS(463), - [sym_floatp] = ACTIONS(466), - [sym_hex] = ACTIONS(424), - [sym_hostname] = ACTIONS(424), - [aux_sym_string_token1] = ACTIONS(469), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [121] = { - [sym_initializer] = STATE(1696), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2359), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [122] = { - [sym_initializer] = STATE(1723), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2444), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(928), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [123] = { - [sym_initializer] = STATE(1752), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2218), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(930), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_COLON] = ACTIONS(932), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [124] = { - [sym_initializer] = STATE(1709), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2162), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [125] = { - [sym_initializer] = STATE(1753), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2321), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [126] = { - [sym_initializer] = STATE(1764), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2376), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [127] = { - [sym_initializer] = STATE(1695), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2406), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [128] = { - [sym_initializer] = STATE(1719), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2473), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(942), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [129] = { - [sym_initializer] = STATE(1760), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2666), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(944), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [130] = { - [sym_initializer] = STATE(1701), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2604), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [131] = { - [sym_initializer] = STATE(1705), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2608), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [132] = { - [sym_initializer] = STATE(1726), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2613), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [133] = { - [sym_initializer] = STATE(1735), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2623), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [134] = { - [sym_initializer] = STATE(1745), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2762), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [135] = { - [sym_initializer] = STATE(1699), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2826), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [136] = { - [sym_initializer] = STATE(1727), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2289), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [137] = { - [sym_initializer] = STATE(1717), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2230), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [138] = { - [sym_initializer] = STATE(1728), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2263), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [139] = { - [sym_initializer] = STATE(1711), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2584), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [140] = { - [sym_initializer] = STATE(1712), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2587), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [141] = { - [sym_initializer] = STATE(1714), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2787), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [142] = { - [sym_initializer] = STATE(1715), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2795), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [143] = { - [sym_initializer] = STATE(1708), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2195), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [144] = { - [sym_initializer] = STATE(1710), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2200), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [145] = { - [sym_initializer] = STATE(1748), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2278), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [146] = { - [sym_initializer] = STATE(1751), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2280), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [147] = { - [sym_initializer] = STATE(1702), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2364), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [148] = { - [sym_initializer] = STATE(1703), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2367), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [149] = { - [sym_initializer] = STATE(1736), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2487), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [150] = { - [sym_initializer] = STATE(1737), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2497), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [151] = { - [sym_initializer] = STATE(1754), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2558), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [152] = { - [sym_initializer] = STATE(1755), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2560), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [153] = { - [sym_initializer] = STATE(1716), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2610), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [154] = { - [sym_initializer] = STATE(1718), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2614), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [155] = { - [sym_initializer] = STATE(1740), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2783), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [156] = { - [sym_initializer] = STATE(1743), - [sym_init_class] = STATE(928), - [sym_attr_list] = STATE(2820), - [sym_attr] = STATE(1632), - [sym_expr] = STATE(856), - [sym_constant] = STATE(341), - [sym_string_directive] = STATE(325), - [sym_integer] = STATE(291), - [sym_interval] = STATE(338), - [sym_string] = STATE(338), - [aux_sym_attr_list_repeat1] = STATE(1632), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(590), - [anon_sym_record] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_local] = ACTIONS(598), - [anon_sym_EQ] = ACTIONS(590), - [anon_sym_table] = ACTIONS(600), - [anon_sym_set] = ACTIONS(600), - [anon_sym_vector] = ACTIONS(602), - [anon_sym_function] = ACTIONS(604), - [anon_sym_hook] = ACTIONS(606), - [anon_sym_AMPdeprecated] = ACTIONS(608), - [anon_sym_DASH_EQ] = ACTIONS(590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(610), - [anon_sym_AMPerror_handler] = ACTIONS(610), - [anon_sym_AMPis_assigned] = ACTIONS(610), - [anon_sym_AMPis_used] = ACTIONS(610), - [anon_sym_AMPlog] = ACTIONS(610), - [anon_sym_AMPoptional] = ACTIONS(610), - [anon_sym_AMPraw_output] = ACTIONS(610), - [anon_sym_AMPredef] = ACTIONS(610), - [anon_sym_AMPadd_func] = ACTIONS(612), - [anon_sym_AMPbackend] = ACTIONS(612), - [anon_sym_AMPbroker_store] = ACTIONS(612), - [anon_sym_AMPcreate_expire] = ACTIONS(612), - [anon_sym_AMPdefault] = ACTIONS(612), - [anon_sym_AMPdelete_func] = ACTIONS(612), - [anon_sym_AMPexpire_func] = ACTIONS(612), - [anon_sym_AMPgroup] = ACTIONS(612), - [anon_sym_AMPon_change] = ACTIONS(612), - [anon_sym_AMPpriority] = ACTIONS(612), - [anon_sym_AMPread_expire] = ACTIONS(612), - [anon_sym_AMPtype_column] = ACTIONS(612), - [anon_sym_AMPwrite_expire] = ACTIONS(612), - [anon_sym_DOLLAR] = ACTIONS(614), - [anon_sym_PIPE] = ACTIONS(616), - [anon_sym_PLUS_PLUS] = ACTIONS(618), - [anon_sym_DASH_DASH] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_TILDE] = ACTIONS(618), - [anon_sym_DASH] = ACTIONS(620), - [anon_sym_PLUS] = ACTIONS(620), - [anon_sym_copy] = ACTIONS(622), - [anon_sym_schedule] = ACTIONS(624), - [aux_sym_constant_token1] = ACTIONS(626), - [anon_sym_T] = ACTIONS(628), - [anon_sym_F] = ACTIONS(628), - [anon_sym_ATDIR] = ACTIONS(630), - [anon_sym_ATFILENAME] = ACTIONS(630), - [sym_id] = ACTIONS(632), - [sym_pattern] = ACTIONS(634), - [sym_ipv6] = ACTIONS(636), - [sym_ipv4] = ACTIONS(636), - [sym_port] = ACTIONS(638), - [sym_floatp] = ACTIONS(640), - [sym_hex] = ACTIONS(628), - [sym_hostname] = ACTIONS(628), - [aux_sym_string_token1] = ACTIONS(642), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [157] = { - [sym_stmt] = STATE(475), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [105] = { + [sym_stmt] = STATE(523), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29512,70 +25124,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [158] = { - [sym_stmt] = STATE(667), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [106] = { + [sym_stmt] = STATE(525), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29589,70 +25203,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [159] = { - [sym_stmt] = STATE(669), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [107] = { + [sym_initializer] = STATE(1782), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2459), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(922), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [108] = { + [sym_stmt] = STATE(543), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29666,70 +25361,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [160] = { - [sym_stmt] = STATE(671), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [109] = { + [sym_stmt] = STATE(548), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29743,70 +25440,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [161] = { - [sym_stmt] = STATE(798), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [110] = { + [sym_stmt] = STATE(549), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29820,70 +25519,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [162] = { - [sym_stmt] = STATE(544), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [111] = { + [sym_stmt] = STATE(552), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29897,70 +25598,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [163] = { - [sym_stmt] = STATE(548), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [112] = { + [sym_stmt] = STATE(556), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -29974,70 +25677,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [164] = { - [sym_stmt] = STATE(549), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [113] = { + [sym_stmt] = STATE(561), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30051,70 +25756,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [165] = { - [sym_stmt] = STATE(551), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [114] = { + [sym_stmt] = STATE(564), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30128,70 +25835,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [166] = { - [sym_stmt] = STATE(553), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [115] = { + [sym_stmt] = STATE(768), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30205,70 +25914,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [167] = { - [sym_stmt] = STATE(555), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [116] = { + [sym_stmt] = STATE(583), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30282,70 +25993,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [168] = { - [sym_stmt] = STATE(557), - [sym_expr] = STATE(1496), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2403), - [sym_preproc_directive] = STATE(536), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(247), - [anon_sym_LBRACE] = ACTIONS(249), - [anon_sym_const] = ACTIONS(253), + [117] = { + [sym_stmt] = STATE(587), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(255), - [anon_sym_event] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(261), - [anon_sym_for] = ACTIONS(263), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(265), - [anon_sym_next] = ACTIONS(267), - [anon_sym_break] = ACTIONS(267), - [anon_sym_fallthrough] = ACTIONS(267), - [anon_sym_return] = ACTIONS(269), - [anon_sym_add] = ACTIONS(271), - [anon_sym_delete] = ACTIONS(271), - [anon_sym_local] = ACTIONS(273), - [anon_sym_when] = ACTIONS(275), - [anon_sym_assert] = ACTIONS(277), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30359,70 +26072,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(281), - [anon_sym_ATload] = ACTIONS(283), - [anon_sym_ATload_DASHsigs] = ACTIONS(285), - [anon_sym_ATload_DASHplugin] = ACTIONS(287), - [anon_sym_ATunload] = ACTIONS(285), - [anon_sym_ATprefixes] = ACTIONS(289), - [anon_sym_ATif] = ACTIONS(291), - [anon_sym_ATifdef] = ACTIONS(293), - [anon_sym_ATifndef] = ACTIONS(293), - [anon_sym_ATendif] = ACTIONS(295), - [anon_sym_ATelse] = ACTIONS(295), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [169] = { - [sym_stmt] = STATE(763), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [118] = { + [sym_stmt] = STATE(588), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30436,70 +26151,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [170] = { - [sym_stmt] = STATE(570), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [119] = { + [sym_stmt] = STATE(590), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30513,70 +26230,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [171] = { - [sym_stmt] = STATE(574), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [120] = { + [sym_stmt] = STATE(596), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30590,70 +26309,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [172] = { - [sym_stmt] = STATE(575), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [121] = { + [sym_stmt] = STATE(598), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30667,70 +26388,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [173] = { - [sym_stmt] = STATE(577), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [122] = { + [sym_stmt] = STATE(612), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30744,70 +26467,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [174] = { - [sym_stmt] = STATE(579), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [123] = { + [sym_initializer] = STATE(1725), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2444), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1022), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [124] = { + [sym_stmt] = STATE(438), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30821,70 +26625,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [175] = { - [sym_stmt] = STATE(581), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [125] = { + [sym_stmt] = STATE(442), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30898,70 +26704,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [176] = { - [sym_stmt] = STATE(501), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [126] = { + [sym_stmt] = STATE(443), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -30975,70 +26783,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [177] = { - [sym_stmt] = STATE(658), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [127] = { + [sym_stmt] = STATE(445), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31052,70 +26862,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [178] = { - [sym_stmt] = STATE(605), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [128] = { + [sym_stmt] = STATE(447), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31129,70 +26941,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [179] = { - [sym_stmt] = STATE(609), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [129] = { + [sym_stmt] = STATE(449), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31206,70 +27020,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [180] = { - [sym_stmt] = STATE(610), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [130] = { + [sym_stmt] = STATE(451), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31283,70 +27099,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [181] = { - [sym_stmt] = STATE(612), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [131] = { + [sym_stmt] = STATE(805), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31360,70 +27178,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [182] = { - [sym_stmt] = STATE(502), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [132] = { + [sym_stmt] = STATE(464), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31437,70 +27257,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [183] = { - [sym_stmt] = STATE(504), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [133] = { + [sym_stmt] = STATE(468), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31514,70 +27336,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [184] = { - [sym_stmt] = STATE(506), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [134] = { + [sym_stmt] = STATE(469), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31591,70 +27415,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [185] = { - [sym_stmt] = STATE(435), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [135] = { + [sym_stmt] = STATE(506), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31668,70 +27494,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [186] = { - [sym_stmt] = STATE(461), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [136] = { + [sym_stmt] = STATE(473), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31745,70 +27573,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [187] = { - [sym_stmt] = STATE(463), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [137] = { + [sym_stmt] = STATE(475), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31822,70 +27652,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [188] = { - [sym_stmt] = STATE(433), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [138] = { + [sym_stmt] = STATE(477), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31899,70 +27731,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [189] = { - [sym_stmt] = STATE(446), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [139] = { + [sym_stmt] = STATE(424), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -31976,70 +27810,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [190] = { - [sym_stmt] = STATE(450), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [140] = { + [sym_stmt] = STATE(390), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32053,70 +27889,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [191] = { - [sym_stmt] = STATE(454), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [141] = { + [sym_stmt] = STATE(392), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32130,70 +27968,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [192] = { - [sym_stmt] = STATE(449), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [142] = { + [sym_stmt] = STATE(395), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32207,70 +28047,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [193] = { - [sym_stmt] = STATE(466), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [143] = { + [sym_stmt] = STATE(399), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32284,70 +28126,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [194] = { - [sym_stmt] = STATE(500), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [144] = { + [sym_stmt] = STATE(401), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32361,70 +28205,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [195] = { - [sym_stmt] = STATE(480), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [145] = { + [sym_stmt] = STATE(387), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32438,70 +28284,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [196] = { - [sym_stmt] = STATE(484), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [146] = { + [sym_stmt] = STATE(809), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -32515,609 +28363,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [197] = { - [sym_stmt] = STATE(486), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [147] = { + [sym_initializer] = STATE(1722), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2553), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1168), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [198] = { - [sym_stmt] = STATE(489), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [148] = { + [sym_initializer] = STATE(1723), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2555), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1174), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [199] = { - [sym_stmt] = STATE(404), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [149] = { + [sym_initializer] = STATE(1724), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2557), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1176), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1178), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [200] = { - [sym_stmt] = STATE(409), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [150] = { + [sym_initializer] = STATE(1728), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2570), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1180), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1182), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [201] = { - [sym_stmt] = STATE(410), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [151] = { + [sym_initializer] = STATE(1737), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2213), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1188), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [202] = { - [sym_stmt] = STATE(415), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [152] = { + [sym_initializer] = STATE(1736), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2594), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1192), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [203] = { - [sym_stmt] = STATE(418), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [153] = { + [sym_initializer] = STATE(1743), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2618), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [204] = { - [sym_stmt] = STATE(420), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [154] = { + [sym_stmt] = STATE(693), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33131,70 +28995,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [205] = { - [sym_stmt] = STATE(394), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [155] = { + [sym_stmt] = STATE(694), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33208,70 +29074,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [206] = { - [sym_stmt] = STATE(711), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [156] = { + [sym_stmt] = STATE(697), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33285,70 +29153,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [207] = { - [sym_stmt] = STATE(789), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [157] = { + [sym_stmt] = STATE(699), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33362,70 +29232,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [208] = { - [sym_stmt] = STATE(676), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [158] = { + [sym_initializer] = STATE(1744), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2759), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1246), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1248), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [159] = { + [sym_initializer] = STATE(1741), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2876), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1252), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [160] = { + [sym_stmt] = STATE(593), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33439,70 +29469,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [209] = { - [sym_stmt] = STATE(686), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [161] = { + [sym_stmt] = STATE(595), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33516,70 +29548,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [210] = { - [sym_stmt] = STATE(632), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [162] = { + [sym_stmt] = STATE(614), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33593,70 +29627,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [211] = { - [sym_stmt] = STATE(687), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [163] = { + [sym_stmt] = STATE(617), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33670,70 +29706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [212] = { - [sym_stmt] = STATE(637), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [164] = { + [sym_stmt] = STATE(624), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33747,70 +29785,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [213] = { - [sym_stmt] = STATE(752), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [165] = { + [sym_stmt] = STATE(815), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33824,70 +29864,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [214] = { - [sym_stmt] = STATE(663), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [166] = { + [sym_stmt] = STATE(788), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33901,70 +29943,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [215] = { - [sym_stmt] = STATE(697), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [167] = { + [sym_initializer] = STATE(1739), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2203), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [168] = { + [sym_initializer] = STATE(1761), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2249), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1308), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [169] = { + [sym_stmt] = STATE(679), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -33978,70 +30180,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [216] = { - [sym_stmt] = STATE(684), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [170] = { + [sym_stmt] = STATE(573), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34055,70 +30259,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [217] = { - [sym_stmt] = STATE(700), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [171] = { + [sym_stmt] = STATE(591), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34132,70 +30338,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [218] = { - [sym_stmt] = STATE(777), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [172] = { + [sym_stmt] = STATE(594), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34209,70 +30417,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [219] = { - [sym_stmt] = STATE(512), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [173] = { + [sym_stmt] = STATE(770), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34286,70 +30496,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [220] = { - [sym_stmt] = STATE(703), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [174] = { + [sym_stmt] = STATE(771), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34363,70 +30575,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [221] = { - [sym_stmt] = STATE(513), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [175] = { + [sym_stmt] = STATE(650), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34440,70 +30654,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [222] = { - [sym_stmt] = STATE(753), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [176] = { + [sym_initializer] = STATE(1776), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2302), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1312), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [177] = { + [sym_initializer] = STATE(1720), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2823), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1316), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [178] = { + [sym_stmt] = STATE(511), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34517,70 +30891,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [223] = { - [sym_stmt] = STATE(514), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [179] = { + [sym_stmt] = STATE(493), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34594,70 +30970,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [224] = { - [sym_stmt] = STATE(516), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [180] = { + [sym_stmt] = STATE(500), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34671,70 +31049,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [225] = { - [sym_stmt] = STATE(804), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [181] = { + [sym_stmt] = STATE(504), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34748,70 +31128,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [226] = { - [sym_stmt] = STATE(695), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [182] = { + [sym_stmt] = STATE(777), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34825,70 +31207,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [227] = { - [sym_stmt] = STATE(651), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [183] = { + [sym_initializer] = STATE(1762), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2285), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [184] = { + [sym_stmt] = STATE(779), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34902,70 +31365,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [228] = { - [sym_stmt] = STATE(722), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [185] = { + [sym_initializer] = STATE(1756), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2848), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1324), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [186] = { + [sym_initializer] = STATE(1755), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2588), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [187] = { + [sym_stmt] = STATE(492), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -34979,70 +31602,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [229] = { - [sym_stmt] = STATE(521), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [188] = { + [sym_stmt] = STATE(396), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35056,70 +31681,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [230] = { - [sym_stmt] = STATE(736), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [189] = { + [sym_stmt] = STATE(398), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35133,70 +31760,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [231] = { - [sym_stmt] = STATE(522), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [190] = { + [sym_stmt] = STATE(408), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35210,70 +31839,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [232] = { - [sym_stmt] = STATE(665), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [191] = { + [sym_stmt] = STATE(781), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35287,70 +31918,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [233] = { - [sym_stmt] = STATE(775), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [192] = { + [sym_stmt] = STATE(783), + [sym_expr] = STATE(1551), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2273), + [sym_preproc_directive] = STATE(798), + [sym_pragma] = STATE(795), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(260), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_const] = ACTIONS(266), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(268), + [anon_sym_event] = ACTIONS(270), + [anon_sym_if] = ACTIONS(272), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(274), + [anon_sym_for] = ACTIONS(276), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(278), + [anon_sym_next] = ACTIONS(280), + [anon_sym_break] = ACTIONS(280), + [anon_sym_fallthrough] = ACTIONS(280), + [anon_sym_return] = ACTIONS(282), + [anon_sym_add] = ACTIONS(284), + [anon_sym_delete] = ACTIONS(284), + [anon_sym_local] = ACTIONS(286), + [anon_sym_when] = ACTIONS(288), + [anon_sym_assert] = ACTIONS(290), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATdeprecated] = ACTIONS(292), + [anon_sym_ATload] = ACTIONS(294), + [anon_sym_ATload_DASHsigs] = ACTIONS(296), + [anon_sym_ATload_DASHplugin] = ACTIONS(298), + [anon_sym_ATunload] = ACTIONS(296), + [anon_sym_ATprefixes] = ACTIONS(300), + [anon_sym_ATif] = ACTIONS(302), + [anon_sym_ATifdef] = ACTIONS(304), + [anon_sym_ATifndef] = ACTIONS(304), + [anon_sym_ATendif] = ACTIONS(306), + [anon_sym_ATelse] = ACTIONS(306), + [anon_sym_ATpragma] = ACTIONS(308), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [193] = { + [sym_initializer] = STATE(1778), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2246), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1332), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [194] = { + [sym_initializer] = STATE(1779), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2596), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [195] = { + [sym_initializer] = STATE(1760), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2696), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [196] = { + [sym_stmt] = STATE(558), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), + [anon_sym_record] = ACTIONS(25), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35364,70 +32313,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [234] = { - [sym_stmt] = STATE(520), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [197] = { + [sym_stmt] = STATE(786), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(29), + [anon_sym_event] = ACTIONS(726), + [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(37), + [anon_sym_for] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(43), + [anon_sym_next] = ACTIONS(45), + [anon_sym_break] = ACTIONS(45), + [anon_sym_fallthrough] = ACTIONS(45), + [anon_sym_return] = ACTIONS(47), + [anon_sym_add] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(49), + [anon_sym_local] = ACTIONS(51), + [anon_sym_when] = ACTIONS(53), + [anon_sym_assert] = ACTIONS(55), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35441,70 +32392,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [235] = { - [sym_stmt] = STATE(737), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), + [198] = { + [sym_stmt] = STATE(721), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35518,70 +32471,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [236] = { - [sym_stmt] = STATE(437), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [199] = { + [sym_stmt] = STATE(756), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35595,70 +32550,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [237] = { - [sym_stmt] = STATE(739), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), + [200] = { + [sym_stmt] = STATE(757), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35672,224 +32629,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [238] = { - [sym_stmt] = STATE(457), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [201] = { + [sym_initializer] = STATE(1765), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2231), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1344), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [239] = { - [sym_stmt] = STATE(462), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [202] = { + [sym_initializer] = STATE(1786), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2239), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1348), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [240] = { - [sym_stmt] = STATE(795), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [203] = { + [sym_stmt] = STATE(559), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35903,70 +32866,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [241] = { - [sym_stmt] = STATE(784), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [204] = { + [sym_stmt] = STATE(760), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), - [anon_sym_if] = ACTIONS(33), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(37), - [anon_sym_for] = ACTIONS(39), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_next] = ACTIONS(45), - [anon_sym_break] = ACTIONS(45), - [anon_sym_fallthrough] = ACTIONS(45), - [anon_sym_return] = ACTIONS(47), - [anon_sym_add] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(49), - [anon_sym_local] = ACTIONS(51), - [anon_sym_when] = ACTIONS(53), - [anon_sym_assert] = ACTIONS(55), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -35980,70 +32945,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [242] = { - [sym_stmt] = STATE(497), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [205] = { + [sym_stmt] = STATE(724), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36057,70 +33024,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [243] = { - [sym_stmt] = STATE(741), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), + [206] = { + [sym_stmt] = STATE(637), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36134,70 +33103,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [244] = { - [sym_stmt] = STATE(413), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [207] = { + [sym_stmt] = STATE(759), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36211,224 +33182,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [245] = { - [sym_stmt] = STATE(743), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [208] = { + [sym_initializer] = STATE(1770), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2382), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [246] = { - [sym_stmt] = STATE(399), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [209] = { + [sym_initializer] = STATE(1729), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2402), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [247] = { - [sym_stmt] = STATE(389), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [210] = { + [sym_stmt] = STATE(491), + [sym_expr] = STATE(1425), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2496), + [sym_preproc_directive] = STATE(496), + [sym_pragma] = STATE(479), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_const] = ACTIONS(1028), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(1030), + [anon_sym_event] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1034), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1036), + [anon_sym_for] = ACTIONS(1038), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1040), + [anon_sym_next] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_fallthrough] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1044), + [anon_sym_add] = ACTIONS(1046), + [anon_sym_delete] = ACTIONS(1046), + [anon_sym_local] = ACTIONS(1048), + [anon_sym_when] = ACTIONS(1050), + [anon_sym_assert] = ACTIONS(1052), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36442,50 +33419,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1054), + [anon_sym_ATload] = ACTIONS(1056), + [anon_sym_ATload_DASHsigs] = ACTIONS(1058), + [anon_sym_ATload_DASHplugin] = ACTIONS(1060), + [anon_sym_ATunload] = ACTIONS(1058), + [anon_sym_ATprefixes] = ACTIONS(1062), + [anon_sym_ATif] = ACTIONS(1064), + [anon_sym_ATifdef] = ACTIONS(1066), + [anon_sym_ATifndef] = ACTIONS(1066), + [anon_sym_ATendif] = ACTIONS(1068), + [anon_sym_ATelse] = ACTIONS(1068), + [anon_sym_ATpragma] = ACTIONS(1070), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [248] = { - [sym_stmt] = STATE(754), - [sym_expr] = STATE(1528), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2186), - [sym_preproc_directive] = STATE(785), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), + [211] = { + [sym_initializer] = STATE(1784), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2300), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [212] = { + [sym_stmt] = STATE(811), + [sym_expr] = STATE(1405), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2670), + [sym_preproc_directive] = STATE(801), + [sym_pragma] = STATE(785), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(674), + [anon_sym_const] = ACTIONS(724), [anon_sym_record] = ACTIONS(25), [anon_sym_print] = ACTIONS(29), - [anon_sym_event] = ACTIONS(676), + [anon_sym_event] = ACTIONS(726), [anon_sym_if] = ACTIONS(33), [anon_sym_LPAREN] = ACTIONS(35), [anon_sym_switch] = ACTIONS(37), @@ -36504,8 +33562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36519,70 +33577,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(678), - [anon_sym_ATload] = ACTIONS(680), - [anon_sym_ATload_DASHsigs] = ACTIONS(682), - [anon_sym_ATload_DASHplugin] = ACTIONS(684), - [anon_sym_ATunload] = ACTIONS(682), - [anon_sym_ATprefixes] = ACTIONS(686), - [anon_sym_ATif] = ACTIONS(688), - [anon_sym_ATifdef] = ACTIONS(690), - [anon_sym_ATifndef] = ACTIONS(690), - [anon_sym_ATendif] = ACTIONS(692), - [anon_sym_ATelse] = ACTIONS(692), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(728), + [anon_sym_ATload] = ACTIONS(730), + [anon_sym_ATload_DASHsigs] = ACTIONS(732), + [anon_sym_ATload_DASHplugin] = ACTIONS(734), + [anon_sym_ATunload] = ACTIONS(732), + [anon_sym_ATprefixes] = ACTIONS(736), + [anon_sym_ATif] = ACTIONS(738), + [anon_sym_ATifdef] = ACTIONS(740), + [anon_sym_ATifndef] = ACTIONS(740), + [anon_sym_ATendif] = ACTIONS(742), + [anon_sym_ATelse] = ACTIONS(742), + [anon_sym_ATpragma] = ACTIONS(744), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [249] = { - [sym_stmt] = STATE(531), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [213] = { + [sym_stmt] = STATE(753), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36596,70 +33656,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [250] = { - [sym_stmt] = STATE(746), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [214] = { + [sym_stmt] = STATE(646), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36673,70 +33735,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [251] = { - [sym_stmt] = STATE(624), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [215] = { + [sym_initializer] = STATE(1719), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2623), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [216] = { + [sym_initializer] = STATE(1716), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2634), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [217] = { + [sym_stmt] = STATE(394), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36750,70 +33972,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [252] = { - [sym_stmt] = STATE(532), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [218] = { + [sym_stmt] = STATE(648), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36827,70 +34051,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [253] = { - [sym_stmt] = STATE(628), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [219] = { + [sym_stmt] = STATE(663), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36904,70 +34130,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [254] = { - [sym_stmt] = STATE(629), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [220] = { + [sym_stmt] = STATE(669), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -36981,70 +34209,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [255] = { - [sym_stmt] = STATE(460), - [sym_expr] = STATE(1550), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2448), - [sym_preproc_directive] = STATE(472), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_const] = ACTIONS(1234), + [221] = { + [sym_stmt] = STATE(671), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1236), - [anon_sym_event] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1240), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1244), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_next] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1248), - [anon_sym_fallthrough] = ACTIONS(1248), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_add] = ACTIONS(1252), - [anon_sym_delete] = ACTIONS(1252), - [anon_sym_local] = ACTIONS(1254), - [anon_sym_when] = ACTIONS(1256), - [anon_sym_assert] = ACTIONS(1258), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37058,70 +34288,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1260), - [anon_sym_ATload] = ACTIONS(1262), - [anon_sym_ATload_DASHsigs] = ACTIONS(1264), - [anon_sym_ATload_DASHplugin] = ACTIONS(1266), - [anon_sym_ATunload] = ACTIONS(1264), - [anon_sym_ATprefixes] = ACTIONS(1268), - [anon_sym_ATif] = ACTIONS(1270), - [anon_sym_ATifdef] = ACTIONS(1272), - [anon_sym_ATifndef] = ACTIONS(1272), - [anon_sym_ATendif] = ACTIONS(1274), - [anon_sym_ATelse] = ACTIONS(1274), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [256] = { - [sym_stmt] = STATE(631), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [222] = { + [sym_initializer] = STATE(1763), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2829), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1372), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [223] = { + [sym_initializer] = STATE(1766), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2240), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [224] = { + [sym_stmt] = STATE(420), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37135,70 +34525,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [257] = { - [sym_stmt] = STATE(634), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [225] = { + [sym_stmt] = STATE(677), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37212,70 +34604,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [258] = { - [sym_stmt] = STATE(412), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [226] = { + [sym_stmt] = STATE(652), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37289,70 +34683,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [259] = { - [sym_stmt] = STATE(636), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [227] = { + [sym_stmt] = STATE(715), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37366,70 +34762,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [260] = { - [sym_stmt] = STATE(639), - [sym_expr] = STATE(1462), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2363), - [sym_preproc_directive] = STATE(690), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1372), + [228] = { + [sym_stmt] = STATE(743), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1374), - [anon_sym_event] = ACTIONS(1376), - [anon_sym_if] = ACTIONS(1378), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1380), - [anon_sym_for] = ACTIONS(1382), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1384), - [anon_sym_next] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_fallthrough] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1388), - [anon_sym_add] = ACTIONS(1390), - [anon_sym_delete] = ACTIONS(1390), - [anon_sym_local] = ACTIONS(1392), - [anon_sym_when] = ACTIONS(1394), - [anon_sym_assert] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37443,224 +34841,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1398), - [anon_sym_ATload] = ACTIONS(1400), - [anon_sym_ATload_DASHsigs] = ACTIONS(1402), - [anon_sym_ATload_DASHplugin] = ACTIONS(1404), - [anon_sym_ATunload] = ACTIONS(1402), - [anon_sym_ATprefixes] = ACTIONS(1406), - [anon_sym_ATif] = ACTIONS(1408), - [anon_sym_ATifdef] = ACTIONS(1410), - [anon_sym_ATifndef] = ACTIONS(1410), - [anon_sym_ATendif] = ACTIONS(1412), - [anon_sym_ATelse] = ACTIONS(1412), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [261] = { - [sym_stmt] = STATE(793), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [229] = { + [sym_initializer] = STATE(1750), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2313), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(1184), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [262] = { - [sym_stmt] = STATE(417), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [230] = { + [sym_initializer] = STATE(1783), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2468), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(1384), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [263] = { - [sym_stmt] = STATE(693), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [231] = { + [sym_stmt] = STATE(744), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37674,70 +35078,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [264] = { - [sym_stmt] = STATE(656), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [232] = { + [sym_stmt] = STATE(751), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37751,70 +35157,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [265] = { - [sym_stmt] = STATE(755), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [233] = { + [sym_stmt] = STATE(762), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37828,70 +35236,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [266] = { - [sym_stmt] = STATE(661), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [234] = { + [sym_stmt] = STATE(764), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37905,70 +35315,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [267] = { - [sym_stmt] = STATE(614), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [235] = { + [sym_stmt] = STATE(675), + [sym_expr] = STATE(1341), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2368), + [sym_preproc_directive] = STATE(706), + [sym_pragma] = STATE(683), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1256), + [anon_sym_const] = ACTIONS(1258), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(1260), + [anon_sym_event] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1264), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(1266), + [anon_sym_for] = ACTIONS(1268), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_next] = ACTIONS(1272), + [anon_sym_break] = ACTIONS(1272), + [anon_sym_fallthrough] = ACTIONS(1272), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_add] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1276), + [anon_sym_local] = ACTIONS(1278), + [anon_sym_when] = ACTIONS(1280), + [anon_sym_assert] = ACTIONS(1282), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -37982,70 +35394,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1284), + [anon_sym_ATload] = ACTIONS(1286), + [anon_sym_ATload_DASHsigs] = ACTIONS(1288), + [anon_sym_ATload_DASHplugin] = ACTIONS(1290), + [anon_sym_ATunload] = ACTIONS(1288), + [anon_sym_ATprefixes] = ACTIONS(1292), + [anon_sym_ATif] = ACTIONS(1294), + [anon_sym_ATifdef] = ACTIONS(1296), + [anon_sym_ATifndef] = ACTIONS(1296), + [anon_sym_ATendif] = ACTIONS(1298), + [anon_sym_ATelse] = ACTIONS(1298), + [anon_sym_ATpragma] = ACTIONS(1300), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [268] = { - [sym_stmt] = STATE(770), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [236] = { + [sym_stmt] = STATE(739), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38059,70 +35473,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [269] = { - [sym_stmt] = STATE(647), - [sym_expr] = STATE(1396), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2320), - [sym_preproc_directive] = STATE(728), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_const] = ACTIONS(1326), + [237] = { + [sym_stmt] = STATE(740), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1328), - [anon_sym_event] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1332), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1336), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_next] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_fallthrough] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_add] = ACTIONS(1344), - [anon_sym_delete] = ACTIONS(1344), - [anon_sym_local] = ACTIONS(1346), - [anon_sym_when] = ACTIONS(1348), - [anon_sym_assert] = ACTIONS(1350), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38136,70 +35552,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1352), - [anon_sym_ATload] = ACTIONS(1354), - [anon_sym_ATload_DASHsigs] = ACTIONS(1356), - [anon_sym_ATload_DASHplugin] = ACTIONS(1358), - [anon_sym_ATunload] = ACTIONS(1356), - [anon_sym_ATprefixes] = ACTIONS(1360), - [anon_sym_ATif] = ACTIONS(1362), - [anon_sym_ATifdef] = ACTIONS(1364), - [anon_sym_ATifndef] = ACTIONS(1364), - [anon_sym_ATendif] = ACTIONS(1366), - [anon_sym_ATelse] = ACTIONS(1366), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [270] = { - [sym_stmt] = STATE(729), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [238] = { + [sym_stmt] = STATE(741), + [sym_expr] = STATE(1378), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2431), + [sym_preproc_directive] = STATE(632), + [sym_pragma] = STATE(718), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(814), + [anon_sym_const] = ACTIONS(816), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(818), + [anon_sym_event] = ACTIONS(820), + [anon_sym_if] = ACTIONS(822), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(824), + [anon_sym_for] = ACTIONS(826), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(828), + [anon_sym_next] = ACTIONS(830), + [anon_sym_break] = ACTIONS(830), + [anon_sym_fallthrough] = ACTIONS(830), + [anon_sym_return] = ACTIONS(832), + [anon_sym_add] = ACTIONS(834), + [anon_sym_delete] = ACTIONS(834), + [anon_sym_local] = ACTIONS(836), + [anon_sym_when] = ACTIONS(838), + [anon_sym_assert] = ACTIONS(840), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38213,70 +35631,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(842), + [anon_sym_ATload] = ACTIONS(844), + [anon_sym_ATload_DASHsigs] = ACTIONS(846), + [anon_sym_ATload_DASHplugin] = ACTIONS(848), + [anon_sym_ATunload] = ACTIONS(846), + [anon_sym_ATprefixes] = ACTIONS(850), + [anon_sym_ATif] = ACTIONS(852), + [anon_sym_ATifdef] = ACTIONS(854), + [anon_sym_ATifndef] = ACTIONS(854), + [anon_sym_ATendif] = ACTIONS(856), + [anon_sym_ATelse] = ACTIONS(856), + [anon_sym_ATpragma] = ACTIONS(858), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [271] = { - [sym_stmt] = STATE(730), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [239] = { + [sym_stmt] = STATE(601), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38290,70 +35710,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [272] = { - [sym_stmt] = STATE(731), - [sym_expr] = STATE(1482), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2383), - [sym_preproc_directive] = STATE(645), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [240] = { + [sym_stmt] = STATE(602), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1052), - [anon_sym_event] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1056), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_next] = ACTIONS(1064), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_fallthrough] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1066), - [anon_sym_add] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_local] = ACTIONS(1070), - [anon_sym_when] = ACTIONS(1072), - [anon_sym_assert] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38367,70 +35789,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1076), - [anon_sym_ATload] = ACTIONS(1078), - [anon_sym_ATload_DASHsigs] = ACTIONS(1080), - [anon_sym_ATload_DASHplugin] = ACTIONS(1082), - [anon_sym_ATunload] = ACTIONS(1080), - [anon_sym_ATprefixes] = ACTIONS(1084), - [anon_sym_ATif] = ACTIONS(1086), - [anon_sym_ATifdef] = ACTIONS(1088), - [anon_sym_ATifndef] = ACTIONS(1088), - [anon_sym_ATendif] = ACTIONS(1090), - [anon_sym_ATelse] = ACTIONS(1090), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [273] = { - [sym_stmt] = STATE(588), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [241] = { + [sym_stmt] = STATE(603), + [sym_expr] = STATE(1399), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2466), + [sym_preproc_directive] = STATE(531), + [sym_pragma] = STATE(616), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(924), + [anon_sym_LBRACE] = ACTIONS(926), + [anon_sym_const] = ACTIONS(928), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(930), + [anon_sym_event] = ACTIONS(932), + [anon_sym_if] = ACTIONS(934), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(936), + [anon_sym_for] = ACTIONS(938), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(940), + [anon_sym_next] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_fallthrough] = ACTIONS(942), + [anon_sym_return] = ACTIONS(944), + [anon_sym_add] = ACTIONS(946), + [anon_sym_delete] = ACTIONS(946), + [anon_sym_local] = ACTIONS(948), + [anon_sym_when] = ACTIONS(950), + [anon_sym_assert] = ACTIONS(952), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38444,70 +35868,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(954), + [anon_sym_ATload] = ACTIONS(956), + [anon_sym_ATload_DASHsigs] = ACTIONS(958), + [anon_sym_ATload_DASHplugin] = ACTIONS(960), + [anon_sym_ATunload] = ACTIONS(958), + [anon_sym_ATprefixes] = ACTIONS(962), + [anon_sym_ATif] = ACTIONS(964), + [anon_sym_ATifdef] = ACTIONS(966), + [anon_sym_ATifndef] = ACTIONS(966), + [anon_sym_ATendif] = ACTIONS(968), + [anon_sym_ATelse] = ACTIONS(968), + [anon_sym_ATpragma] = ACTIONS(970), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [274] = { - [sym_stmt] = STATE(589), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [242] = { + [sym_stmt] = STATE(604), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38521,70 +35947,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [275] = { - [sym_stmt] = STATE(590), - [sym_expr] = STATE(1508), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2418), - [sym_preproc_directive] = STATE(562), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1092), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_const] = ACTIONS(1096), + [243] = { + [sym_stmt] = STATE(605), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1098), - [anon_sym_event] = ACTIONS(1100), - [anon_sym_if] = ACTIONS(1102), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1104), - [anon_sym_for] = ACTIONS(1106), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1108), - [anon_sym_next] = ACTIONS(1110), - [anon_sym_break] = ACTIONS(1110), - [anon_sym_fallthrough] = ACTIONS(1110), - [anon_sym_return] = ACTIONS(1112), - [anon_sym_add] = ACTIONS(1114), - [anon_sym_delete] = ACTIONS(1114), - [anon_sym_local] = ACTIONS(1116), - [anon_sym_when] = ACTIONS(1118), - [anon_sym_assert] = ACTIONS(1120), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38598,70 +36026,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1122), - [anon_sym_ATload] = ACTIONS(1124), - [anon_sym_ATload_DASHsigs] = ACTIONS(1126), - [anon_sym_ATload_DASHplugin] = ACTIONS(1128), - [anon_sym_ATunload] = ACTIONS(1126), - [anon_sym_ATprefixes] = ACTIONS(1130), - [anon_sym_ATif] = ACTIONS(1132), - [anon_sym_ATifdef] = ACTIONS(1134), - [anon_sym_ATifndef] = ACTIONS(1134), - [anon_sym_ATendif] = ACTIONS(1136), - [anon_sym_ATelse] = ACTIONS(1136), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [276] = { - [sym_stmt] = STATE(591), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [244] = { + [sym_stmt] = STATE(606), + [sym_expr] = STATE(1412), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2481), + [sym_preproc_directive] = STATE(571), + [sym_pragma] = STATE(535), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_const] = ACTIONS(976), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(978), + [anon_sym_event] = ACTIONS(980), + [anon_sym_if] = ACTIONS(982), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(984), + [anon_sym_for] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(988), + [anon_sym_next] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_fallthrough] = ACTIONS(990), + [anon_sym_return] = ACTIONS(992), + [anon_sym_add] = ACTIONS(994), + [anon_sym_delete] = ACTIONS(994), + [anon_sym_local] = ACTIONS(996), + [anon_sym_when] = ACTIONS(998), + [anon_sym_assert] = ACTIONS(1000), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38675,70 +36105,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1002), + [anon_sym_ATload] = ACTIONS(1004), + [anon_sym_ATload_DASHsigs] = ACTIONS(1006), + [anon_sym_ATload_DASHplugin] = ACTIONS(1008), + [anon_sym_ATunload] = ACTIONS(1006), + [anon_sym_ATprefixes] = ACTIONS(1010), + [anon_sym_ATif] = ACTIONS(1012), + [anon_sym_ATifdef] = ACTIONS(1014), + [anon_sym_ATifndef] = ACTIONS(1014), + [anon_sym_ATendif] = ACTIONS(1016), + [anon_sym_ATelse] = ACTIONS(1016), + [anon_sym_ATpragma] = ACTIONS(1018), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [277] = { - [sym_stmt] = STATE(592), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [245] = { + [sym_stmt] = STATE(497), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38752,70 +36184,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [278] = { - [sym_stmt] = STATE(593), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), + [246] = { + [sym_stmt] = STATE(498), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38829,70 +36263,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [279] = { - [sym_stmt] = STATE(474), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [247] = { + [sym_stmt] = STATE(499), + [sym_expr] = STATE(1436), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2511), + [sym_preproc_directive] = STATE(456), + [sym_pragma] = STATE(486), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1076), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1078), + [anon_sym_event] = ACTIONS(1080), + [anon_sym_if] = ACTIONS(1082), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1086), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1088), + [anon_sym_next] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_fallthrough] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_add] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_local] = ACTIONS(1096), + [anon_sym_when] = ACTIONS(1098), + [anon_sym_assert] = ACTIONS(1100), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38906,70 +36342,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1102), + [anon_sym_ATload] = ACTIONS(1104), + [anon_sym_ATload_DASHsigs] = ACTIONS(1106), + [anon_sym_ATload_DASHplugin] = ACTIONS(1108), + [anon_sym_ATunload] = ACTIONS(1106), + [anon_sym_ATprefixes] = ACTIONS(1110), + [anon_sym_ATif] = ACTIONS(1112), + [anon_sym_ATifdef] = ACTIONS(1114), + [anon_sym_ATifndef] = ACTIONS(1114), + [anon_sym_ATendif] = ACTIONS(1116), + [anon_sym_ATelse] = ACTIONS(1116), + [anon_sym_ATpragma] = ACTIONS(1118), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [280] = { - [sym_stmt] = STATE(803), - [sym_expr] = STATE(1471), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2226), - [sym_preproc_directive] = STATE(787), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(199), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_const] = ACTIONS(205), + [248] = { + [sym_stmt] = STATE(421), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(207), - [anon_sym_event] = ACTIONS(209), - [anon_sym_if] = ACTIONS(211), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(217), - [anon_sym_next] = ACTIONS(219), - [anon_sym_break] = ACTIONS(219), - [anon_sym_fallthrough] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_add] = ACTIONS(223), - [anon_sym_delete] = ACTIONS(223), - [anon_sym_local] = ACTIONS(225), - [anon_sym_when] = ACTIONS(227), - [anon_sym_assert] = ACTIONS(229), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -38983,70 +36421,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(231), - [anon_sym_ATload] = ACTIONS(233), - [anon_sym_ATload_DASHsigs] = ACTIONS(235), - [anon_sym_ATload_DASHplugin] = ACTIONS(237), - [anon_sym_ATunload] = ACTIONS(235), - [anon_sym_ATprefixes] = ACTIONS(239), - [anon_sym_ATif] = ACTIONS(241), - [anon_sym_ATifdef] = ACTIONS(243), - [anon_sym_ATifndef] = ACTIONS(243), - [anon_sym_ATendif] = ACTIONS(245), - [anon_sym_ATelse] = ACTIONS(245), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [281] = { - [sym_stmt] = STATE(476), - [sym_expr] = STATE(1411), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2463), - [sym_preproc_directive] = STATE(429), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_const] = ACTIONS(1004), + [249] = { + [sym_stmt] = STATE(422), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1006), - [anon_sym_event] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1010), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1014), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_next] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_fallthrough] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1020), - [anon_sym_add] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_local] = ACTIONS(1024), - [anon_sym_when] = ACTIONS(1026), - [anon_sym_assert] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39060,70 +36500,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1030), - [anon_sym_ATload] = ACTIONS(1032), - [anon_sym_ATload_DASHsigs] = ACTIONS(1034), - [anon_sym_ATload_DASHplugin] = ACTIONS(1036), - [anon_sym_ATunload] = ACTIONS(1034), - [anon_sym_ATprefixes] = ACTIONS(1038), - [anon_sym_ATif] = ACTIONS(1040), - [anon_sym_ATifdef] = ACTIONS(1042), - [anon_sym_ATifndef] = ACTIONS(1042), - [anon_sym_ATendif] = ACTIONS(1044), - [anon_sym_ATelse] = ACTIONS(1044), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [282] = { - [sym_stmt] = STATE(421), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [250] = { + [sym_stmt] = STATE(423), + [sym_expr] = STATE(1448), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2526), + [sym_preproc_directive] = STATE(426), + [sym_pragma] = STATE(411), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1120), + [anon_sym_LBRACE] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1124), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(1126), + [anon_sym_event] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1130), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(1132), + [anon_sym_for] = ACTIONS(1134), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1136), + [anon_sym_next] = ACTIONS(1138), + [anon_sym_break] = ACTIONS(1138), + [anon_sym_fallthrough] = ACTIONS(1138), + [anon_sym_return] = ACTIONS(1140), + [anon_sym_add] = ACTIONS(1142), + [anon_sym_delete] = ACTIONS(1142), + [anon_sym_local] = ACTIONS(1144), + [anon_sym_when] = ACTIONS(1146), + [anon_sym_assert] = ACTIONS(1148), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39137,70 +36579,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1150), + [anon_sym_ATload] = ACTIONS(1152), + [anon_sym_ATload_DASHsigs] = ACTIONS(1154), + [anon_sym_ATload_DASHplugin] = ACTIONS(1156), + [anon_sym_ATunload] = ACTIONS(1154), + [anon_sym_ATprefixes] = ACTIONS(1158), + [anon_sym_ATif] = ACTIONS(1160), + [anon_sym_ATifdef] = ACTIONS(1162), + [anon_sym_ATifndef] = ACTIONS(1162), + [anon_sym_ATendif] = ACTIONS(1164), + [anon_sym_ATelse] = ACTIONS(1164), + [anon_sym_ATpragma] = ACTIONS(1166), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [283] = { - [sym_stmt] = STATE(422), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [251] = { + [sym_stmt] = STATE(734), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39214,70 +36658,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [284] = { - [sym_stmt] = STATE(423), - [sym_expr] = STATE(1433), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2478), - [sym_preproc_directive] = STATE(425), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_const] = ACTIONS(1280), + [252] = { + [sym_stmt] = STATE(735), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1282), - [anon_sym_event] = ACTIONS(1284), - [anon_sym_if] = ACTIONS(1286), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1290), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1292), - [anon_sym_next] = ACTIONS(1294), - [anon_sym_break] = ACTIONS(1294), - [anon_sym_fallthrough] = ACTIONS(1294), - [anon_sym_return] = ACTIONS(1296), - [anon_sym_add] = ACTIONS(1298), - [anon_sym_delete] = ACTIONS(1298), - [anon_sym_local] = ACTIONS(1300), - [anon_sym_when] = ACTIONS(1302), - [anon_sym_assert] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39291,70 +36737,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1306), - [anon_sym_ATload] = ACTIONS(1308), - [anon_sym_ATload_DASHsigs] = ACTIONS(1310), - [anon_sym_ATload_DASHplugin] = ACTIONS(1312), - [anon_sym_ATunload] = ACTIONS(1310), - [anon_sym_ATprefixes] = ACTIONS(1314), - [anon_sym_ATif] = ACTIONS(1316), - [anon_sym_ATifdef] = ACTIONS(1318), - [anon_sym_ATifndef] = ACTIONS(1318), - [anon_sym_ATendif] = ACTIONS(1320), - [anon_sym_ATelse] = ACTIONS(1320), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [285] = { - [sym_stmt] = STATE(724), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [253] = { + [sym_stmt] = STATE(736), + [sym_expr] = STATE(1354), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2391), + [sym_preproc_directive] = STATE(673), + [sym_pragma] = STATE(629), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_const] = ACTIONS(768), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(770), + [anon_sym_event] = ACTIONS(772), + [anon_sym_if] = ACTIONS(774), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(776), + [anon_sym_for] = ACTIONS(778), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(780), + [anon_sym_next] = ACTIONS(782), + [anon_sym_break] = ACTIONS(782), + [anon_sym_fallthrough] = ACTIONS(782), + [anon_sym_return] = ACTIONS(784), + [anon_sym_add] = ACTIONS(786), + [anon_sym_delete] = ACTIONS(786), + [anon_sym_local] = ACTIONS(788), + [anon_sym_when] = ACTIONS(790), + [anon_sym_assert] = ACTIONS(792), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39368,70 +36816,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(794), + [anon_sym_ATload] = ACTIONS(796), + [anon_sym_ATload_DASHsigs] = ACTIONS(798), + [anon_sym_ATload_DASHplugin] = ACTIONS(800), + [anon_sym_ATunload] = ACTIONS(798), + [anon_sym_ATprefixes] = ACTIONS(802), + [anon_sym_ATif] = ACTIONS(804), + [anon_sym_ATifdef] = ACTIONS(806), + [anon_sym_ATifndef] = ACTIONS(806), + [anon_sym_ATendif] = ACTIONS(808), + [anon_sym_ATelse] = ACTIONS(808), + [anon_sym_ATpragma] = ACTIONS(810), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [286] = { - [sym_stmt] = STATE(725), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [254] = { + [sym_stmt] = STATE(626), + [sym_expr] = STATE(1366), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2411), + [sym_preproc_directive] = STATE(689), + [sym_pragma] = STATE(667), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(1198), + [anon_sym_LBRACE] = ACTIONS(1200), + [anon_sym_const] = ACTIONS(1202), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(1204), + [anon_sym_event] = ACTIONS(1206), + [anon_sym_if] = ACTIONS(1208), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(1210), + [anon_sym_for] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_next] = ACTIONS(1216), + [anon_sym_break] = ACTIONS(1216), + [anon_sym_fallthrough] = ACTIONS(1216), + [anon_sym_return] = ACTIONS(1218), + [anon_sym_add] = ACTIONS(1220), + [anon_sym_delete] = ACTIONS(1220), + [anon_sym_local] = ACTIONS(1222), + [anon_sym_when] = ACTIONS(1224), + [anon_sym_assert] = ACTIONS(1226), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39445,70 +36895,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(1228), + [anon_sym_ATload] = ACTIONS(1230), + [anon_sym_ATload_DASHsigs] = ACTIONS(1232), + [anon_sym_ATload_DASHplugin] = ACTIONS(1234), + [anon_sym_ATunload] = ACTIONS(1232), + [anon_sym_ATprefixes] = ACTIONS(1236), + [anon_sym_ATif] = ACTIONS(1238), + [anon_sym_ATifdef] = ACTIONS(1240), + [anon_sym_ATifndef] = ACTIONS(1240), + [anon_sym_ATendif] = ACTIONS(1242), + [anon_sym_ATelse] = ACTIONS(1242), + [anon_sym_ATpragma] = ACTIONS(1244), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [287] = { - [sym_stmt] = STATE(726), - [sym_expr] = STATE(1430), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2343), - [sym_preproc_directive] = STATE(706), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_const] = ACTIONS(1142), + [255] = { + [sym_stmt] = STATE(518), + [sym_expr] = STATE(1390), + [sym_constant] = STATE(1279), + [sym_index_slice] = STATE(2451), + [sym_preproc_directive] = STATE(576), + [sym_pragma] = STATE(622), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(204), + [anon_sym_LBRACE] = ACTIONS(206), + [anon_sym_const] = ACTIONS(210), [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1144), - [anon_sym_event] = ACTIONS(1146), - [anon_sym_if] = ACTIONS(1148), + [anon_sym_print] = ACTIONS(212), + [anon_sym_event] = ACTIONS(214), + [anon_sym_if] = ACTIONS(216), [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1150), - [anon_sym_for] = ACTIONS(1152), + [anon_sym_switch] = ACTIONS(218), + [anon_sym_for] = ACTIONS(220), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1154), - [anon_sym_next] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_fallthrough] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1158), - [anon_sym_add] = ACTIONS(1160), - [anon_sym_delete] = ACTIONS(1160), - [anon_sym_local] = ACTIONS(1162), - [anon_sym_when] = ACTIONS(1164), - [anon_sym_assert] = ACTIONS(1166), + [anon_sym_while] = ACTIONS(222), + [anon_sym_next] = ACTIONS(224), + [anon_sym_break] = ACTIONS(224), + [anon_sym_fallthrough] = ACTIONS(224), + [anon_sym_return] = ACTIONS(226), + [anon_sym_add] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_local] = ACTIONS(230), + [anon_sym_when] = ACTIONS(232), + [anon_sym_assert] = ACTIONS(234), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), [anon_sym_DOLLAR] = ACTIONS(65), [anon_sym_PIPE] = ACTIONS(67), [anon_sym_PLUS_PLUS] = ACTIONS(69), @@ -39522,1063 +36974,2667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1168), - [anon_sym_ATload] = ACTIONS(1170), - [anon_sym_ATload_DASHsigs] = ACTIONS(1172), - [anon_sym_ATload_DASHplugin] = ACTIONS(1174), - [anon_sym_ATunload] = ACTIONS(1172), - [anon_sym_ATprefixes] = ACTIONS(1176), - [anon_sym_ATif] = ACTIONS(1178), - [anon_sym_ATifdef] = ACTIONS(1180), - [anon_sym_ATifndef] = ACTIONS(1180), - [anon_sym_ATendif] = ACTIONS(1182), - [anon_sym_ATelse] = ACTIONS(1182), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATdeprecated] = ACTIONS(238), + [anon_sym_ATload] = ACTIONS(240), + [anon_sym_ATload_DASHsigs] = ACTIONS(242), + [anon_sym_ATload_DASHplugin] = ACTIONS(244), + [anon_sym_ATunload] = ACTIONS(242), + [anon_sym_ATprefixes] = ACTIONS(246), + [anon_sym_ATif] = ACTIONS(248), + [anon_sym_ATifdef] = ACTIONS(250), + [anon_sym_ATifndef] = ACTIONS(250), + [anon_sym_ATendif] = ACTIONS(252), + [anon_sym_ATelse] = ACTIONS(252), + [anon_sym_ATpragma] = ACTIONS(254), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [288] = { - [sym_stmt] = STATE(523), - [sym_expr] = STATE(1524), - [sym_constant] = STATE(1269), - [sym_index_slice] = STATE(2433), - [sym_preproc_directive] = STATE(596), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1186), - [anon_sym_const] = ACTIONS(1188), - [anon_sym_record] = ACTIONS(25), - [anon_sym_print] = ACTIONS(1190), - [anon_sym_event] = ACTIONS(1192), - [anon_sym_if] = ACTIONS(1194), - [anon_sym_LPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(1196), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_while] = ACTIONS(1200), - [anon_sym_next] = ACTIONS(1202), - [anon_sym_break] = ACTIONS(1202), - [anon_sym_fallthrough] = ACTIONS(1202), - [anon_sym_return] = ACTIONS(1204), - [anon_sym_add] = ACTIONS(1206), - [anon_sym_delete] = ACTIONS(1206), - [anon_sym_local] = ACTIONS(1208), - [anon_sym_when] = ACTIONS(1210), - [anon_sym_assert] = ACTIONS(1212), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DOLLAR] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(67), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(71), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATdeprecated] = ACTIONS(1214), - [anon_sym_ATload] = ACTIONS(1216), - [anon_sym_ATload_DASHsigs] = ACTIONS(1218), - [anon_sym_ATload_DASHplugin] = ACTIONS(1220), - [anon_sym_ATunload] = ACTIONS(1218), - [anon_sym_ATprefixes] = ACTIONS(1222), - [anon_sym_ATif] = ACTIONS(1224), - [anon_sym_ATifdef] = ACTIONS(1226), - [anon_sym_ATifndef] = ACTIONS(1226), - [anon_sym_ATendif] = ACTIONS(1228), - [anon_sym_ATelse] = ACTIONS(1228), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [256] = { + [sym_initializer] = STATE(1777), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2276), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [289] = { + [257] = { + [sym_initializer] = STATE(1726), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2789), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [258] = { + [sym_initializer] = STATE(1740), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2624), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [259] = { + [sym_initializer] = STATE(1780), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2353), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [260] = { + [sym_initializer] = STATE(1781), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2404), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [261] = { + [sym_initializer] = STATE(1745), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2625), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [262] = { + [sym_initializer] = STATE(1757), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2728), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [263] = { + [sym_initializer] = STATE(1715), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2268), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [264] = { + [sym_initializer] = STATE(1758), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2760), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [265] = { + [sym_initializer] = STATE(1771), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2791), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [266] = { + [sym_initializer] = STATE(1748), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2627), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [267] = { + [sym_initializer] = STATE(1718), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2676), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [268] = { + [sym_initializer] = STATE(1735), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2690), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [269] = { + [sym_initializer] = STATE(1773), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2422), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [270] = { + [sym_initializer] = STATE(1775), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2261), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_AMPdeprecated] = ACTIONS(1414), - [anon_sym_DASH_EQ] = ACTIONS(1414), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1414), - [anon_sym_AMPerror_handler] = ACTIONS(1414), - [anon_sym_AMPis_assigned] = ACTIONS(1414), - [anon_sym_AMPis_used] = ACTIONS(1414), - [anon_sym_AMPlog] = ACTIONS(1414), - [anon_sym_AMPoptional] = ACTIONS(1414), - [anon_sym_AMPraw_output] = ACTIONS(1414), - [anon_sym_AMPredef] = ACTIONS(1414), - [anon_sym_AMPadd_func] = ACTIONS(1414), - [anon_sym_AMPbackend] = ACTIONS(1414), - [anon_sym_AMPbroker_store] = ACTIONS(1414), - [anon_sym_AMPcreate_expire] = ACTIONS(1414), - [anon_sym_AMPdefault] = ACTIONS(1414), - [anon_sym_AMPdelete_func] = ACTIONS(1414), - [anon_sym_AMPexpire_func] = ACTIONS(1414), - [anon_sym_AMPgroup] = ACTIONS(1414), - [anon_sym_AMPon_change] = ACTIONS(1414), - [anon_sym_AMPpriority] = ACTIONS(1414), - [anon_sym_AMPread_expire] = ACTIONS(1414), - [anon_sym_AMPtype_column] = ACTIONS(1414), - [anon_sym_AMPwrite_expire] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1414), - [anon_sym_ATdeprecated] = ACTIONS(1414), - [anon_sym_ATload] = ACTIONS(1416), - [anon_sym_ATload_DASHsigs] = ACTIONS(1414), - [anon_sym_ATload_DASHplugin] = ACTIONS(1414), - [anon_sym_ATunload] = ACTIONS(1414), - [anon_sym_ATprefixes] = ACTIONS(1414), - [anon_sym_ATif] = ACTIONS(1416), - [anon_sym_ATifdef] = ACTIONS(1414), - [anon_sym_ATifndef] = ACTIONS(1414), - [anon_sym_ATendif] = ACTIONS(1414), - [anon_sym_ATelse] = ACTIONS(1414), - [sym_time_unit] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [290] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_module] = ACTIONS(1422), + [271] = { + [sym_initializer] = STATE(1767), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2667), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [272] = { + [sym_initializer] = STATE(1788), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2232), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [273] = { + [sym_initializer] = STATE(1787), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2245), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_global] = ACTIONS(1422), - [anon_sym_option] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_redef] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [291] = { - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_AMPdeprecated] = ACTIONS(1414), - [anon_sym_DASH_EQ] = ACTIONS(1414), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1414), - [anon_sym_AMPerror_handler] = ACTIONS(1414), - [anon_sym_AMPis_assigned] = ACTIONS(1414), - [anon_sym_AMPis_used] = ACTIONS(1414), - [anon_sym_AMPlog] = ACTIONS(1414), - [anon_sym_AMPoptional] = ACTIONS(1414), - [anon_sym_AMPraw_output] = ACTIONS(1414), - [anon_sym_AMPredef] = ACTIONS(1414), - [anon_sym_AMPadd_func] = ACTIONS(1414), - [anon_sym_AMPbackend] = ACTIONS(1414), - [anon_sym_AMPbroker_store] = ACTIONS(1414), - [anon_sym_AMPcreate_expire] = ACTIONS(1414), - [anon_sym_AMPdefault] = ACTIONS(1414), - [anon_sym_AMPdelete_func] = ACTIONS(1414), - [anon_sym_AMPexpire_func] = ACTIONS(1414), - [anon_sym_AMPgroup] = ACTIONS(1414), - [anon_sym_AMPon_change] = ACTIONS(1414), - [anon_sym_AMPpriority] = ACTIONS(1414), - [anon_sym_AMPread_expire] = ACTIONS(1414), - [anon_sym_AMPtype_column] = ACTIONS(1414), - [anon_sym_AMPwrite_expire] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1414), - [anon_sym_ATdeprecated] = ACTIONS(1414), - [anon_sym_ATload] = ACTIONS(1416), - [anon_sym_ATload_DASHsigs] = ACTIONS(1414), - [anon_sym_ATload_DASHplugin] = ACTIONS(1414), - [anon_sym_ATunload] = ACTIONS(1414), - [anon_sym_ATprefixes] = ACTIONS(1414), - [anon_sym_ATif] = ACTIONS(1416), - [anon_sym_ATifdef] = ACTIONS(1414), - [anon_sym_ATifndef] = ACTIONS(1414), - [anon_sym_ATendif] = ACTIONS(1414), - [anon_sym_ATelse] = ACTIONS(1414), - [sym_time_unit] = ACTIONS(1418), + [274] = { + [sym_initializer] = STATE(1754), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2343), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [292] = { + [275] = { + [sym_initializer] = STATE(1749), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2629), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [276] = { + [sym_initializer] = STATE(1752), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2217), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_COLON] = ACTIONS(1426), - [anon_sym_PLUS_EQ] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_RPAREN] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_in] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_RBRACK] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1426), - [anon_sym_AMPdeprecated] = ACTIONS(1426), - [anon_sym_DASH_EQ] = ACTIONS(1426), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1426), - [anon_sym_AMPerror_handler] = ACTIONS(1426), - [anon_sym_AMPis_assigned] = ACTIONS(1426), - [anon_sym_AMPis_used] = ACTIONS(1426), - [anon_sym_AMPlog] = ACTIONS(1426), - [anon_sym_AMPoptional] = ACTIONS(1426), - [anon_sym_AMPraw_output] = ACTIONS(1426), - [anon_sym_AMPredef] = ACTIONS(1426), - [anon_sym_AMPadd_func] = ACTIONS(1426), - [anon_sym_AMPbackend] = ACTIONS(1426), - [anon_sym_AMPbroker_store] = ACTIONS(1426), - [anon_sym_AMPcreate_expire] = ACTIONS(1426), - [anon_sym_AMPdefault] = ACTIONS(1426), - [anon_sym_AMPdelete_func] = ACTIONS(1426), - [anon_sym_AMPexpire_func] = ACTIONS(1426), - [anon_sym_AMPgroup] = ACTIONS(1426), - [anon_sym_AMPon_change] = ACTIONS(1426), - [anon_sym_AMPpriority] = ACTIONS(1426), - [anon_sym_AMPread_expire] = ACTIONS(1426), - [anon_sym_AMPtype_column] = ACTIONS(1426), - [anon_sym_AMPwrite_expire] = ACTIONS(1426), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_is] = ACTIONS(1426), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PERCENT] = ACTIONS(1426), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_AMP_AMP] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1426), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1426), - [anon_sym_ATdeprecated] = ACTIONS(1426), - [anon_sym_ATload] = ACTIONS(1428), - [anon_sym_ATload_DASHsigs] = ACTIONS(1426), - [anon_sym_ATload_DASHplugin] = ACTIONS(1426), - [anon_sym_ATunload] = ACTIONS(1426), - [anon_sym_ATprefixes] = ACTIONS(1426), - [anon_sym_ATif] = ACTIONS(1428), - [anon_sym_ATifdef] = ACTIONS(1426), - [anon_sym_ATifndef] = ACTIONS(1426), - [anon_sym_ATendif] = ACTIONS(1426), - [anon_sym_ATelse] = ACTIONS(1426), - [sym_time_unit] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1432), + [277] = { + [sym_initializer] = STATE(1746), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2440), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [278] = { + [sym_initializer] = STATE(1769), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2462), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_global] = ACTIONS(1432), - [anon_sym_option] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_redef] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [294] = { - [anon_sym_SEMI] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(502), - [anon_sym_RBRACE] = ACTIONS(502), - [anon_sym_COLON] = ACTIONS(502), - [anon_sym_PLUS_EQ] = ACTIONS(502), - [anon_sym_LPAREN] = ACTIONS(502), - [anon_sym_RPAREN] = ACTIONS(502), - [anon_sym_COMMA] = ACTIONS(502), - [anon_sym_in] = ACTIONS(502), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_RBRACK] = ACTIONS(502), - [anon_sym_EQ] = ACTIONS(504), - [anon_sym_as] = ACTIONS(502), - [anon_sym_AMPdeprecated] = ACTIONS(502), - [anon_sym_DASH_EQ] = ACTIONS(502), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(502), - [anon_sym_AMPerror_handler] = ACTIONS(502), - [anon_sym_AMPis_assigned] = ACTIONS(502), - [anon_sym_AMPis_used] = ACTIONS(502), - [anon_sym_AMPlog] = ACTIONS(502), - [anon_sym_AMPoptional] = ACTIONS(502), - [anon_sym_AMPraw_output] = ACTIONS(502), - [anon_sym_AMPredef] = ACTIONS(502), - [anon_sym_AMPadd_func] = ACTIONS(502), - [anon_sym_AMPbackend] = ACTIONS(502), - [anon_sym_AMPbroker_store] = ACTIONS(502), - [anon_sym_AMPcreate_expire] = ACTIONS(502), - [anon_sym_AMPdefault] = ACTIONS(502), - [anon_sym_AMPdelete_func] = ACTIONS(502), - [anon_sym_AMPexpire_func] = ACTIONS(502), - [anon_sym_AMPgroup] = ACTIONS(502), - [anon_sym_AMPon_change] = ACTIONS(502), - [anon_sym_AMPpriority] = ACTIONS(502), - [anon_sym_AMPread_expire] = ACTIONS(502), - [anon_sym_AMPtype_column] = ACTIONS(502), - [anon_sym_AMPwrite_expire] = ACTIONS(502), - [anon_sym_DOLLAR] = ACTIONS(502), - [anon_sym_PIPE] = ACTIONS(504), - [anon_sym_BANG] = ACTIONS(504), - [anon_sym_DASH] = ACTIONS(504), - [anon_sym_PLUS] = ACTIONS(504), - [anon_sym_is] = ACTIONS(502), - [anon_sym_STAR] = ACTIONS(502), - [anon_sym_SLASH] = ACTIONS(502), - [anon_sym_PERCENT] = ACTIONS(502), - [anon_sym_LT] = ACTIONS(504), - [anon_sym_LT_EQ] = ACTIONS(502), - [anon_sym_GT] = ACTIONS(504), - [anon_sym_GT_EQ] = ACTIONS(502), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_CARET] = ACTIONS(502), - [anon_sym_QMARK] = ACTIONS(504), - [anon_sym_EQ_EQ] = ACTIONS(502), - [anon_sym_BANG_EQ] = ACTIONS(502), - [anon_sym_AMP_AMP] = ACTIONS(502), - [anon_sym_PIPE_PIPE] = ACTIONS(502), - [anon_sym_QMARK_DOLLAR] = ACTIONS(502), - [anon_sym_ATdeprecated] = ACTIONS(502), - [anon_sym_ATload] = ACTIONS(504), - [anon_sym_ATload_DASHsigs] = ACTIONS(502), - [anon_sym_ATload_DASHplugin] = ACTIONS(502), - [anon_sym_ATunload] = ACTIONS(502), - [anon_sym_ATprefixes] = ACTIONS(502), - [anon_sym_ATif] = ACTIONS(504), - [anon_sym_ATifdef] = ACTIONS(502), - [anon_sym_ATifndef] = ACTIONS(502), - [anon_sym_ATendif] = ACTIONS(502), - [anon_sym_ATelse] = ACTIONS(502), + [279] = { + [sym_initializer] = STATE(1742), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2377), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [295] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_global] = ACTIONS(1438), - [anon_sym_option] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_redef] = ACTIONS(1438), - [anon_sym_record] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_print] = ACTIONS(1438), - [anon_sym_event] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_next] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_fallthrough] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_add] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_local] = ACTIONS(1438), - [anon_sym_when] = ACTIONS(1438), - [anon_sym_assert] = ACTIONS(1438), - [anon_sym_table] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_vector] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_hook] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_copy] = ACTIONS(1438), - [anon_sym_schedule] = ACTIONS(1438), - [aux_sym_constant_token1] = ACTIONS(1438), - [anon_sym_T] = ACTIONS(1438), - [anon_sym_F] = ACTIONS(1438), - [anon_sym_ATdeprecated] = ACTIONS(1436), - [anon_sym_ATload] = ACTIONS(1438), - [anon_sym_ATload_DASHsigs] = ACTIONS(1436), - [anon_sym_ATload_DASHplugin] = ACTIONS(1436), - [anon_sym_ATunload] = ACTIONS(1436), - [anon_sym_ATprefixes] = ACTIONS(1436), - [anon_sym_ATif] = ACTIONS(1438), - [anon_sym_ATifdef] = ACTIONS(1436), - [anon_sym_ATifndef] = ACTIONS(1436), - [anon_sym_ATendif] = ACTIONS(1436), - [anon_sym_ATelse] = ACTIONS(1436), - [anon_sym_ATDIR] = ACTIONS(1436), - [anon_sym_ATFILENAME] = ACTIONS(1436), - [sym_id] = ACTIONS(1438), - [sym_pattern] = ACTIONS(1436), - [sym_ipv6] = ACTIONS(1438), - [sym_ipv4] = ACTIONS(1438), - [sym_port] = ACTIONS(1436), - [sym_floatp] = ACTIONS(1438), - [sym_hex] = ACTIONS(1438), - [sym_hostname] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1436), + [280] = { + [sym_initializer] = STATE(1753), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2263), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [296] = { - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_in] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(514), - [anon_sym_as] = ACTIONS(512), - [anon_sym_AMPdeprecated] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(512), - [anon_sym_AMPerror_handler] = ACTIONS(512), - [anon_sym_AMPis_assigned] = ACTIONS(512), - [anon_sym_AMPis_used] = ACTIONS(512), - [anon_sym_AMPlog] = ACTIONS(512), - [anon_sym_AMPoptional] = ACTIONS(512), - [anon_sym_AMPraw_output] = ACTIONS(512), - [anon_sym_AMPredef] = ACTIONS(512), - [anon_sym_AMPadd_func] = ACTIONS(512), - [anon_sym_AMPbackend] = ACTIONS(512), - [anon_sym_AMPbroker_store] = ACTIONS(512), - [anon_sym_AMPcreate_expire] = ACTIONS(512), - [anon_sym_AMPdefault] = ACTIONS(512), - [anon_sym_AMPdelete_func] = ACTIONS(512), - [anon_sym_AMPexpire_func] = ACTIONS(512), - [anon_sym_AMPgroup] = ACTIONS(512), - [anon_sym_AMPon_change] = ACTIONS(512), - [anon_sym_AMPpriority] = ACTIONS(512), - [anon_sym_AMPread_expire] = ACTIONS(512), - [anon_sym_AMPtype_column] = ACTIONS(512), - [anon_sym_AMPwrite_expire] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_PLUS] = ACTIONS(514), - [anon_sym_is] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(512), - [anon_sym_PERCENT] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(514), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT] = ACTIONS(514), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(512), - [anon_sym_QMARK] = ACTIONS(514), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_AMP_AMP] = ACTIONS(512), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_QMARK_DOLLAR] = ACTIONS(512), - [anon_sym_ATdeprecated] = ACTIONS(512), - [anon_sym_ATload] = ACTIONS(514), - [anon_sym_ATload_DASHsigs] = ACTIONS(512), - [anon_sym_ATload_DASHplugin] = ACTIONS(512), - [anon_sym_ATunload] = ACTIONS(512), - [anon_sym_ATprefixes] = ACTIONS(512), - [anon_sym_ATif] = ACTIONS(514), - [anon_sym_ATifdef] = ACTIONS(512), - [anon_sym_ATifndef] = ACTIONS(512), - [anon_sym_ATendif] = ACTIONS(512), - [anon_sym_ATelse] = ACTIONS(512), + [281] = { + [sym_initializer] = STATE(1732), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2251), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [297] = { - [anon_sym_SEMI] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(522), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(522), - [anon_sym_PLUS_EQ] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_in] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(522), - [anon_sym_RBRACK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [anon_sym_as] = ACTIONS(522), - [anon_sym_AMPdeprecated] = ACTIONS(522), - [anon_sym_DASH_EQ] = ACTIONS(522), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(522), - [anon_sym_AMPerror_handler] = ACTIONS(522), - [anon_sym_AMPis_assigned] = ACTIONS(522), - [anon_sym_AMPis_used] = ACTIONS(522), - [anon_sym_AMPlog] = ACTIONS(522), - [anon_sym_AMPoptional] = ACTIONS(522), - [anon_sym_AMPraw_output] = ACTIONS(522), - [anon_sym_AMPredef] = ACTIONS(522), - [anon_sym_AMPadd_func] = ACTIONS(522), - [anon_sym_AMPbackend] = ACTIONS(522), - [anon_sym_AMPbroker_store] = ACTIONS(522), - [anon_sym_AMPcreate_expire] = ACTIONS(522), - [anon_sym_AMPdefault] = ACTIONS(522), - [anon_sym_AMPdelete_func] = ACTIONS(522), - [anon_sym_AMPexpire_func] = ACTIONS(522), - [anon_sym_AMPgroup] = ACTIONS(522), - [anon_sym_AMPon_change] = ACTIONS(522), - [anon_sym_AMPpriority] = ACTIONS(522), - [anon_sym_AMPread_expire] = ACTIONS(522), - [anon_sym_AMPtype_column] = ACTIONS(522), - [anon_sym_AMPwrite_expire] = ACTIONS(522), - [anon_sym_DOLLAR] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_is] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_QMARK_DOLLAR] = ACTIONS(522), - [anon_sym_ATdeprecated] = ACTIONS(522), - [anon_sym_ATload] = ACTIONS(524), - [anon_sym_ATload_DASHsigs] = ACTIONS(522), - [anon_sym_ATload_DASHplugin] = ACTIONS(522), - [anon_sym_ATunload] = ACTIONS(522), - [anon_sym_ATprefixes] = ACTIONS(522), - [anon_sym_ATif] = ACTIONS(524), - [anon_sym_ATifdef] = ACTIONS(522), - [anon_sym_ATifndef] = ACTIONS(522), - [anon_sym_ATendif] = ACTIONS(522), - [anon_sym_ATelse] = ACTIONS(522), + [282] = { + [sym_initializer] = STATE(1785), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2777), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [298] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1442), + [283] = { + [sym_initializer] = STATE(1721), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2326), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1440), - [anon_sym_export] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_global] = ACTIONS(1442), - [anon_sym_option] = ACTIONS(1442), - [anon_sym_const] = ACTIONS(1442), - [anon_sym_redef] = ACTIONS(1442), - [anon_sym_record] = ACTIONS(1442), - [anon_sym_type] = ACTIONS(1442), - [anon_sym_print] = ACTIONS(1442), - [anon_sym_event] = ACTIONS(1442), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_for] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1442), - [anon_sym_next] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_fallthrough] = ACTIONS(1442), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_add] = ACTIONS(1442), - [anon_sym_delete] = ACTIONS(1442), - [anon_sym_local] = ACTIONS(1442), - [anon_sym_when] = ACTIONS(1442), - [anon_sym_assert] = ACTIONS(1442), - [anon_sym_table] = ACTIONS(1442), - [anon_sym_set] = ACTIONS(1442), - [anon_sym_vector] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_hook] = ACTIONS(1442), - [anon_sym_DOLLAR] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_copy] = ACTIONS(1442), - [anon_sym_schedule] = ACTIONS(1442), - [aux_sym_constant_token1] = ACTIONS(1442), - [anon_sym_T] = ACTIONS(1442), - [anon_sym_F] = ACTIONS(1442), - [anon_sym_ATdeprecated] = ACTIONS(1440), - [anon_sym_ATload] = ACTIONS(1442), - [anon_sym_ATload_DASHsigs] = ACTIONS(1440), - [anon_sym_ATload_DASHplugin] = ACTIONS(1440), - [anon_sym_ATunload] = ACTIONS(1440), - [anon_sym_ATprefixes] = ACTIONS(1440), - [anon_sym_ATif] = ACTIONS(1442), - [anon_sym_ATifdef] = ACTIONS(1440), - [anon_sym_ATifndef] = ACTIONS(1440), - [anon_sym_ATendif] = ACTIONS(1440), - [anon_sym_ATelse] = ACTIONS(1440), - [anon_sym_ATDIR] = ACTIONS(1440), - [anon_sym_ATFILENAME] = ACTIONS(1440), - [sym_id] = ACTIONS(1442), - [sym_pattern] = ACTIONS(1440), - [sym_ipv6] = ACTIONS(1442), - [sym_ipv4] = ACTIONS(1442), - [sym_port] = ACTIONS(1440), - [sym_floatp] = ACTIONS(1442), - [sym_hex] = ACTIONS(1442), - [sym_hostname] = ACTIONS(1442), - [aux_sym_string_token1] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [299] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [anon_sym_module] = ACTIONS(1446), + [284] = { + [sym_initializer] = STATE(1751), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2635), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [285] = { + [sym_initializer] = STATE(1727), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2649), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1444), - [anon_sym_export] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_global] = ACTIONS(1446), - [anon_sym_option] = ACTIONS(1446), - [anon_sym_const] = ACTIONS(1446), - [anon_sym_redef] = ACTIONS(1446), - [anon_sym_record] = ACTIONS(1446), - [anon_sym_type] = ACTIONS(1446), - [anon_sym_print] = ACTIONS(1446), - [anon_sym_event] = ACTIONS(1446), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_for] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1446), - [anon_sym_next] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_fallthrough] = ACTIONS(1446), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_add] = ACTIONS(1446), - [anon_sym_delete] = ACTIONS(1446), - [anon_sym_local] = ACTIONS(1446), - [anon_sym_when] = ACTIONS(1446), - [anon_sym_assert] = ACTIONS(1446), - [anon_sym_table] = ACTIONS(1446), - [anon_sym_set] = ACTIONS(1446), - [anon_sym_vector] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1446), - [anon_sym_hook] = ACTIONS(1446), - [anon_sym_DOLLAR] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_copy] = ACTIONS(1446), - [anon_sym_schedule] = ACTIONS(1446), - [aux_sym_constant_token1] = ACTIONS(1446), - [anon_sym_T] = ACTIONS(1446), - [anon_sym_F] = ACTIONS(1446), - [anon_sym_ATdeprecated] = ACTIONS(1444), - [anon_sym_ATload] = ACTIONS(1446), - [anon_sym_ATload_DASHsigs] = ACTIONS(1444), - [anon_sym_ATload_DASHplugin] = ACTIONS(1444), - [anon_sym_ATunload] = ACTIONS(1444), - [anon_sym_ATprefixes] = ACTIONS(1444), - [anon_sym_ATif] = ACTIONS(1446), - [anon_sym_ATifdef] = ACTIONS(1444), - [anon_sym_ATifndef] = ACTIONS(1444), - [anon_sym_ATendif] = ACTIONS(1444), - [anon_sym_ATelse] = ACTIONS(1444), - [anon_sym_ATDIR] = ACTIONS(1444), - [anon_sym_ATFILENAME] = ACTIONS(1444), - [sym_id] = ACTIONS(1446), - [sym_pattern] = ACTIONS(1444), - [sym_ipv6] = ACTIONS(1446), - [sym_ipv4] = ACTIONS(1446), - [sym_port] = ACTIONS(1444), - [sym_floatp] = ACTIONS(1446), - [sym_hex] = ACTIONS(1446), - [sym_hostname] = ACTIONS(1446), - [aux_sym_string_token1] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [300] = { + [286] = { + [sym_initializer] = STATE(1731), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2651), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [287] = { + [sym_initializer] = STATE(1747), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2655), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), [anon_sym_SEMI] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_COLON] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_in] = ACTIONS(1448), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_AMPdeprecated] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1448), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1448), - [anon_sym_AMPerror_handler] = ACTIONS(1448), - [anon_sym_AMPis_assigned] = ACTIONS(1448), - [anon_sym_AMPis_used] = ACTIONS(1448), - [anon_sym_AMPlog] = ACTIONS(1448), - [anon_sym_AMPoptional] = ACTIONS(1448), - [anon_sym_AMPraw_output] = ACTIONS(1448), - [anon_sym_AMPredef] = ACTIONS(1448), - [anon_sym_AMPadd_func] = ACTIONS(1448), - [anon_sym_AMPbackend] = ACTIONS(1448), - [anon_sym_AMPbroker_store] = ACTIONS(1448), - [anon_sym_AMPcreate_expire] = ACTIONS(1448), - [anon_sym_AMPdefault] = ACTIONS(1448), - [anon_sym_AMPdelete_func] = ACTIONS(1448), - [anon_sym_AMPexpire_func] = ACTIONS(1448), - [anon_sym_AMPgroup] = ACTIONS(1448), - [anon_sym_AMPon_change] = ACTIONS(1448), - [anon_sym_AMPpriority] = ACTIONS(1448), - [anon_sym_AMPread_expire] = ACTIONS(1448), - [anon_sym_AMPtype_column] = ACTIONS(1448), - [anon_sym_AMPwrite_expire] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_is] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_EQ_EQ] = ACTIONS(1448), - [anon_sym_BANG_EQ] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE_PIPE] = ACTIONS(1448), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1448), - [anon_sym_ATdeprecated] = ACTIONS(1448), - [anon_sym_ATload] = ACTIONS(1450), - [anon_sym_ATload_DASHsigs] = ACTIONS(1448), - [anon_sym_ATload_DASHplugin] = ACTIONS(1448), - [anon_sym_ATunload] = ACTIONS(1448), - [anon_sym_ATprefixes] = ACTIONS(1448), - [anon_sym_ATif] = ACTIONS(1450), - [anon_sym_ATifdef] = ACTIONS(1448), - [anon_sym_ATifndef] = ACTIONS(1448), - [anon_sym_ATendif] = ACTIONS(1448), - [anon_sym_ATelse] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [301] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1454), + [288] = { + [sym_initializer] = STATE(1759), + [sym_init_class] = STATE(1037), + [sym_attr_list] = STATE(2658), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(872), + [sym_constant] = STATE(328), + [sym_string_directive] = STATE(295), + [sym_integer] = STATE(291), + [sym_interval] = STATE(326), + [sym_string] = STATE(326), + [aux_sym_attr_list_repeat1] = STATE(1597), + [anon_sym_SEMI] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(862), + [anon_sym_PLUS_EQ] = ACTIONS(866), + [anon_sym_record] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(870), + [anon_sym_LBRACK] = ACTIONS(872), + [anon_sym_local] = ACTIONS(874), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_table] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_vector] = ACTIONS(878), + [anon_sym_function] = ACTIONS(880), + [anon_sym_hook] = ACTIONS(882), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(892), + [anon_sym_PLUS_PLUS] = ACTIONS(894), + [anon_sym_DASH_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_TILDE] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(896), + [anon_sym_copy] = ACTIONS(898), + [anon_sym_schedule] = ACTIONS(900), + [aux_sym_constant_token1] = ACTIONS(902), + [anon_sym_T] = ACTIONS(904), + [anon_sym_F] = ACTIONS(904), + [anon_sym_ATDIR] = ACTIONS(906), + [anon_sym_ATFILENAME] = ACTIONS(906), + [sym_id] = ACTIONS(908), + [sym_pattern] = ACTIONS(910), + [sym_ipv6] = ACTIONS(912), + [sym_ipv4] = ACTIONS(912), + [sym_port] = ACTIONS(914), + [sym_floatp] = ACTIONS(916), + [sym_hex] = ACTIONS(904), + [sym_hostname] = ACTIONS(904), + [aux_sym_string_token1] = ACTIONS(918), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [289] = { [anon_sym_SEMI] = ACTIONS(1452), - [anon_sym_export] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_global] = ACTIONS(1454), - [anon_sym_option] = ACTIONS(1454), - [anon_sym_const] = ACTIONS(1454), - [anon_sym_redef] = ACTIONS(1454), - [anon_sym_record] = ACTIONS(1454), - [anon_sym_type] = ACTIONS(1454), - [anon_sym_print] = ACTIONS(1454), - [anon_sym_event] = ACTIONS(1454), - [anon_sym_if] = ACTIONS(1454), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_COLON] = ACTIONS(1452), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_for] = ACTIONS(1454), + [anon_sym_RPAREN] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_in] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_next] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_fallthrough] = ACTIONS(1454), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_add] = ACTIONS(1454), - [anon_sym_delete] = ACTIONS(1454), - [anon_sym_local] = ACTIONS(1454), - [anon_sym_when] = ACTIONS(1454), - [anon_sym_assert] = ACTIONS(1454), - [anon_sym_table] = ACTIONS(1454), - [anon_sym_set] = ACTIONS(1454), - [anon_sym_vector] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_hook] = ACTIONS(1454), + [anon_sym_RBRACK] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1452), + [anon_sym_AMPdeprecated] = ACTIONS(1452), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1452), + [anon_sym_AMPerror_handler] = ACTIONS(1452), + [anon_sym_AMPis_assigned] = ACTIONS(1452), + [anon_sym_AMPis_used] = ACTIONS(1452), + [anon_sym_AMPlog] = ACTIONS(1452), + [anon_sym_AMPoptional] = ACTIONS(1452), + [anon_sym_AMPraw_output] = ACTIONS(1452), + [anon_sym_AMPredef] = ACTIONS(1452), + [anon_sym_AMPadd_func] = ACTIONS(1452), + [anon_sym_AMPbackend] = ACTIONS(1452), + [anon_sym_AMPbroker_store] = ACTIONS(1452), + [anon_sym_AMPcreate_expire] = ACTIONS(1452), + [anon_sym_AMPdefault] = ACTIONS(1452), + [anon_sym_AMPdelete_func] = ACTIONS(1452), + [anon_sym_AMPexpire_func] = ACTIONS(1452), + [anon_sym_AMPgroup] = ACTIONS(1452), + [anon_sym_AMPon_change] = ACTIONS(1452), + [anon_sym_AMPpriority] = ACTIONS(1452), + [anon_sym_AMPread_expire] = ACTIONS(1452), + [anon_sym_AMPtype_column] = ACTIONS(1452), + [anon_sym_AMPwrite_expire] = ACTIONS(1452), [anon_sym_DOLLAR] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), [anon_sym_DASH] = ACTIONS(1454), [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_copy] = ACTIONS(1454), - [anon_sym_schedule] = ACTIONS(1454), - [aux_sym_constant_token1] = ACTIONS(1454), - [anon_sym_T] = ACTIONS(1454), - [anon_sym_F] = ACTIONS(1454), + [anon_sym_is] = ACTIONS(1452), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1452), + [anon_sym_PERCENT] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1452), + [anon_sym_QMARK] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1452), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1452), [anon_sym_ATdeprecated] = ACTIONS(1452), [anon_sym_ATload] = ACTIONS(1454), [anon_sym_ATload_DASHsigs] = ACTIONS(1452), @@ -40590,70 +39646,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1452), [anon_sym_ATendif] = ACTIONS(1452), [anon_sym_ATelse] = ACTIONS(1452), - [anon_sym_ATDIR] = ACTIONS(1452), - [anon_sym_ATFILENAME] = ACTIONS(1452), - [sym_id] = ACTIONS(1454), - [sym_pattern] = ACTIONS(1452), - [sym_ipv6] = ACTIONS(1454), - [sym_ipv4] = ACTIONS(1454), - [sym_port] = ACTIONS(1452), - [sym_floatp] = ACTIONS(1454), - [sym_hex] = ACTIONS(1454), - [sym_hostname] = ACTIONS(1454), - [aux_sym_string_token1] = ACTIONS(1452), + [anon_sym_ATpragma] = ACTIONS(1452), + [sym_time_unit] = ACTIONS(1452), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [302] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_module] = ACTIONS(1458), + [290] = { [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1458), [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_global] = ACTIONS(1458), - [anon_sym_option] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_redef] = ACTIONS(1458), - [anon_sym_record] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_print] = ACTIONS(1458), - [anon_sym_event] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_next] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_fallthrough] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_add] = ACTIONS(1458), - [anon_sym_delete] = ACTIONS(1458), - [anon_sym_local] = ACTIONS(1458), - [anon_sym_when] = ACTIONS(1458), - [anon_sym_assert] = ACTIONS(1458), - [anon_sym_table] = ACTIONS(1458), - [anon_sym_set] = ACTIONS(1458), - [anon_sym_vector] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_hook] = ACTIONS(1458), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_AMPdeprecated] = ACTIONS(1456), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1456), + [anon_sym_AMPerror_handler] = ACTIONS(1456), + [anon_sym_AMPis_assigned] = ACTIONS(1456), + [anon_sym_AMPis_used] = ACTIONS(1456), + [anon_sym_AMPlog] = ACTIONS(1456), + [anon_sym_AMPoptional] = ACTIONS(1456), + [anon_sym_AMPraw_output] = ACTIONS(1456), + [anon_sym_AMPredef] = ACTIONS(1456), + [anon_sym_AMPadd_func] = ACTIONS(1456), + [anon_sym_AMPbackend] = ACTIONS(1456), + [anon_sym_AMPbroker_store] = ACTIONS(1456), + [anon_sym_AMPcreate_expire] = ACTIONS(1456), + [anon_sym_AMPdefault] = ACTIONS(1456), + [anon_sym_AMPdelete_func] = ACTIONS(1456), + [anon_sym_AMPexpire_func] = ACTIONS(1456), + [anon_sym_AMPgroup] = ACTIONS(1456), + [anon_sym_AMPon_change] = ACTIONS(1456), + [anon_sym_AMPpriority] = ACTIONS(1456), + [anon_sym_AMPread_expire] = ACTIONS(1456), + [anon_sym_AMPtype_column] = ACTIONS(1456), + [anon_sym_AMPwrite_expire] = ACTIONS(1456), [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), [anon_sym_DASH] = ACTIONS(1458), [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_copy] = ACTIONS(1458), - [anon_sym_schedule] = ACTIONS(1458), - [aux_sym_constant_token1] = ACTIONS(1458), - [anon_sym_T] = ACTIONS(1458), - [anon_sym_F] = ACTIONS(1458), + [anon_sym_is] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1456), [anon_sym_ATdeprecated] = ACTIONS(1456), [anon_sym_ATload] = ACTIONS(1458), [anon_sym_ATload_DASHsigs] = ACTIONS(1456), @@ -40665,531 +39723,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1456), [anon_sym_ATendif] = ACTIONS(1456), [anon_sym_ATelse] = ACTIONS(1456), - [anon_sym_ATDIR] = ACTIONS(1456), - [anon_sym_ATFILENAME] = ACTIONS(1456), - [sym_id] = ACTIONS(1458), - [sym_pattern] = ACTIONS(1456), - [sym_ipv6] = ACTIONS(1458), - [sym_ipv4] = ACTIONS(1458), - [sym_port] = ACTIONS(1456), - [sym_floatp] = ACTIONS(1458), - [sym_hex] = ACTIONS(1458), - [sym_hostname] = ACTIONS(1458), - [aux_sym_string_token1] = ACTIONS(1456), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [303] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [anon_sym_module] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_export] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_global] = ACTIONS(1462), - [anon_sym_option] = ACTIONS(1462), - [anon_sym_const] = ACTIONS(1462), - [anon_sym_redef] = ACTIONS(1462), - [anon_sym_record] = ACTIONS(1462), - [anon_sym_type] = ACTIONS(1462), - [anon_sym_print] = ACTIONS(1462), - [anon_sym_event] = ACTIONS(1462), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_for] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1462), - [anon_sym_next] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_fallthrough] = ACTIONS(1462), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_add] = ACTIONS(1462), - [anon_sym_delete] = ACTIONS(1462), - [anon_sym_local] = ACTIONS(1462), - [anon_sym_when] = ACTIONS(1462), - [anon_sym_assert] = ACTIONS(1462), - [anon_sym_table] = ACTIONS(1462), - [anon_sym_set] = ACTIONS(1462), - [anon_sym_vector] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(1462), - [anon_sym_hook] = ACTIONS(1462), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_copy] = ACTIONS(1462), - [anon_sym_schedule] = ACTIONS(1462), - [aux_sym_constant_token1] = ACTIONS(1462), - [anon_sym_T] = ACTIONS(1462), - [anon_sym_F] = ACTIONS(1462), - [anon_sym_ATdeprecated] = ACTIONS(1460), - [anon_sym_ATload] = ACTIONS(1462), - [anon_sym_ATload_DASHsigs] = ACTIONS(1460), - [anon_sym_ATload_DASHplugin] = ACTIONS(1460), - [anon_sym_ATunload] = ACTIONS(1460), - [anon_sym_ATprefixes] = ACTIONS(1460), - [anon_sym_ATif] = ACTIONS(1462), - [anon_sym_ATifdef] = ACTIONS(1460), - [anon_sym_ATifndef] = ACTIONS(1460), - [anon_sym_ATendif] = ACTIONS(1460), - [anon_sym_ATelse] = ACTIONS(1460), - [anon_sym_ATDIR] = ACTIONS(1460), - [anon_sym_ATFILENAME] = ACTIONS(1460), - [sym_id] = ACTIONS(1462), - [sym_pattern] = ACTIONS(1460), - [sym_ipv6] = ACTIONS(1462), - [sym_ipv4] = ACTIONS(1462), - [sym_port] = ACTIONS(1460), - [sym_floatp] = ACTIONS(1462), - [sym_hex] = ACTIONS(1462), - [sym_hostname] = ACTIONS(1462), - [aux_sym_string_token1] = ACTIONS(1460), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [anon_sym_module] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1464), - [anon_sym_export] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_global] = ACTIONS(1466), - [anon_sym_option] = ACTIONS(1466), - [anon_sym_const] = ACTIONS(1466), - [anon_sym_redef] = ACTIONS(1466), - [anon_sym_record] = ACTIONS(1466), - [anon_sym_type] = ACTIONS(1466), - [anon_sym_print] = ACTIONS(1466), - [anon_sym_event] = ACTIONS(1466), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_for] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1466), - [anon_sym_next] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_fallthrough] = ACTIONS(1466), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_add] = ACTIONS(1466), - [anon_sym_delete] = ACTIONS(1466), - [anon_sym_local] = ACTIONS(1466), - [anon_sym_when] = ACTIONS(1466), - [anon_sym_assert] = ACTIONS(1466), - [anon_sym_table] = ACTIONS(1466), - [anon_sym_set] = ACTIONS(1466), - [anon_sym_vector] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(1466), - [anon_sym_hook] = ACTIONS(1466), - [anon_sym_DOLLAR] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_copy] = ACTIONS(1466), - [anon_sym_schedule] = ACTIONS(1466), - [aux_sym_constant_token1] = ACTIONS(1466), - [anon_sym_T] = ACTIONS(1466), - [anon_sym_F] = ACTIONS(1466), - [anon_sym_ATdeprecated] = ACTIONS(1464), - [anon_sym_ATload] = ACTIONS(1466), - [anon_sym_ATload_DASHsigs] = ACTIONS(1464), - [anon_sym_ATload_DASHplugin] = ACTIONS(1464), - [anon_sym_ATunload] = ACTIONS(1464), - [anon_sym_ATprefixes] = ACTIONS(1464), - [anon_sym_ATif] = ACTIONS(1466), - [anon_sym_ATifdef] = ACTIONS(1464), - [anon_sym_ATifndef] = ACTIONS(1464), - [anon_sym_ATendif] = ACTIONS(1464), - [anon_sym_ATelse] = ACTIONS(1464), - [anon_sym_ATDIR] = ACTIONS(1464), - [anon_sym_ATFILENAME] = ACTIONS(1464), - [sym_id] = ACTIONS(1466), - [sym_pattern] = ACTIONS(1464), - [sym_ipv6] = ACTIONS(1466), - [sym_ipv4] = ACTIONS(1466), - [sym_port] = ACTIONS(1464), - [sym_floatp] = ACTIONS(1466), - [sym_hex] = ACTIONS(1466), - [sym_hostname] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1464), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [305] = { - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_COLON] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_in] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_RBRACK] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(534), - [anon_sym_as] = ACTIONS(532), - [anon_sym_AMPdeprecated] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(532), - [anon_sym_AMPerror_handler] = ACTIONS(532), - [anon_sym_AMPis_assigned] = ACTIONS(532), - [anon_sym_AMPis_used] = ACTIONS(532), - [anon_sym_AMPlog] = ACTIONS(532), - [anon_sym_AMPoptional] = ACTIONS(532), - [anon_sym_AMPraw_output] = ACTIONS(532), - [anon_sym_AMPredef] = ACTIONS(532), - [anon_sym_AMPadd_func] = ACTIONS(532), - [anon_sym_AMPbackend] = ACTIONS(532), - [anon_sym_AMPbroker_store] = ACTIONS(532), - [anon_sym_AMPcreate_expire] = ACTIONS(532), - [anon_sym_AMPdefault] = ACTIONS(532), - [anon_sym_AMPdelete_func] = ACTIONS(532), - [anon_sym_AMPexpire_func] = ACTIONS(532), - [anon_sym_AMPgroup] = ACTIONS(532), - [anon_sym_AMPon_change] = ACTIONS(532), - [anon_sym_AMPpriority] = ACTIONS(532), - [anon_sym_AMPread_expire] = ACTIONS(532), - [anon_sym_AMPtype_column] = ACTIONS(532), - [anon_sym_AMPwrite_expire] = ACTIONS(532), - [anon_sym_DOLLAR] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_is] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(532), - [anon_sym_PERCENT] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(532), - [anon_sym_QMARK] = ACTIONS(534), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(532), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_QMARK_DOLLAR] = ACTIONS(532), - [anon_sym_ATdeprecated] = ACTIONS(532), - [anon_sym_ATload] = ACTIONS(534), - [anon_sym_ATload_DASHsigs] = ACTIONS(532), - [anon_sym_ATload_DASHplugin] = ACTIONS(532), - [anon_sym_ATunload] = ACTIONS(532), - [anon_sym_ATprefixes] = ACTIONS(532), - [anon_sym_ATif] = ACTIONS(534), - [anon_sym_ATifdef] = ACTIONS(532), - [anon_sym_ATifndef] = ACTIONS(532), - [anon_sym_ATendif] = ACTIONS(532), - [anon_sym_ATelse] = ACTIONS(532), + [anon_sym_ATpragma] = ACTIONS(1456), + [sym_time_unit] = ACTIONS(1460), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [306] = { - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_COLON] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_in] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_RBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_as] = ACTIONS(480), - [anon_sym_AMPdeprecated] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(480), - [anon_sym_AMPerror_handler] = ACTIONS(480), - [anon_sym_AMPis_assigned] = ACTIONS(480), - [anon_sym_AMPis_used] = ACTIONS(480), - [anon_sym_AMPlog] = ACTIONS(480), - [anon_sym_AMPoptional] = ACTIONS(480), - [anon_sym_AMPraw_output] = ACTIONS(480), - [anon_sym_AMPredef] = ACTIONS(480), - [anon_sym_AMPadd_func] = ACTIONS(480), - [anon_sym_AMPbackend] = ACTIONS(480), - [anon_sym_AMPbroker_store] = ACTIONS(480), - [anon_sym_AMPcreate_expire] = ACTIONS(480), - [anon_sym_AMPdefault] = ACTIONS(480), - [anon_sym_AMPdelete_func] = ACTIONS(480), - [anon_sym_AMPexpire_func] = ACTIONS(480), - [anon_sym_AMPgroup] = ACTIONS(480), - [anon_sym_AMPon_change] = ACTIONS(480), - [anon_sym_AMPpriority] = ACTIONS(480), - [anon_sym_AMPread_expire] = ACTIONS(480), - [anon_sym_AMPtype_column] = ACTIONS(480), - [anon_sym_AMPwrite_expire] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_is] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_QMARK_DOLLAR] = ACTIONS(480), - [anon_sym_ATdeprecated] = ACTIONS(480), - [anon_sym_ATload] = ACTIONS(482), - [anon_sym_ATload_DASHsigs] = ACTIONS(480), - [anon_sym_ATload_DASHplugin] = ACTIONS(480), - [anon_sym_ATunload] = ACTIONS(480), - [anon_sym_ATprefixes] = ACTIONS(480), - [anon_sym_ATif] = ACTIONS(482), - [anon_sym_ATifdef] = ACTIONS(480), - [anon_sym_ATifndef] = ACTIONS(480), - [anon_sym_ATendif] = ACTIONS(480), - [anon_sym_ATelse] = ACTIONS(480), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_module] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_export] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_global] = ACTIONS(1432), - [anon_sym_option] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_redef] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [291] = { + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_AMPdeprecated] = ACTIONS(1456), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1456), + [anon_sym_AMPerror_handler] = ACTIONS(1456), + [anon_sym_AMPis_assigned] = ACTIONS(1456), + [anon_sym_AMPis_used] = ACTIONS(1456), + [anon_sym_AMPlog] = ACTIONS(1456), + [anon_sym_AMPoptional] = ACTIONS(1456), + [anon_sym_AMPraw_output] = ACTIONS(1456), + [anon_sym_AMPredef] = ACTIONS(1456), + [anon_sym_AMPadd_func] = ACTIONS(1456), + [anon_sym_AMPbackend] = ACTIONS(1456), + [anon_sym_AMPbroker_store] = ACTIONS(1456), + [anon_sym_AMPcreate_expire] = ACTIONS(1456), + [anon_sym_AMPdefault] = ACTIONS(1456), + [anon_sym_AMPdelete_func] = ACTIONS(1456), + [anon_sym_AMPexpire_func] = ACTIONS(1456), + [anon_sym_AMPgroup] = ACTIONS(1456), + [anon_sym_AMPon_change] = ACTIONS(1456), + [anon_sym_AMPpriority] = ACTIONS(1456), + [anon_sym_AMPread_expire] = ACTIONS(1456), + [anon_sym_AMPtype_column] = ACTIONS(1456), + [anon_sym_AMPwrite_expire] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_is] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1456), + [anon_sym_ATdeprecated] = ACTIONS(1456), + [anon_sym_ATload] = ACTIONS(1458), + [anon_sym_ATload_DASHsigs] = ACTIONS(1456), + [anon_sym_ATload_DASHplugin] = ACTIONS(1456), + [anon_sym_ATunload] = ACTIONS(1456), + [anon_sym_ATprefixes] = ACTIONS(1456), + [anon_sym_ATif] = ACTIONS(1458), + [anon_sym_ATifdef] = ACTIONS(1456), + [anon_sym_ATifndef] = ACTIONS(1456), + [anon_sym_ATendif] = ACTIONS(1456), + [anon_sym_ATelse] = ACTIONS(1456), + [anon_sym_ATpragma] = ACTIONS(1456), + [sym_time_unit] = ACTIONS(1460), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [308] = { - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_COLON] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_in] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_as] = ACTIONS(542), - [anon_sym_AMPdeprecated] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(542), - [anon_sym_AMPerror_handler] = ACTIONS(542), - [anon_sym_AMPis_assigned] = ACTIONS(542), - [anon_sym_AMPis_used] = ACTIONS(542), - [anon_sym_AMPlog] = ACTIONS(542), - [anon_sym_AMPoptional] = ACTIONS(542), - [anon_sym_AMPraw_output] = ACTIONS(542), - [anon_sym_AMPredef] = ACTIONS(542), - [anon_sym_AMPadd_func] = ACTIONS(542), - [anon_sym_AMPbackend] = ACTIONS(542), - [anon_sym_AMPbroker_store] = ACTIONS(542), - [anon_sym_AMPcreate_expire] = ACTIONS(542), - [anon_sym_AMPdefault] = ACTIONS(542), - [anon_sym_AMPdelete_func] = ACTIONS(542), - [anon_sym_AMPexpire_func] = ACTIONS(542), - [anon_sym_AMPgroup] = ACTIONS(542), - [anon_sym_AMPon_change] = ACTIONS(542), - [anon_sym_AMPpriority] = ACTIONS(542), - [anon_sym_AMPread_expire] = ACTIONS(542), - [anon_sym_AMPtype_column] = ACTIONS(542), - [anon_sym_AMPwrite_expire] = ACTIONS(542), - [anon_sym_DOLLAR] = ACTIONS(542), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_is] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_QMARK_DOLLAR] = ACTIONS(542), - [anon_sym_ATdeprecated] = ACTIONS(542), - [anon_sym_ATload] = ACTIONS(544), - [anon_sym_ATload_DASHsigs] = ACTIONS(542), - [anon_sym_ATload_DASHplugin] = ACTIONS(542), - [anon_sym_ATunload] = ACTIONS(542), - [anon_sym_ATprefixes] = ACTIONS(542), - [anon_sym_ATif] = ACTIONS(544), - [anon_sym_ATifdef] = ACTIONS(542), - [anon_sym_ATifndef] = ACTIONS(542), - [anon_sym_ATendif] = ACTIONS(542), - [anon_sym_ATelse] = ACTIONS(542), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_global] = ACTIONS(1464), + [anon_sym_option] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_redef] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [309] = { + [293] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_module] = ACTIONS(1470), [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1470), [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_RBRACE] = ACTIONS(1468), - [anon_sym_COLON] = ACTIONS(1468), - [anon_sym_PLUS_EQ] = ACTIONS(1468), + [anon_sym_global] = ACTIONS(1470), + [anon_sym_option] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_redef] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_COMMA] = ACTIONS(1468), - [anon_sym_in] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_AMPdeprecated] = ACTIONS(1468), - [anon_sym_DASH_EQ] = ACTIONS(1468), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1468), - [anon_sym_AMPerror_handler] = ACTIONS(1468), - [anon_sym_AMPis_assigned] = ACTIONS(1468), - [anon_sym_AMPis_used] = ACTIONS(1468), - [anon_sym_AMPlog] = ACTIONS(1468), - [anon_sym_AMPoptional] = ACTIONS(1468), - [anon_sym_AMPraw_output] = ACTIONS(1468), - [anon_sym_AMPredef] = ACTIONS(1468), - [anon_sym_AMPadd_func] = ACTIONS(1468), - [anon_sym_AMPbackend] = ACTIONS(1468), - [anon_sym_AMPbroker_store] = ACTIONS(1468), - [anon_sym_AMPcreate_expire] = ACTIONS(1468), - [anon_sym_AMPdefault] = ACTIONS(1468), - [anon_sym_AMPdelete_func] = ACTIONS(1468), - [anon_sym_AMPexpire_func] = ACTIONS(1468), - [anon_sym_AMPgroup] = ACTIONS(1468), - [anon_sym_AMPon_change] = ACTIONS(1468), - [anon_sym_AMPpriority] = ACTIONS(1468), - [anon_sym_AMPread_expire] = ACTIONS(1468), - [anon_sym_AMPtype_column] = ACTIONS(1468), - [anon_sym_AMPwrite_expire] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), [anon_sym_DOLLAR] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), [anon_sym_DASH] = ACTIONS(1470), [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_is] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1468), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_GT_EQ] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1468), - [anon_sym_BANG_EQ] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1468), - [anon_sym_PIPE_PIPE] = ACTIONS(1468), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1468), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), [anon_sym_ATdeprecated] = ACTIONS(1468), [anon_sym_ATload] = ACTIONS(1470), [anon_sym_ATload_DASHsigs] = ACTIONS(1468), @@ -41201,145 +39944,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1468), [anon_sym_ATendif] = ACTIONS(1468), [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [310] = { - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_RBRACE] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1474), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_COMMA] = ACTIONS(1472), - [anon_sym_in] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_RBRACK] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_AMPdeprecated] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1472), - [anon_sym_AMPerror_handler] = ACTIONS(1472), - [anon_sym_AMPis_assigned] = ACTIONS(1472), - [anon_sym_AMPis_used] = ACTIONS(1472), - [anon_sym_AMPlog] = ACTIONS(1472), - [anon_sym_AMPoptional] = ACTIONS(1472), - [anon_sym_AMPraw_output] = ACTIONS(1472), - [anon_sym_AMPredef] = ACTIONS(1472), - [anon_sym_AMPadd_func] = ACTIONS(1472), - [anon_sym_AMPbackend] = ACTIONS(1472), - [anon_sym_AMPbroker_store] = ACTIONS(1472), - [anon_sym_AMPcreate_expire] = ACTIONS(1472), - [anon_sym_AMPdefault] = ACTIONS(1472), - [anon_sym_AMPdelete_func] = ACTIONS(1472), - [anon_sym_AMPexpire_func] = ACTIONS(1472), - [anon_sym_AMPgroup] = ACTIONS(1472), - [anon_sym_AMPon_change] = ACTIONS(1472), - [anon_sym_AMPpriority] = ACTIONS(1472), - [anon_sym_AMPread_expire] = ACTIONS(1472), - [anon_sym_AMPtype_column] = ACTIONS(1472), - [anon_sym_AMPwrite_expire] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1476), + [294] = { + [ts_builtin_sym_end] = ACTIONS(1474), + [anon_sym_module] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_export] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_global] = ACTIONS(1476), + [anon_sym_option] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_redef] = ACTIONS(1476), + [anon_sym_record] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_print] = ACTIONS(1476), + [anon_sym_event] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_next] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_fallthrough] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_add] = ACTIONS(1476), + [anon_sym_delete] = ACTIONS(1476), + [anon_sym_local] = ACTIONS(1476), + [anon_sym_when] = ACTIONS(1476), + [anon_sym_assert] = ACTIONS(1476), + [anon_sym_table] = ACTIONS(1476), + [anon_sym_set] = ACTIONS(1476), + [anon_sym_vector] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(1476), + [anon_sym_hook] = ACTIONS(1476), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PIPE] = ACTIONS(1474), + [anon_sym_PLUS_PLUS] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1474), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), [anon_sym_DASH] = ACTIONS(1476), [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_is] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1472), - [anon_sym_GT] = ACTIONS(1476), - [anon_sym_GT_EQ] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1472), - [anon_sym_BANG_EQ] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1472), - [anon_sym_PIPE_PIPE] = ACTIONS(1472), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1472), - [anon_sym_ATdeprecated] = ACTIONS(1472), + [anon_sym_copy] = ACTIONS(1476), + [anon_sym_schedule] = ACTIONS(1476), + [aux_sym_constant_token1] = ACTIONS(1476), + [anon_sym_T] = ACTIONS(1476), + [anon_sym_F] = ACTIONS(1476), + [anon_sym_ATdeprecated] = ACTIONS(1474), [anon_sym_ATload] = ACTIONS(1476), - [anon_sym_ATload_DASHsigs] = ACTIONS(1472), - [anon_sym_ATload_DASHplugin] = ACTIONS(1472), - [anon_sym_ATunload] = ACTIONS(1472), - [anon_sym_ATprefixes] = ACTIONS(1472), + [anon_sym_ATload_DASHsigs] = ACTIONS(1474), + [anon_sym_ATload_DASHplugin] = ACTIONS(1474), + [anon_sym_ATunload] = ACTIONS(1474), + [anon_sym_ATprefixes] = ACTIONS(1474), [anon_sym_ATif] = ACTIONS(1476), - [anon_sym_ATifdef] = ACTIONS(1472), - [anon_sym_ATifndef] = ACTIONS(1472), - [anon_sym_ATendif] = ACTIONS(1472), - [anon_sym_ATelse] = ACTIONS(1472), + [anon_sym_ATifdef] = ACTIONS(1474), + [anon_sym_ATifndef] = ACTIONS(1474), + [anon_sym_ATendif] = ACTIONS(1474), + [anon_sym_ATelse] = ACTIONS(1474), + [anon_sym_ATpragma] = ACTIONS(1474), + [anon_sym_ATDIR] = ACTIONS(1474), + [anon_sym_ATFILENAME] = ACTIONS(1474), + [sym_id] = ACTIONS(1476), + [sym_pattern] = ACTIONS(1474), + [sym_ipv6] = ACTIONS(1476), + [sym_ipv4] = ACTIONS(1476), + [sym_port] = ACTIONS(1474), + [sym_floatp] = ACTIONS(1476), + [sym_hex] = ACTIONS(1476), + [sym_hostname] = ACTIONS(1476), + [aux_sym_string_token1] = ACTIONS(1474), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [311] = { + [295] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_COLON] = ACTIONS(129), + [anon_sym_PLUS_EQ] = ACTIONS(129), + [anon_sym_DASH_EQ] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(129), + [anon_sym_in] = ACTIONS(129), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_RBRACK] = ACTIONS(129), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_as] = ACTIONS(129), + [anon_sym_AMPdeprecated] = ACTIONS(129), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(129), + [anon_sym_AMPerror_handler] = ACTIONS(129), + [anon_sym_AMPis_assigned] = ACTIONS(129), + [anon_sym_AMPis_used] = ACTIONS(129), + [anon_sym_AMPlog] = ACTIONS(129), + [anon_sym_AMPoptional] = ACTIONS(129), + [anon_sym_AMPraw_output] = ACTIONS(129), + [anon_sym_AMPredef] = ACTIONS(129), + [anon_sym_AMPadd_func] = ACTIONS(129), + [anon_sym_AMPbackend] = ACTIONS(129), + [anon_sym_AMPbroker_store] = ACTIONS(129), + [anon_sym_AMPcreate_expire] = ACTIONS(129), + [anon_sym_AMPdefault] = ACTIONS(129), + [anon_sym_AMPdelete_func] = ACTIONS(129), + [anon_sym_AMPexpire_func] = ACTIONS(129), + [anon_sym_AMPgroup] = ACTIONS(129), + [anon_sym_AMPon_change] = ACTIONS(129), + [anon_sym_AMPpriority] = ACTIONS(129), + [anon_sym_AMPread_expire] = ACTIONS(129), + [anon_sym_AMPtype_column] = ACTIONS(129), + [anon_sym_AMPwrite_expire] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(131), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_is] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(129), + [anon_sym_SLASH] = ACTIONS(129), + [anon_sym_PERCENT] = ACTIONS(129), + [anon_sym_LT] = ACTIONS(131), + [anon_sym_LT_EQ] = ACTIONS(129), + [anon_sym_GT] = ACTIONS(131), + [anon_sym_GT_EQ] = ACTIONS(129), + [anon_sym_AMP] = ACTIONS(131), + [anon_sym_CARET] = ACTIONS(129), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_EQ_EQ] = ACTIONS(129), + [anon_sym_BANG_EQ] = ACTIONS(129), + [anon_sym_AMP_AMP] = ACTIONS(129), + [anon_sym_PIPE_PIPE] = ACTIONS(129), + [anon_sym_QMARK_DOLLAR] = ACTIONS(129), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [296] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_module] = ACTIONS(1480), [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1480), [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_global] = ACTIONS(1480), + [anon_sym_option] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_redef] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_EQ] = ACTIONS(1480), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_AMPdeprecated] = ACTIONS(1478), - [anon_sym_DASH_EQ] = ACTIONS(1478), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1478), - [anon_sym_AMPerror_handler] = ACTIONS(1478), - [anon_sym_AMPis_assigned] = ACTIONS(1478), - [anon_sym_AMPis_used] = ACTIONS(1478), - [anon_sym_AMPlog] = ACTIONS(1478), - [anon_sym_AMPoptional] = ACTIONS(1478), - [anon_sym_AMPraw_output] = ACTIONS(1478), - [anon_sym_AMPredef] = ACTIONS(1478), - [anon_sym_AMPadd_func] = ACTIONS(1478), - [anon_sym_AMPbackend] = ACTIONS(1478), - [anon_sym_AMPbroker_store] = ACTIONS(1478), - [anon_sym_AMPcreate_expire] = ACTIONS(1478), - [anon_sym_AMPdefault] = ACTIONS(1478), - [anon_sym_AMPdelete_func] = ACTIONS(1478), - [anon_sym_AMPexpire_func] = ACTIONS(1478), - [anon_sym_AMPgroup] = ACTIONS(1478), - [anon_sym_AMPon_change] = ACTIONS(1478), - [anon_sym_AMPpriority] = ACTIONS(1478), - [anon_sym_AMPread_expire] = ACTIONS(1478), - [anon_sym_AMPtype_column] = ACTIONS(1478), - [anon_sym_AMPwrite_expire] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), [anon_sym_DASH] = ACTIONS(1480), [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_is] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1480), - [anon_sym_GT_EQ] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1480), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1478), - [anon_sym_BANG_EQ] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1478), - [anon_sym_PIPE_PIPE] = ACTIONS(1478), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1478), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), [anon_sym_ATdeprecated] = ACTIONS(1478), [anon_sym_ATload] = ACTIONS(1480), [anon_sym_ATload_DASHsigs] = ACTIONS(1478), @@ -41351,388 +40172,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1478), [anon_sym_ATendif] = ACTIONS(1478), [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [312] = { + [297] = { + [ts_builtin_sym_end] = ACTIONS(1482), + [anon_sym_module] = ACTIONS(1484), [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1484), [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_COLON] = ACTIONS(1484), - [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_global] = ACTIONS(1484), + [anon_sym_option] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_redef] = ACTIONS(1484), + [anon_sym_record] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_print] = ACTIONS(1484), + [anon_sym_event] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_in] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_RBRACK] = ACTIONS(1482), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_AMPdeprecated] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1482), - [anon_sym_AMPerror_handler] = ACTIONS(1482), - [anon_sym_AMPis_assigned] = ACTIONS(1482), - [anon_sym_AMPis_used] = ACTIONS(1482), - [anon_sym_AMPlog] = ACTIONS(1482), - [anon_sym_AMPoptional] = ACTIONS(1482), - [anon_sym_AMPraw_output] = ACTIONS(1482), - [anon_sym_AMPredef] = ACTIONS(1482), - [anon_sym_AMPadd_func] = ACTIONS(1482), - [anon_sym_AMPbackend] = ACTIONS(1482), - [anon_sym_AMPbroker_store] = ACTIONS(1482), - [anon_sym_AMPcreate_expire] = ACTIONS(1482), - [anon_sym_AMPdefault] = ACTIONS(1482), - [anon_sym_AMPdelete_func] = ACTIONS(1482), - [anon_sym_AMPexpire_func] = ACTIONS(1482), - [anon_sym_AMPgroup] = ACTIONS(1482), - [anon_sym_AMPon_change] = ACTIONS(1482), - [anon_sym_AMPpriority] = ACTIONS(1482), - [anon_sym_AMPread_expire] = ACTIONS(1482), - [anon_sym_AMPtype_column] = ACTIONS(1482), - [anon_sym_AMPwrite_expire] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_next] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_fallthrough] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_add] = ACTIONS(1484), + [anon_sym_delete] = ACTIONS(1484), + [anon_sym_local] = ACTIONS(1484), + [anon_sym_when] = ACTIONS(1484), + [anon_sym_assert] = ACTIONS(1484), + [anon_sym_table] = ACTIONS(1484), + [anon_sym_set] = ACTIONS(1484), + [anon_sym_vector] = ACTIONS(1484), + [anon_sym_function] = ACTIONS(1484), + [anon_sym_hook] = ACTIONS(1484), [anon_sym_DOLLAR] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_is] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_LT_EQ] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1482), - [anon_sym_BANG_EQ] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1482), - [anon_sym_PIPE_PIPE] = ACTIONS(1482), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1482), + [anon_sym_BANG] = ACTIONS(1482), + [anon_sym_TILDE] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_copy] = ACTIONS(1484), + [anon_sym_schedule] = ACTIONS(1484), + [aux_sym_constant_token1] = ACTIONS(1484), + [anon_sym_T] = ACTIONS(1484), + [anon_sym_F] = ACTIONS(1484), [anon_sym_ATdeprecated] = ACTIONS(1482), - [anon_sym_ATload] = ACTIONS(1486), + [anon_sym_ATload] = ACTIONS(1484), [anon_sym_ATload_DASHsigs] = ACTIONS(1482), [anon_sym_ATload_DASHplugin] = ACTIONS(1482), [anon_sym_ATunload] = ACTIONS(1482), [anon_sym_ATprefixes] = ACTIONS(1482), - [anon_sym_ATif] = ACTIONS(1486), + [anon_sym_ATif] = ACTIONS(1484), [anon_sym_ATifdef] = ACTIONS(1482), [anon_sym_ATifndef] = ACTIONS(1482), [anon_sym_ATendif] = ACTIONS(1482), [anon_sym_ATelse] = ACTIONS(1482), + [anon_sym_ATpragma] = ACTIONS(1482), + [anon_sym_ATDIR] = ACTIONS(1482), + [anon_sym_ATFILENAME] = ACTIONS(1482), + [sym_id] = ACTIONS(1484), + [sym_pattern] = ACTIONS(1482), + [sym_ipv6] = ACTIONS(1484), + [sym_ipv4] = ACTIONS(1484), + [sym_port] = ACTIONS(1482), + [sym_floatp] = ACTIONS(1484), + [sym_hex] = ACTIONS(1484), + [sym_hostname] = ACTIONS(1484), + [aux_sym_string_token1] = ACTIONS(1482), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [313] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_COLON] = ACTIONS(127), - [anon_sym_PLUS_EQ] = ACTIONS(127), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(127), - [anon_sym_in] = ACTIONS(127), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_RBRACK] = ACTIONS(127), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_as] = ACTIONS(127), - [anon_sym_AMPdeprecated] = ACTIONS(127), - [anon_sym_DASH_EQ] = ACTIONS(127), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(127), - [anon_sym_AMPerror_handler] = ACTIONS(127), - [anon_sym_AMPis_assigned] = ACTIONS(127), - [anon_sym_AMPis_used] = ACTIONS(127), - [anon_sym_AMPlog] = ACTIONS(127), - [anon_sym_AMPoptional] = ACTIONS(127), - [anon_sym_AMPraw_output] = ACTIONS(127), - [anon_sym_AMPredef] = ACTIONS(127), - [anon_sym_AMPadd_func] = ACTIONS(127), - [anon_sym_AMPbackend] = ACTIONS(127), - [anon_sym_AMPbroker_store] = ACTIONS(127), - [anon_sym_AMPcreate_expire] = ACTIONS(127), - [anon_sym_AMPdefault] = ACTIONS(127), - [anon_sym_AMPdelete_func] = ACTIONS(127), - [anon_sym_AMPexpire_func] = ACTIONS(127), - [anon_sym_AMPgroup] = ACTIONS(127), - [anon_sym_AMPon_change] = ACTIONS(127), - [anon_sym_AMPpriority] = ACTIONS(127), - [anon_sym_AMPread_expire] = ACTIONS(127), - [anon_sym_AMPtype_column] = ACTIONS(127), - [anon_sym_AMPwrite_expire] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_BANG] = ACTIONS(129), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_is] = ACTIONS(127), - [anon_sym_STAR] = ACTIONS(127), - [anon_sym_SLASH] = ACTIONS(127), - [anon_sym_PERCENT] = ACTIONS(127), - [anon_sym_LT] = ACTIONS(129), - [anon_sym_LT_EQ] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_GT_EQ] = ACTIONS(127), - [anon_sym_AMP] = ACTIONS(129), - [anon_sym_CARET] = ACTIONS(127), - [anon_sym_QMARK] = ACTIONS(129), - [anon_sym_EQ_EQ] = ACTIONS(127), - [anon_sym_BANG_EQ] = ACTIONS(127), - [anon_sym_AMP_AMP] = ACTIONS(127), - [anon_sym_PIPE_PIPE] = ACTIONS(127), - [anon_sym_QMARK_DOLLAR] = ACTIONS(127), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [anon_sym_module] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_export] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_global] = ACTIONS(1490), - [anon_sym_option] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_redef] = ACTIONS(1490), - [anon_sym_record] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_print] = ACTIONS(1490), - [anon_sym_event] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_next] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_fallthrough] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_add] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_local] = ACTIONS(1490), - [anon_sym_when] = ACTIONS(1490), - [anon_sym_assert] = ACTIONS(1490), - [anon_sym_table] = ACTIONS(1490), - [anon_sym_set] = ACTIONS(1490), - [anon_sym_vector] = ACTIONS(1490), - [anon_sym_function] = ACTIONS(1490), - [anon_sym_hook] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_copy] = ACTIONS(1490), - [anon_sym_schedule] = ACTIONS(1490), - [aux_sym_constant_token1] = ACTIONS(1490), - [anon_sym_T] = ACTIONS(1490), - [anon_sym_F] = ACTIONS(1490), - [anon_sym_ATdeprecated] = ACTIONS(1488), - [anon_sym_ATload] = ACTIONS(1490), - [anon_sym_ATload_DASHsigs] = ACTIONS(1488), - [anon_sym_ATload_DASHplugin] = ACTIONS(1488), - [anon_sym_ATunload] = ACTIONS(1488), - [anon_sym_ATprefixes] = ACTIONS(1488), - [anon_sym_ATif] = ACTIONS(1490), - [anon_sym_ATifdef] = ACTIONS(1488), - [anon_sym_ATifndef] = ACTIONS(1488), - [anon_sym_ATendif] = ACTIONS(1488), - [anon_sym_ATelse] = ACTIONS(1488), - [anon_sym_ATDIR] = ACTIONS(1488), - [anon_sym_ATFILENAME] = ACTIONS(1488), - [sym_id] = ACTIONS(1490), - [sym_pattern] = ACTIONS(1488), - [sym_ipv6] = ACTIONS(1490), - [sym_ipv4] = ACTIONS(1490), - [sym_port] = ACTIONS(1488), - [sym_floatp] = ACTIONS(1490), - [sym_hex] = ACTIONS(1490), - [sym_hostname] = ACTIONS(1490), - [aux_sym_string_token1] = ACTIONS(1488), + [298] = { + [ts_builtin_sym_end] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_export] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_global] = ACTIONS(1488), + [anon_sym_option] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_redef] = ACTIONS(1488), + [anon_sym_record] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_print] = ACTIONS(1488), + [anon_sym_event] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_next] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_fallthrough] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_add] = ACTIONS(1488), + [anon_sym_delete] = ACTIONS(1488), + [anon_sym_local] = ACTIONS(1488), + [anon_sym_when] = ACTIONS(1488), + [anon_sym_assert] = ACTIONS(1488), + [anon_sym_table] = ACTIONS(1488), + [anon_sym_set] = ACTIONS(1488), + [anon_sym_vector] = ACTIONS(1488), + [anon_sym_function] = ACTIONS(1488), + [anon_sym_hook] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1486), + [anon_sym_PIPE] = ACTIONS(1486), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [anon_sym_BANG] = ACTIONS(1486), + [anon_sym_TILDE] = ACTIONS(1486), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_copy] = ACTIONS(1488), + [anon_sym_schedule] = ACTIONS(1488), + [aux_sym_constant_token1] = ACTIONS(1488), + [anon_sym_T] = ACTIONS(1488), + [anon_sym_F] = ACTIONS(1488), + [anon_sym_ATdeprecated] = ACTIONS(1486), + [anon_sym_ATload] = ACTIONS(1488), + [anon_sym_ATload_DASHsigs] = ACTIONS(1486), + [anon_sym_ATload_DASHplugin] = ACTIONS(1486), + [anon_sym_ATunload] = ACTIONS(1486), + [anon_sym_ATprefixes] = ACTIONS(1486), + [anon_sym_ATif] = ACTIONS(1488), + [anon_sym_ATifdef] = ACTIONS(1486), + [anon_sym_ATifndef] = ACTIONS(1486), + [anon_sym_ATendif] = ACTIONS(1486), + [anon_sym_ATelse] = ACTIONS(1486), + [anon_sym_ATpragma] = ACTIONS(1486), + [anon_sym_ATDIR] = ACTIONS(1486), + [anon_sym_ATFILENAME] = ACTIONS(1486), + [sym_id] = ACTIONS(1488), + [sym_pattern] = ACTIONS(1486), + [sym_ipv6] = ACTIONS(1488), + [sym_ipv4] = ACTIONS(1488), + [sym_port] = ACTIONS(1486), + [sym_floatp] = ACTIONS(1488), + [sym_hex] = ACTIONS(1488), + [sym_hostname] = ACTIONS(1488), + [aux_sym_string_token1] = ACTIONS(1486), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_module] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_export] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_global] = ACTIONS(1494), - [anon_sym_option] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_redef] = ACTIONS(1494), - [anon_sym_record] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_print] = ACTIONS(1494), - [anon_sym_event] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_next] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_fallthrough] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_add] = ACTIONS(1494), - [anon_sym_delete] = ACTIONS(1494), - [anon_sym_local] = ACTIONS(1494), - [anon_sym_when] = ACTIONS(1494), - [anon_sym_assert] = ACTIONS(1494), - [anon_sym_table] = ACTIONS(1494), - [anon_sym_set] = ACTIONS(1494), - [anon_sym_vector] = ACTIONS(1494), - [anon_sym_function] = ACTIONS(1494), - [anon_sym_hook] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1492), + [299] = { + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_in] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_as] = ACTIONS(1490), + [anon_sym_AMPdeprecated] = ACTIONS(1490), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1490), + [anon_sym_AMPerror_handler] = ACTIONS(1490), + [anon_sym_AMPis_assigned] = ACTIONS(1490), + [anon_sym_AMPis_used] = ACTIONS(1490), + [anon_sym_AMPlog] = ACTIONS(1490), + [anon_sym_AMPoptional] = ACTIONS(1490), + [anon_sym_AMPraw_output] = ACTIONS(1490), + [anon_sym_AMPredef] = ACTIONS(1490), + [anon_sym_AMPadd_func] = ACTIONS(1490), + [anon_sym_AMPbackend] = ACTIONS(1490), + [anon_sym_AMPbroker_store] = ACTIONS(1490), + [anon_sym_AMPcreate_expire] = ACTIONS(1490), + [anon_sym_AMPdefault] = ACTIONS(1490), + [anon_sym_AMPdelete_func] = ACTIONS(1490), + [anon_sym_AMPexpire_func] = ACTIONS(1490), + [anon_sym_AMPgroup] = ACTIONS(1490), + [anon_sym_AMPon_change] = ACTIONS(1490), + [anon_sym_AMPpriority] = ACTIONS(1490), + [anon_sym_AMPread_expire] = ACTIONS(1490), + [anon_sym_AMPtype_column] = ACTIONS(1490), + [anon_sym_AMPwrite_expire] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1490), [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1492), [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_copy] = ACTIONS(1494), - [anon_sym_schedule] = ACTIONS(1494), - [aux_sym_constant_token1] = ACTIONS(1494), - [anon_sym_T] = ACTIONS(1494), - [anon_sym_F] = ACTIONS(1494), - [anon_sym_ATdeprecated] = ACTIONS(1492), - [anon_sym_ATload] = ACTIONS(1494), - [anon_sym_ATload_DASHsigs] = ACTIONS(1492), - [anon_sym_ATload_DASHplugin] = ACTIONS(1492), - [anon_sym_ATunload] = ACTIONS(1492), - [anon_sym_ATprefixes] = ACTIONS(1492), - [anon_sym_ATif] = ACTIONS(1494), - [anon_sym_ATifdef] = ACTIONS(1492), - [anon_sym_ATifndef] = ACTIONS(1492), - [anon_sym_ATendif] = ACTIONS(1492), - [anon_sym_ATelse] = ACTIONS(1492), - [anon_sym_ATDIR] = ACTIONS(1492), - [anon_sym_ATFILENAME] = ACTIONS(1492), - [sym_id] = ACTIONS(1494), - [sym_pattern] = ACTIONS(1492), - [sym_ipv6] = ACTIONS(1494), - [sym_ipv4] = ACTIONS(1494), - [sym_port] = ACTIONS(1492), - [sym_floatp] = ACTIONS(1494), - [sym_hex] = ACTIONS(1494), - [sym_hostname] = ACTIONS(1494), - [aux_sym_string_token1] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_is] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_SLASH] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1490), + [anon_sym_ATdeprecated] = ACTIONS(1490), + [anon_sym_ATload] = ACTIONS(1492), + [anon_sym_ATload_DASHsigs] = ACTIONS(1490), + [anon_sym_ATload_DASHplugin] = ACTIONS(1490), + [anon_sym_ATunload] = ACTIONS(1490), + [anon_sym_ATprefixes] = ACTIONS(1490), + [anon_sym_ATif] = ACTIONS(1492), + [anon_sym_ATifdef] = ACTIONS(1490), + [anon_sym_ATifndef] = ACTIONS(1490), + [anon_sym_ATendif] = ACTIONS(1490), + [anon_sym_ATelse] = ACTIONS(1490), + [anon_sym_ATpragma] = ACTIONS(1490), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [316] = { - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_RBRACE] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_RPAREN] = ACTIONS(480), - [anon_sym_COMMA] = ACTIONS(480), - [anon_sym_in] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_RBRACK] = ACTIONS(480), - [anon_sym_EQ] = ACTIONS(482), - [anon_sym_as] = ACTIONS(480), - [anon_sym_of] = ACTIONS(1496), - [anon_sym_AMPdeprecated] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(480), - [anon_sym_AMPerror_handler] = ACTIONS(480), - [anon_sym_AMPis_assigned] = ACTIONS(480), - [anon_sym_AMPis_used] = ACTIONS(480), - [anon_sym_AMPlog] = ACTIONS(480), - [anon_sym_AMPoptional] = ACTIONS(480), - [anon_sym_AMPraw_output] = ACTIONS(480), - [anon_sym_AMPredef] = ACTIONS(480), - [anon_sym_AMPadd_func] = ACTIONS(480), - [anon_sym_AMPbackend] = ACTIONS(480), - [anon_sym_AMPbroker_store] = ACTIONS(480), - [anon_sym_AMPcreate_expire] = ACTIONS(480), - [anon_sym_AMPdefault] = ACTIONS(480), - [anon_sym_AMPdelete_func] = ACTIONS(480), - [anon_sym_AMPexpire_func] = ACTIONS(480), - [anon_sym_AMPgroup] = ACTIONS(480), - [anon_sym_AMPon_change] = ACTIONS(480), - [anon_sym_AMPpriority] = ACTIONS(480), - [anon_sym_AMPread_expire] = ACTIONS(480), - [anon_sym_AMPtype_column] = ACTIONS(480), - [anon_sym_AMPwrite_expire] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(482), - [anon_sym_BANG] = ACTIONS(482), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_is] = ACTIONS(480), - [anon_sym_STAR] = ACTIONS(480), - [anon_sym_SLASH] = ACTIONS(480), - [anon_sym_PERCENT] = ACTIONS(480), - [anon_sym_LT] = ACTIONS(482), - [anon_sym_LT_EQ] = ACTIONS(480), - [anon_sym_GT] = ACTIONS(482), - [anon_sym_GT_EQ] = ACTIONS(480), - [anon_sym_AMP] = ACTIONS(482), - [anon_sym_CARET] = ACTIONS(480), - [anon_sym_QMARK] = ACTIONS(482), - [anon_sym_EQ_EQ] = ACTIONS(480), - [anon_sym_BANG_EQ] = ACTIONS(480), - [anon_sym_AMP_AMP] = ACTIONS(480), - [anon_sym_PIPE_PIPE] = ACTIONS(480), - [anon_sym_QMARK_DOLLAR] = ACTIONS(480), - [anon_sym_ATdeprecated] = ACTIONS(480), - [anon_sym_ATload] = ACTIONS(482), - [anon_sym_ATload_DASHsigs] = ACTIONS(480), - [anon_sym_ATload_DASHplugin] = ACTIONS(480), - [anon_sym_ATunload] = ACTIONS(480), - [anon_sym_ATprefixes] = ACTIONS(480), - [anon_sym_ATif] = ACTIONS(482), - [anon_sym_ATifdef] = ACTIONS(480), - [anon_sym_ATifndef] = ACTIONS(480), - [anon_sym_ATendif] = ACTIONS(480), - [anon_sym_ATelse] = ACTIONS(480), + [300] = { + [ts_builtin_sym_end] = ACTIONS(1494), + [anon_sym_module] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_export] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_global] = ACTIONS(1496), + [anon_sym_option] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_redef] = ACTIONS(1496), + [anon_sym_record] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_print] = ACTIONS(1496), + [anon_sym_event] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_next] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_fallthrough] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_add] = ACTIONS(1496), + [anon_sym_delete] = ACTIONS(1496), + [anon_sym_local] = ACTIONS(1496), + [anon_sym_when] = ACTIONS(1496), + [anon_sym_assert] = ACTIONS(1496), + [anon_sym_table] = ACTIONS(1496), + [anon_sym_set] = ACTIONS(1496), + [anon_sym_vector] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1496), + [anon_sym_hook] = ACTIONS(1496), + [anon_sym_DOLLAR] = ACTIONS(1494), + [anon_sym_PIPE] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_copy] = ACTIONS(1496), + [anon_sym_schedule] = ACTIONS(1496), + [aux_sym_constant_token1] = ACTIONS(1496), + [anon_sym_T] = ACTIONS(1496), + [anon_sym_F] = ACTIONS(1496), + [anon_sym_ATdeprecated] = ACTIONS(1494), + [anon_sym_ATload] = ACTIONS(1496), + [anon_sym_ATload_DASHsigs] = ACTIONS(1494), + [anon_sym_ATload_DASHplugin] = ACTIONS(1494), + [anon_sym_ATunload] = ACTIONS(1494), + [anon_sym_ATprefixes] = ACTIONS(1494), + [anon_sym_ATif] = ACTIONS(1496), + [anon_sym_ATifdef] = ACTIONS(1494), + [anon_sym_ATifndef] = ACTIONS(1494), + [anon_sym_ATendif] = ACTIONS(1494), + [anon_sym_ATelse] = ACTIONS(1494), + [anon_sym_ATpragma] = ACTIONS(1494), + [anon_sym_ATDIR] = ACTIONS(1494), + [anon_sym_ATFILENAME] = ACTIONS(1494), + [sym_id] = ACTIONS(1496), + [sym_pattern] = ACTIONS(1494), + [sym_ipv6] = ACTIONS(1496), + [sym_ipv4] = ACTIONS(1496), + [sym_port] = ACTIONS(1494), + [sym_floatp] = ACTIONS(1496), + [sym_hex] = ACTIONS(1496), + [sym_hostname] = ACTIONS(1496), + [aux_sym_string_token1] = ACTIONS(1494), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [317] = { + [301] = { [ts_builtin_sym_end] = ACTIONS(1498), [anon_sym_module] = ACTIONS(1500), [anon_sym_SEMI] = ACTIONS(1498), @@ -41790,6 +40552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1498), [anon_sym_ATendif] = ACTIONS(1498), [anon_sym_ATelse] = ACTIONS(1498), + [anon_sym_ATpragma] = ACTIONS(1498), [anon_sym_ATDIR] = ACTIONS(1498), [anon_sym_ATFILENAME] = ACTIONS(1498), [sym_id] = ACTIONS(1500), @@ -41807,7 +40570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [318] = { + [302] = { [ts_builtin_sym_end] = ACTIONS(1502), [anon_sym_module] = ACTIONS(1504), [anon_sym_SEMI] = ACTIONS(1502), @@ -41865,6 +40628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1502), [anon_sym_ATendif] = ACTIONS(1502), [anon_sym_ATelse] = ACTIONS(1502), + [anon_sym_ATpragma] = ACTIONS(1502), [anon_sym_ATDIR] = ACTIONS(1502), [anon_sym_ATFILENAME] = ACTIONS(1502), [sym_id] = ACTIONS(1504), @@ -41882,7 +40646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [319] = { + [303] = { [ts_builtin_sym_end] = ACTIONS(1506), [anon_sym_module] = ACTIONS(1508), [anon_sym_SEMI] = ACTIONS(1506), @@ -41940,6 +40704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1506), [anon_sym_ATendif] = ACTIONS(1506), [anon_sym_ATelse] = ACTIONS(1506), + [anon_sym_ATpragma] = ACTIONS(1506), [anon_sym_ATDIR] = ACTIONS(1506), [anon_sym_ATFILENAME] = ACTIONS(1506), [sym_id] = ACTIONS(1508), @@ -41957,232 +40722,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1512), + [304] = { [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_export] = ACTIONS(1512), [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_global] = ACTIONS(1512), - [anon_sym_option] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_redef] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_type] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), + [anon_sym_RPAREN] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), + [anon_sym_RBRACK] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_AMPdeprecated] = ACTIONS(1510), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1510), + [anon_sym_AMPerror_handler] = ACTIONS(1510), + [anon_sym_AMPis_assigned] = ACTIONS(1510), + [anon_sym_AMPis_used] = ACTIONS(1510), + [anon_sym_AMPlog] = ACTIONS(1510), + [anon_sym_AMPoptional] = ACTIONS(1510), + [anon_sym_AMPraw_output] = ACTIONS(1510), + [anon_sym_AMPredef] = ACTIONS(1510), + [anon_sym_AMPadd_func] = ACTIONS(1510), + [anon_sym_AMPbackend] = ACTIONS(1510), + [anon_sym_AMPbroker_store] = ACTIONS(1510), + [anon_sym_AMPcreate_expire] = ACTIONS(1510), + [anon_sym_AMPdefault] = ACTIONS(1510), + [anon_sym_AMPdelete_func] = ACTIONS(1510), + [anon_sym_AMPexpire_func] = ACTIONS(1510), + [anon_sym_AMPgroup] = ACTIONS(1510), + [anon_sym_AMPon_change] = ACTIONS(1510), + [anon_sym_AMPpriority] = ACTIONS(1510), + [anon_sym_AMPread_expire] = ACTIONS(1510), + [anon_sym_AMPtype_column] = ACTIONS(1510), + [anon_sym_AMPwrite_expire] = ACTIONS(1510), [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_is] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PERCENT] = ACTIONS(1510), + [anon_sym_LT] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1514), + [anon_sym_GT_EQ] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1510), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_EQ_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1510), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1510), [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), + [anon_sym_ATload] = ACTIONS(1514), [anon_sym_ATload_DASHsigs] = ACTIONS(1510), [anon_sym_ATload_DASHplugin] = ACTIONS(1510), [anon_sym_ATunload] = ACTIONS(1510), [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), + [anon_sym_ATif] = ACTIONS(1514), [anon_sym_ATifdef] = ACTIONS(1510), [anon_sym_ATifndef] = ACTIONS(1510), [anon_sym_ATendif] = ACTIONS(1510), [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_ATpragma] = ACTIONS(1510), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [321] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [anon_sym_module] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_export] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_global] = ACTIONS(1516), - [anon_sym_option] = ACTIONS(1516), - [anon_sym_const] = ACTIONS(1516), - [anon_sym_redef] = ACTIONS(1516), - [anon_sym_record] = ACTIONS(1516), - [anon_sym_type] = ACTIONS(1516), - [anon_sym_print] = ACTIONS(1516), - [anon_sym_event] = ACTIONS(1516), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_for] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1516), - [anon_sym_next] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_fallthrough] = ACTIONS(1516), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_add] = ACTIONS(1516), - [anon_sym_delete] = ACTIONS(1516), - [anon_sym_local] = ACTIONS(1516), - [anon_sym_when] = ACTIONS(1516), - [anon_sym_assert] = ACTIONS(1516), - [anon_sym_table] = ACTIONS(1516), - [anon_sym_set] = ACTIONS(1516), - [anon_sym_vector] = ACTIONS(1516), - [anon_sym_function] = ACTIONS(1516), - [anon_sym_hook] = ACTIONS(1516), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_copy] = ACTIONS(1516), - [anon_sym_schedule] = ACTIONS(1516), - [aux_sym_constant_token1] = ACTIONS(1516), - [anon_sym_T] = ACTIONS(1516), - [anon_sym_F] = ACTIONS(1516), - [anon_sym_ATdeprecated] = ACTIONS(1514), - [anon_sym_ATload] = ACTIONS(1516), - [anon_sym_ATload_DASHsigs] = ACTIONS(1514), - [anon_sym_ATload_DASHplugin] = ACTIONS(1514), - [anon_sym_ATunload] = ACTIONS(1514), - [anon_sym_ATprefixes] = ACTIONS(1514), - [anon_sym_ATif] = ACTIONS(1516), - [anon_sym_ATifdef] = ACTIONS(1514), - [anon_sym_ATifndef] = ACTIONS(1514), - [anon_sym_ATendif] = ACTIONS(1514), - [anon_sym_ATelse] = ACTIONS(1514), - [anon_sym_ATDIR] = ACTIONS(1514), - [anon_sym_ATFILENAME] = ACTIONS(1514), - [sym_id] = ACTIONS(1516), - [sym_pattern] = ACTIONS(1514), - [sym_ipv6] = ACTIONS(1516), - [sym_ipv4] = ACTIONS(1516), - [sym_port] = ACTIONS(1514), - [sym_floatp] = ACTIONS(1516), - [sym_hex] = ACTIONS(1516), - [sym_hostname] = ACTIONS(1516), - [aux_sym_string_token1] = ACTIONS(1514), + [305] = { + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_RBRACE] = ACTIONS(1516), + [anon_sym_COLON] = ACTIONS(1518), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_RPAREN] = ACTIONS(1516), + [anon_sym_COMMA] = ACTIONS(1516), + [anon_sym_in] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_RBRACK] = ACTIONS(1516), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_as] = ACTIONS(1516), + [anon_sym_AMPdeprecated] = ACTIONS(1516), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1516), + [anon_sym_AMPerror_handler] = ACTIONS(1516), + [anon_sym_AMPis_assigned] = ACTIONS(1516), + [anon_sym_AMPis_used] = ACTIONS(1516), + [anon_sym_AMPlog] = ACTIONS(1516), + [anon_sym_AMPoptional] = ACTIONS(1516), + [anon_sym_AMPraw_output] = ACTIONS(1516), + [anon_sym_AMPredef] = ACTIONS(1516), + [anon_sym_AMPadd_func] = ACTIONS(1516), + [anon_sym_AMPbackend] = ACTIONS(1516), + [anon_sym_AMPbroker_store] = ACTIONS(1516), + [anon_sym_AMPcreate_expire] = ACTIONS(1516), + [anon_sym_AMPdefault] = ACTIONS(1516), + [anon_sym_AMPdelete_func] = ACTIONS(1516), + [anon_sym_AMPexpire_func] = ACTIONS(1516), + [anon_sym_AMPgroup] = ACTIONS(1516), + [anon_sym_AMPon_change] = ACTIONS(1516), + [anon_sym_AMPpriority] = ACTIONS(1516), + [anon_sym_AMPread_expire] = ACTIONS(1516), + [anon_sym_AMPtype_column] = ACTIONS(1516), + [anon_sym_AMPwrite_expire] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_is] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_EQ] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1516), + [anon_sym_BANG_EQ] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1516), + [anon_sym_PIPE_PIPE] = ACTIONS(1516), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1516), + [anon_sym_ATdeprecated] = ACTIONS(1516), + [anon_sym_ATload] = ACTIONS(1520), + [anon_sym_ATload_DASHsigs] = ACTIONS(1516), + [anon_sym_ATload_DASHplugin] = ACTIONS(1516), + [anon_sym_ATunload] = ACTIONS(1516), + [anon_sym_ATprefixes] = ACTIONS(1516), + [anon_sym_ATif] = ACTIONS(1520), + [anon_sym_ATifdef] = ACTIONS(1516), + [anon_sym_ATifndef] = ACTIONS(1516), + [anon_sym_ATendif] = ACTIONS(1516), + [anon_sym_ATelse] = ACTIONS(1516), + [anon_sym_ATpragma] = ACTIONS(1516), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [322] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1518), - [anon_sym_export] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_global] = ACTIONS(1520), - [anon_sym_option] = ACTIONS(1520), - [anon_sym_const] = ACTIONS(1520), - [anon_sym_redef] = ACTIONS(1520), - [anon_sym_record] = ACTIONS(1520), - [anon_sym_type] = ACTIONS(1520), - [anon_sym_print] = ACTIONS(1520), - [anon_sym_event] = ACTIONS(1520), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_for] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1520), - [anon_sym_next] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_fallthrough] = ACTIONS(1520), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_add] = ACTIONS(1520), - [anon_sym_delete] = ACTIONS(1520), - [anon_sym_local] = ACTIONS(1520), - [anon_sym_when] = ACTIONS(1520), - [anon_sym_assert] = ACTIONS(1520), - [anon_sym_table] = ACTIONS(1520), - [anon_sym_set] = ACTIONS(1520), - [anon_sym_vector] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_hook] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_copy] = ACTIONS(1520), - [anon_sym_schedule] = ACTIONS(1520), - [aux_sym_constant_token1] = ACTIONS(1520), - [anon_sym_T] = ACTIONS(1520), - [anon_sym_F] = ACTIONS(1520), - [anon_sym_ATdeprecated] = ACTIONS(1518), - [anon_sym_ATload] = ACTIONS(1520), - [anon_sym_ATload_DASHsigs] = ACTIONS(1518), - [anon_sym_ATload_DASHplugin] = ACTIONS(1518), - [anon_sym_ATunload] = ACTIONS(1518), - [anon_sym_ATprefixes] = ACTIONS(1518), - [anon_sym_ATif] = ACTIONS(1520), - [anon_sym_ATifdef] = ACTIONS(1518), - [anon_sym_ATifndef] = ACTIONS(1518), - [anon_sym_ATendif] = ACTIONS(1518), - [anon_sym_ATelse] = ACTIONS(1518), - [anon_sym_ATDIR] = ACTIONS(1518), - [anon_sym_ATFILENAME] = ACTIONS(1518), - [sym_id] = ACTIONS(1520), - [sym_pattern] = ACTIONS(1518), - [sym_ipv6] = ACTIONS(1520), - [sym_ipv4] = ACTIONS(1520), - [sym_port] = ACTIONS(1518), - [sym_floatp] = ACTIONS(1520), - [sym_hex] = ACTIONS(1520), - [sym_hostname] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), + [306] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_module] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_export] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_global] = ACTIONS(1470), + [anon_sym_option] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_redef] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [323] = { + [307] = { [ts_builtin_sym_end] = ACTIONS(1522), [anon_sym_module] = ACTIONS(1524), [anon_sym_SEMI] = ACTIONS(1522), @@ -42240,6 +41008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1522), [anon_sym_ATendif] = ACTIONS(1522), [anon_sym_ATelse] = ACTIONS(1522), + [anon_sym_ATpragma] = ACTIONS(1522), [anon_sym_ATDIR] = ACTIONS(1522), [anon_sym_ATFILENAME] = ACTIONS(1522), [sym_id] = ACTIONS(1524), @@ -42257,7 +41026,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [324] = { + [308] = { [ts_builtin_sym_end] = ACTIONS(1526), [anon_sym_module] = ACTIONS(1528), [anon_sym_SEMI] = ACTIONS(1526), @@ -42315,6 +41084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1526), [anon_sym_ATendif] = ACTIONS(1526), [anon_sym_ATelse] = ACTIONS(1526), + [anon_sym_ATpragma] = ACTIONS(1526), [anon_sym_ATDIR] = ACTIONS(1526), [anon_sym_ATFILENAME] = ACTIONS(1526), [sym_id] = ACTIONS(1528), @@ -42332,82 +41102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [325] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_COLON] = ACTIONS(123), - [anon_sym_PLUS_EQ] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_COMMA] = ACTIONS(123), - [anon_sym_in] = ACTIONS(123), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_RBRACK] = ACTIONS(123), - [anon_sym_EQ] = ACTIONS(125), - [anon_sym_as] = ACTIONS(123), - [anon_sym_AMPdeprecated] = ACTIONS(123), - [anon_sym_DASH_EQ] = ACTIONS(123), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(123), - [anon_sym_AMPerror_handler] = ACTIONS(123), - [anon_sym_AMPis_assigned] = ACTIONS(123), - [anon_sym_AMPis_used] = ACTIONS(123), - [anon_sym_AMPlog] = ACTIONS(123), - [anon_sym_AMPoptional] = ACTIONS(123), - [anon_sym_AMPraw_output] = ACTIONS(123), - [anon_sym_AMPredef] = ACTIONS(123), - [anon_sym_AMPadd_func] = ACTIONS(123), - [anon_sym_AMPbackend] = ACTIONS(123), - [anon_sym_AMPbroker_store] = ACTIONS(123), - [anon_sym_AMPcreate_expire] = ACTIONS(123), - [anon_sym_AMPdefault] = ACTIONS(123), - [anon_sym_AMPdelete_func] = ACTIONS(123), - [anon_sym_AMPexpire_func] = ACTIONS(123), - [anon_sym_AMPgroup] = ACTIONS(123), - [anon_sym_AMPon_change] = ACTIONS(123), - [anon_sym_AMPpriority] = ACTIONS(123), - [anon_sym_AMPread_expire] = ACTIONS(123), - [anon_sym_AMPtype_column] = ACTIONS(123), - [anon_sym_AMPwrite_expire] = ACTIONS(123), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_is] = ACTIONS(123), - [anon_sym_STAR] = ACTIONS(123), - [anon_sym_SLASH] = ACTIONS(123), - [anon_sym_PERCENT] = ACTIONS(123), - [anon_sym_LT] = ACTIONS(125), - [anon_sym_LT_EQ] = ACTIONS(123), - [anon_sym_GT] = ACTIONS(125), - [anon_sym_GT_EQ] = ACTIONS(123), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(123), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_EQ_EQ] = ACTIONS(123), - [anon_sym_BANG_EQ] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(123), - [anon_sym_PIPE_PIPE] = ACTIONS(123), - [anon_sym_QMARK_DOLLAR] = ACTIONS(123), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [326] = { + [309] = { [ts_builtin_sym_end] = ACTIONS(1530), [anon_sym_module] = ACTIONS(1532), [anon_sym_SEMI] = ACTIONS(1530), @@ -42465,6 +41160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1530), [anon_sym_ATendif] = ACTIONS(1530), [anon_sym_ATelse] = ACTIONS(1530), + [anon_sym_ATpragma] = ACTIONS(1530), [anon_sym_ATDIR] = ACTIONS(1530), [anon_sym_ATFILENAME] = ACTIONS(1530), [sym_id] = ACTIONS(1532), @@ -42482,7 +41178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [327] = { + [310] = { [ts_builtin_sym_end] = ACTIONS(1534), [anon_sym_module] = ACTIONS(1536), [anon_sym_SEMI] = ACTIONS(1534), @@ -42540,6 +41236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1534), [anon_sym_ATendif] = ACTIONS(1534), [anon_sym_ATelse] = ACTIONS(1534), + [anon_sym_ATpragma] = ACTIONS(1534), [anon_sym_ATDIR] = ACTIONS(1534), [anon_sym_ATFILENAME] = ACTIONS(1534), [sym_id] = ACTIONS(1536), @@ -42557,7 +41254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [328] = { + [311] = { [ts_builtin_sym_end] = ACTIONS(1538), [anon_sym_module] = ACTIONS(1540), [anon_sym_SEMI] = ACTIONS(1538), @@ -42615,6 +41312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1538), [anon_sym_ATendif] = ACTIONS(1538), [anon_sym_ATelse] = ACTIONS(1538), + [anon_sym_ATpragma] = ACTIONS(1538), [anon_sym_ATDIR] = ACTIONS(1538), [anon_sym_ATFILENAME] = ACTIONS(1538), [sym_id] = ACTIONS(1540), @@ -42632,7 +41330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [329] = { + [312] = { [ts_builtin_sym_end] = ACTIONS(1542), [anon_sym_module] = ACTIONS(1544), [anon_sym_SEMI] = ACTIONS(1542), @@ -42690,6 +41388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1542), [anon_sym_ATendif] = ACTIONS(1542), [anon_sym_ATelse] = ACTIONS(1542), + [anon_sym_ATpragma] = ACTIONS(1542), [anon_sym_ATDIR] = ACTIONS(1542), [anon_sym_ATFILENAME] = ACTIONS(1542), [sym_id] = ACTIONS(1544), @@ -42707,7 +41406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [330] = { + [313] = { [ts_builtin_sym_end] = ACTIONS(1546), [anon_sym_module] = ACTIONS(1548), [anon_sym_SEMI] = ACTIONS(1546), @@ -42765,6 +41464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1546), [anon_sym_ATendif] = ACTIONS(1546), [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), [anon_sym_ATDIR] = ACTIONS(1546), [anon_sym_ATFILENAME] = ACTIONS(1546), [sym_id] = ACTIONS(1548), @@ -42782,82 +41482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [331] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [anon_sym_module] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1436), - [anon_sym_export] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_global] = ACTIONS(1438), - [anon_sym_option] = ACTIONS(1438), - [anon_sym_const] = ACTIONS(1438), - [anon_sym_redef] = ACTIONS(1438), - [anon_sym_record] = ACTIONS(1438), - [anon_sym_type] = ACTIONS(1438), - [anon_sym_print] = ACTIONS(1438), - [anon_sym_event] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_for] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1438), - [anon_sym_next] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_fallthrough] = ACTIONS(1438), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_add] = ACTIONS(1438), - [anon_sym_delete] = ACTIONS(1438), - [anon_sym_local] = ACTIONS(1438), - [anon_sym_when] = ACTIONS(1438), - [anon_sym_assert] = ACTIONS(1438), - [anon_sym_table] = ACTIONS(1438), - [anon_sym_set] = ACTIONS(1438), - [anon_sym_vector] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_hook] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_copy] = ACTIONS(1438), - [anon_sym_schedule] = ACTIONS(1438), - [aux_sym_constant_token1] = ACTIONS(1438), - [anon_sym_T] = ACTIONS(1438), - [anon_sym_F] = ACTIONS(1438), - [anon_sym_ATdeprecated] = ACTIONS(1436), - [anon_sym_ATload] = ACTIONS(1438), - [anon_sym_ATload_DASHsigs] = ACTIONS(1436), - [anon_sym_ATload_DASHplugin] = ACTIONS(1436), - [anon_sym_ATunload] = ACTIONS(1436), - [anon_sym_ATprefixes] = ACTIONS(1436), - [anon_sym_ATif] = ACTIONS(1438), - [anon_sym_ATifdef] = ACTIONS(1436), - [anon_sym_ATifndef] = ACTIONS(1436), - [anon_sym_ATendif] = ACTIONS(1436), - [anon_sym_ATelse] = ACTIONS(1436), - [anon_sym_ATDIR] = ACTIONS(1436), - [anon_sym_ATFILENAME] = ACTIONS(1436), - [sym_id] = ACTIONS(1438), - [sym_pattern] = ACTIONS(1436), - [sym_ipv6] = ACTIONS(1438), - [sym_ipv4] = ACTIONS(1438), - [sym_port] = ACTIONS(1436), - [sym_floatp] = ACTIONS(1438), - [sym_hex] = ACTIONS(1438), - [sym_hostname] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1436), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [332] = { + [314] = { [ts_builtin_sym_end] = ACTIONS(1550), [anon_sym_module] = ACTIONS(1552), [anon_sym_SEMI] = ACTIONS(1550), @@ -42915,6 +41540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1550), [anon_sym_ATendif] = ACTIONS(1550), [anon_sym_ATelse] = ACTIONS(1550), + [anon_sym_ATpragma] = ACTIONS(1550), [anon_sym_ATDIR] = ACTIONS(1550), [anon_sym_ATFILENAME] = ACTIONS(1550), [sym_id] = ACTIONS(1552), @@ -42932,7 +41558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [333] = { + [315] = { [ts_builtin_sym_end] = ACTIONS(1554), [anon_sym_module] = ACTIONS(1556), [anon_sym_SEMI] = ACTIONS(1554), @@ -42990,6 +41616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1554), [anon_sym_ATendif] = ACTIONS(1554), [anon_sym_ATelse] = ACTIONS(1554), + [anon_sym_ATpragma] = ACTIONS(1554), [anon_sym_ATDIR] = ACTIONS(1554), [anon_sym_ATFILENAME] = ACTIONS(1554), [sym_id] = ACTIONS(1556), @@ -43007,139 +41634,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [334] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_SEMI] = ACTIONS(1530), - [anon_sym_export] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1530), - [anon_sym_global] = ACTIONS(1532), - [anon_sym_option] = ACTIONS(1532), - [anon_sym_const] = ACTIONS(1532), - [anon_sym_redef] = ACTIONS(1532), - [anon_sym_record] = ACTIONS(1532), - [anon_sym_type] = ACTIONS(1532), - [anon_sym_print] = ACTIONS(1532), - [anon_sym_event] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1530), - [anon_sym_switch] = ACTIONS(1532), - [anon_sym_for] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1532), - [anon_sym_next] = ACTIONS(1532), - [anon_sym_break] = ACTIONS(1532), - [anon_sym_fallthrough] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1532), - [anon_sym_add] = ACTIONS(1532), - [anon_sym_delete] = ACTIONS(1532), - [anon_sym_local] = ACTIONS(1532), - [anon_sym_when] = ACTIONS(1532), - [anon_sym_assert] = ACTIONS(1532), - [anon_sym_table] = ACTIONS(1532), - [anon_sym_set] = ACTIONS(1532), - [anon_sym_vector] = ACTIONS(1532), - [anon_sym_function] = ACTIONS(1532), - [anon_sym_hook] = ACTIONS(1532), - [anon_sym_DOLLAR] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_copy] = ACTIONS(1532), - [anon_sym_schedule] = ACTIONS(1532), - [aux_sym_constant_token1] = ACTIONS(1532), - [anon_sym_T] = ACTIONS(1532), - [anon_sym_F] = ACTIONS(1532), - [anon_sym_ATdeprecated] = ACTIONS(1530), - [anon_sym_ATload] = ACTIONS(1532), - [anon_sym_ATload_DASHsigs] = ACTIONS(1530), - [anon_sym_ATload_DASHplugin] = ACTIONS(1530), - [anon_sym_ATunload] = ACTIONS(1530), - [anon_sym_ATprefixes] = ACTIONS(1530), - [anon_sym_ATif] = ACTIONS(1532), - [anon_sym_ATifdef] = ACTIONS(1530), - [anon_sym_ATifndef] = ACTIONS(1530), - [anon_sym_ATendif] = ACTIONS(1530), - [anon_sym_ATelse] = ACTIONS(1530), - [anon_sym_ATDIR] = ACTIONS(1530), - [anon_sym_ATFILENAME] = ACTIONS(1530), - [sym_id] = ACTIONS(1532), - [sym_pattern] = ACTIONS(1530), - [sym_ipv6] = ACTIONS(1532), - [sym_ipv4] = ACTIONS(1532), - [sym_port] = ACTIONS(1530), - [sym_floatp] = ACTIONS(1532), - [sym_hex] = ACTIONS(1532), - [sym_hostname] = ACTIONS(1532), - [aux_sym_string_token1] = ACTIONS(1530), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [335] = { + [316] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1560), [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_export] = ACTIONS(1560), [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_COLON] = ACTIONS(1558), - [anon_sym_PLUS_EQ] = ACTIONS(1558), + [anon_sym_global] = ACTIONS(1560), + [anon_sym_option] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_redef] = ACTIONS(1560), + [anon_sym_record] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_print] = ACTIONS(1560), + [anon_sym_event] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_RBRACK] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1558), - [anon_sym_AMPdeprecated] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1558), - [anon_sym_AMPerror_handler] = ACTIONS(1558), - [anon_sym_AMPis_assigned] = ACTIONS(1558), - [anon_sym_AMPis_used] = ACTIONS(1558), - [anon_sym_AMPlog] = ACTIONS(1558), - [anon_sym_AMPoptional] = ACTIONS(1558), - [anon_sym_AMPraw_output] = ACTIONS(1558), - [anon_sym_AMPredef] = ACTIONS(1558), - [anon_sym_AMPadd_func] = ACTIONS(1558), - [anon_sym_AMPbackend] = ACTIONS(1558), - [anon_sym_AMPbroker_store] = ACTIONS(1558), - [anon_sym_AMPcreate_expire] = ACTIONS(1558), - [anon_sym_AMPdefault] = ACTIONS(1558), - [anon_sym_AMPdelete_func] = ACTIONS(1558), - [anon_sym_AMPexpire_func] = ACTIONS(1558), - [anon_sym_AMPgroup] = ACTIONS(1558), - [anon_sym_AMPon_change] = ACTIONS(1558), - [anon_sym_AMPpriority] = ACTIONS(1558), - [anon_sym_AMPread_expire] = ACTIONS(1558), - [anon_sym_AMPtype_column] = ACTIONS(1558), - [anon_sym_AMPwrite_expire] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_next] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_fallthrough] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_add] = ACTIONS(1560), + [anon_sym_delete] = ACTIONS(1560), + [anon_sym_local] = ACTIONS(1560), + [anon_sym_when] = ACTIONS(1560), + [anon_sym_assert] = ACTIONS(1560), + [anon_sym_table] = ACTIONS(1560), + [anon_sym_set] = ACTIONS(1560), + [anon_sym_vector] = ACTIONS(1560), + [anon_sym_function] = ACTIONS(1560), + [anon_sym_hook] = ACTIONS(1560), [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), [anon_sym_DASH] = ACTIONS(1560), [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_is] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1558), + [anon_sym_copy] = ACTIONS(1560), + [anon_sym_schedule] = ACTIONS(1560), + [aux_sym_constant_token1] = ACTIONS(1560), + [anon_sym_T] = ACTIONS(1560), + [anon_sym_F] = ACTIONS(1560), [anon_sym_ATdeprecated] = ACTIONS(1558), [anon_sym_ATload] = ACTIONS(1560), [anon_sym_ATload_DASHsigs] = ACTIONS(1558), @@ -43151,145 +41692,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1558), [anon_sym_ATendif] = ACTIONS(1558), [anon_sym_ATelse] = ACTIONS(1558), + [anon_sym_ATpragma] = ACTIONS(1558), + [anon_sym_ATDIR] = ACTIONS(1558), + [anon_sym_ATFILENAME] = ACTIONS(1558), + [sym_id] = ACTIONS(1560), + [sym_pattern] = ACTIONS(1558), + [sym_ipv6] = ACTIONS(1560), + [sym_ipv4] = ACTIONS(1560), + [sym_port] = ACTIONS(1558), + [sym_floatp] = ACTIONS(1560), + [sym_hex] = ACTIONS(1560), + [sym_hostname] = ACTIONS(1560), + [aux_sym_string_token1] = ACTIONS(1558), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [336] = { - [anon_sym_SEMI] = ACTIONS(492), - [anon_sym_LBRACE] = ACTIONS(492), - [anon_sym_RBRACE] = ACTIONS(492), - [anon_sym_COLON] = ACTIONS(492), - [anon_sym_PLUS_EQ] = ACTIONS(492), - [anon_sym_LPAREN] = ACTIONS(492), - [anon_sym_RPAREN] = ACTIONS(492), - [anon_sym_COMMA] = ACTIONS(492), - [anon_sym_in] = ACTIONS(492), - [anon_sym_LBRACK] = ACTIONS(492), - [anon_sym_RBRACK] = ACTIONS(492), - [anon_sym_EQ] = ACTIONS(494), - [anon_sym_as] = ACTIONS(492), - [anon_sym_AMPdeprecated] = ACTIONS(492), - [anon_sym_DASH_EQ] = ACTIONS(492), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(492), - [anon_sym_AMPerror_handler] = ACTIONS(492), - [anon_sym_AMPis_assigned] = ACTIONS(492), - [anon_sym_AMPis_used] = ACTIONS(492), - [anon_sym_AMPlog] = ACTIONS(492), - [anon_sym_AMPoptional] = ACTIONS(492), - [anon_sym_AMPraw_output] = ACTIONS(492), - [anon_sym_AMPredef] = ACTIONS(492), - [anon_sym_AMPadd_func] = ACTIONS(492), - [anon_sym_AMPbackend] = ACTIONS(492), - [anon_sym_AMPbroker_store] = ACTIONS(492), - [anon_sym_AMPcreate_expire] = ACTIONS(492), - [anon_sym_AMPdefault] = ACTIONS(492), - [anon_sym_AMPdelete_func] = ACTIONS(492), - [anon_sym_AMPexpire_func] = ACTIONS(492), - [anon_sym_AMPgroup] = ACTIONS(492), - [anon_sym_AMPon_change] = ACTIONS(492), - [anon_sym_AMPpriority] = ACTIONS(492), - [anon_sym_AMPread_expire] = ACTIONS(492), - [anon_sym_AMPtype_column] = ACTIONS(492), - [anon_sym_AMPwrite_expire] = ACTIONS(492), - [anon_sym_DOLLAR] = ACTIONS(492), - [anon_sym_PIPE] = ACTIONS(494), - [anon_sym_BANG] = ACTIONS(494), - [anon_sym_DASH] = ACTIONS(494), - [anon_sym_PLUS] = ACTIONS(494), - [anon_sym_is] = ACTIONS(492), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(492), - [anon_sym_PERCENT] = ACTIONS(492), - [anon_sym_LT] = ACTIONS(494), - [anon_sym_LT_EQ] = ACTIONS(492), - [anon_sym_GT] = ACTIONS(494), - [anon_sym_GT_EQ] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(494), - [anon_sym_CARET] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(494), - [anon_sym_EQ_EQ] = ACTIONS(492), - [anon_sym_BANG_EQ] = ACTIONS(492), - [anon_sym_AMP_AMP] = ACTIONS(492), - [anon_sym_PIPE_PIPE] = ACTIONS(492), - [anon_sym_QMARK_DOLLAR] = ACTIONS(492), - [anon_sym_ATdeprecated] = ACTIONS(492), - [anon_sym_ATload] = ACTIONS(494), - [anon_sym_ATload_DASHsigs] = ACTIONS(492), - [anon_sym_ATload_DASHplugin] = ACTIONS(492), - [anon_sym_ATunload] = ACTIONS(492), - [anon_sym_ATprefixes] = ACTIONS(492), - [anon_sym_ATif] = ACTIONS(494), - [anon_sym_ATifdef] = ACTIONS(492), - [anon_sym_ATifndef] = ACTIONS(492), - [anon_sym_ATendif] = ACTIONS(492), - [anon_sym_ATelse] = ACTIONS(492), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [337] = { + [317] = { + [ts_builtin_sym_end] = ACTIONS(1562), + [anon_sym_module] = ACTIONS(1564), [anon_sym_SEMI] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1564), [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1562), - [anon_sym_COLON] = ACTIONS(1562), - [anon_sym_PLUS_EQ] = ACTIONS(1562), + [anon_sym_global] = ACTIONS(1564), + [anon_sym_option] = ACTIONS(1564), + [anon_sym_const] = ACTIONS(1564), + [anon_sym_redef] = ACTIONS(1564), + [anon_sym_record] = ACTIONS(1564), + [anon_sym_type] = ACTIONS(1564), + [anon_sym_print] = ACTIONS(1564), + [anon_sym_event] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_RPAREN] = ACTIONS(1562), - [anon_sym_COMMA] = ACTIONS(1562), - [anon_sym_in] = ACTIONS(1562), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_for] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_RBRACK] = ACTIONS(1562), - [anon_sym_EQ] = ACTIONS(1564), - [anon_sym_as] = ACTIONS(1562), - [anon_sym_AMPdeprecated] = ACTIONS(1562), - [anon_sym_DASH_EQ] = ACTIONS(1562), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1562), - [anon_sym_AMPerror_handler] = ACTIONS(1562), - [anon_sym_AMPis_assigned] = ACTIONS(1562), - [anon_sym_AMPis_used] = ACTIONS(1562), - [anon_sym_AMPlog] = ACTIONS(1562), - [anon_sym_AMPoptional] = ACTIONS(1562), - [anon_sym_AMPraw_output] = ACTIONS(1562), - [anon_sym_AMPredef] = ACTIONS(1562), - [anon_sym_AMPadd_func] = ACTIONS(1562), - [anon_sym_AMPbackend] = ACTIONS(1562), - [anon_sym_AMPbroker_store] = ACTIONS(1562), - [anon_sym_AMPcreate_expire] = ACTIONS(1562), - [anon_sym_AMPdefault] = ACTIONS(1562), - [anon_sym_AMPdelete_func] = ACTIONS(1562), - [anon_sym_AMPexpire_func] = ACTIONS(1562), - [anon_sym_AMPgroup] = ACTIONS(1562), - [anon_sym_AMPon_change] = ACTIONS(1562), - [anon_sym_AMPpriority] = ACTIONS(1562), - [anon_sym_AMPread_expire] = ACTIONS(1562), - [anon_sym_AMPtype_column] = ACTIONS(1562), - [anon_sym_AMPwrite_expire] = ACTIONS(1562), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_next] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_fallthrough] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_add] = ACTIONS(1564), + [anon_sym_delete] = ACTIONS(1564), + [anon_sym_local] = ACTIONS(1564), + [anon_sym_when] = ACTIONS(1564), + [anon_sym_assert] = ACTIONS(1564), + [anon_sym_table] = ACTIONS(1564), + [anon_sym_set] = ACTIONS(1564), + [anon_sym_vector] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_hook] = ACTIONS(1564), [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1562), + [anon_sym_PLUS_PLUS] = ACTIONS(1562), + [anon_sym_DASH_DASH] = ACTIONS(1562), + [anon_sym_BANG] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1562), [anon_sym_DASH] = ACTIONS(1564), [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_is] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1562), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PERCENT] = ACTIONS(1562), - [anon_sym_LT] = ACTIONS(1564), - [anon_sym_LT_EQ] = ACTIONS(1562), - [anon_sym_GT] = ACTIONS(1564), - [anon_sym_GT_EQ] = ACTIONS(1562), - [anon_sym_AMP] = ACTIONS(1564), - [anon_sym_CARET] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1562), - [anon_sym_BANG_EQ] = ACTIONS(1562), - [anon_sym_AMP_AMP] = ACTIONS(1562), - [anon_sym_PIPE_PIPE] = ACTIONS(1562), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1562), + [anon_sym_copy] = ACTIONS(1564), + [anon_sym_schedule] = ACTIONS(1564), + [aux_sym_constant_token1] = ACTIONS(1564), + [anon_sym_T] = ACTIONS(1564), + [anon_sym_F] = ACTIONS(1564), [anon_sym_ATdeprecated] = ACTIONS(1562), [anon_sym_ATload] = ACTIONS(1564), [anon_sym_ATload_DASHsigs] = ACTIONS(1562), @@ -43301,88 +41768,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1562), [anon_sym_ATendif] = ACTIONS(1562), [anon_sym_ATelse] = ACTIONS(1562), + [anon_sym_ATpragma] = ACTIONS(1562), + [anon_sym_ATDIR] = ACTIONS(1562), + [anon_sym_ATFILENAME] = ACTIONS(1562), + [sym_id] = ACTIONS(1564), + [sym_pattern] = ACTIONS(1562), + [sym_ipv6] = ACTIONS(1564), + [sym_ipv4] = ACTIONS(1564), + [sym_port] = ACTIONS(1562), + [sym_floatp] = ACTIONS(1564), + [sym_hex] = ACTIONS(1564), + [sym_hostname] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1562), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [338] = { - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_AMPdeprecated] = ACTIONS(1414), - [anon_sym_DASH_EQ] = ACTIONS(1414), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1414), - [anon_sym_AMPerror_handler] = ACTIONS(1414), - [anon_sym_AMPis_assigned] = ACTIONS(1414), - [anon_sym_AMPis_used] = ACTIONS(1414), - [anon_sym_AMPlog] = ACTIONS(1414), - [anon_sym_AMPoptional] = ACTIONS(1414), - [anon_sym_AMPraw_output] = ACTIONS(1414), - [anon_sym_AMPredef] = ACTIONS(1414), - [anon_sym_AMPadd_func] = ACTIONS(1414), - [anon_sym_AMPbackend] = ACTIONS(1414), - [anon_sym_AMPbroker_store] = ACTIONS(1414), - [anon_sym_AMPcreate_expire] = ACTIONS(1414), - [anon_sym_AMPdefault] = ACTIONS(1414), - [anon_sym_AMPdelete_func] = ACTIONS(1414), - [anon_sym_AMPexpire_func] = ACTIONS(1414), - [anon_sym_AMPgroup] = ACTIONS(1414), - [anon_sym_AMPon_change] = ACTIONS(1414), - [anon_sym_AMPpriority] = ACTIONS(1414), - [anon_sym_AMPread_expire] = ACTIONS(1414), - [anon_sym_AMPtype_column] = ACTIONS(1414), - [anon_sym_AMPwrite_expire] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1414), - [anon_sym_ATdeprecated] = ACTIONS(1414), - [anon_sym_ATload] = ACTIONS(1416), - [anon_sym_ATload_DASHsigs] = ACTIONS(1414), - [anon_sym_ATload_DASHplugin] = ACTIONS(1414), - [anon_sym_ATunload] = ACTIONS(1414), - [anon_sym_ATprefixes] = ACTIONS(1414), - [anon_sym_ATif] = ACTIONS(1416), - [anon_sym_ATifdef] = ACTIONS(1414), - [anon_sym_ATifndef] = ACTIONS(1414), - [anon_sym_ATendif] = ACTIONS(1414), - [anon_sym_ATelse] = ACTIONS(1414), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [339] = { + [318] = { [ts_builtin_sym_end] = ACTIONS(1566), [anon_sym_module] = ACTIONS(1568), [anon_sym_SEMI] = ACTIONS(1566), @@ -43440,6 +41844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1566), [anon_sym_ATendif] = ACTIONS(1566), [anon_sym_ATelse] = ACTIONS(1566), + [anon_sym_ATpragma] = ACTIONS(1566), [anon_sym_ATDIR] = ACTIONS(1566), [anon_sym_ATFILENAME] = ACTIONS(1566), [sym_id] = ACTIONS(1568), @@ -43457,664 +41862,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [340] = { + [319] = { + [ts_builtin_sym_end] = ACTIONS(1570), + [anon_sym_module] = ACTIONS(1572), [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_export] = ACTIONS(1572), [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_COLON] = ACTIONS(1570), - [anon_sym_PLUS_EQ] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1570), - [anon_sym_COMMA] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), + [anon_sym_global] = ACTIONS(1572), + [anon_sym_option] = ACTIONS(1572), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_redef] = ACTIONS(1572), + [anon_sym_record] = ACTIONS(1572), + [anon_sym_type] = ACTIONS(1572), + [anon_sym_print] = ACTIONS(1572), + [anon_sym_event] = ACTIONS(1572), + [anon_sym_if] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1570), + [anon_sym_switch] = ACTIONS(1572), + [anon_sym_for] = ACTIONS(1572), [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_RBRACK] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1574), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_AMPdeprecated] = ACTIONS(1570), - [anon_sym_DASH_EQ] = ACTIONS(1570), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1570), - [anon_sym_AMPerror_handler] = ACTIONS(1570), - [anon_sym_AMPis_assigned] = ACTIONS(1570), - [anon_sym_AMPis_used] = ACTIONS(1570), - [anon_sym_AMPlog] = ACTIONS(1570), - [anon_sym_AMPoptional] = ACTIONS(1570), - [anon_sym_AMPraw_output] = ACTIONS(1570), - [anon_sym_AMPredef] = ACTIONS(1570), - [anon_sym_AMPadd_func] = ACTIONS(1570), - [anon_sym_AMPbackend] = ACTIONS(1570), - [anon_sym_AMPbroker_store] = ACTIONS(1570), - [anon_sym_AMPcreate_expire] = ACTIONS(1570), - [anon_sym_AMPdefault] = ACTIONS(1570), - [anon_sym_AMPdelete_func] = ACTIONS(1570), - [anon_sym_AMPexpire_func] = ACTIONS(1570), - [anon_sym_AMPgroup] = ACTIONS(1570), - [anon_sym_AMPon_change] = ACTIONS(1570), - [anon_sym_AMPpriority] = ACTIONS(1570), - [anon_sym_AMPread_expire] = ACTIONS(1570), - [anon_sym_AMPtype_column] = ACTIONS(1570), - [anon_sym_AMPwrite_expire] = ACTIONS(1570), + [anon_sym_while] = ACTIONS(1572), + [anon_sym_next] = ACTIONS(1572), + [anon_sym_break] = ACTIONS(1572), + [anon_sym_fallthrough] = ACTIONS(1572), + [anon_sym_return] = ACTIONS(1572), + [anon_sym_add] = ACTIONS(1572), + [anon_sym_delete] = ACTIONS(1572), + [anon_sym_local] = ACTIONS(1572), + [anon_sym_when] = ACTIONS(1572), + [anon_sym_assert] = ACTIONS(1572), + [anon_sym_table] = ACTIONS(1572), + [anon_sym_set] = ACTIONS(1572), + [anon_sym_vector] = ACTIONS(1572), + [anon_sym_function] = ACTIONS(1572), + [anon_sym_hook] = ACTIONS(1572), [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1574), - [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_is] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_PERCENT] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1570), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_GT_EQ] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_PLUS_PLUS] = ACTIONS(1570), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_BANG] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_copy] = ACTIONS(1572), + [anon_sym_schedule] = ACTIONS(1572), + [aux_sym_constant_token1] = ACTIONS(1572), + [anon_sym_T] = ACTIONS(1572), + [anon_sym_F] = ACTIONS(1572), [anon_sym_ATdeprecated] = ACTIONS(1570), - [anon_sym_ATload] = ACTIONS(1574), + [anon_sym_ATload] = ACTIONS(1572), [anon_sym_ATload_DASHsigs] = ACTIONS(1570), [anon_sym_ATload_DASHplugin] = ACTIONS(1570), [anon_sym_ATunload] = ACTIONS(1570), [anon_sym_ATprefixes] = ACTIONS(1570), - [anon_sym_ATif] = ACTIONS(1574), + [anon_sym_ATif] = ACTIONS(1572), [anon_sym_ATifdef] = ACTIONS(1570), [anon_sym_ATifndef] = ACTIONS(1570), [anon_sym_ATendif] = ACTIONS(1570), [anon_sym_ATelse] = ACTIONS(1570), + [anon_sym_ATpragma] = ACTIONS(1570), + [anon_sym_ATDIR] = ACTIONS(1570), + [anon_sym_ATFILENAME] = ACTIONS(1570), + [sym_id] = ACTIONS(1572), + [sym_pattern] = ACTIONS(1570), + [sym_ipv6] = ACTIONS(1572), + [sym_ipv4] = ACTIONS(1572), + [sym_port] = ACTIONS(1570), + [sym_floatp] = ACTIONS(1572), + [sym_hex] = ACTIONS(1572), + [sym_hostname] = ACTIONS(1572), + [aux_sym_string_token1] = ACTIONS(1570), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [341] = { - [anon_sym_SEMI] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1570), - [anon_sym_COLON] = ACTIONS(1570), - [anon_sym_PLUS_EQ] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_RPAREN] = ACTIONS(1570), - [anon_sym_COMMA] = ACTIONS(1570), - [anon_sym_in] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1570), - [anon_sym_RBRACK] = ACTIONS(1570), - [anon_sym_EQ] = ACTIONS(1574), - [anon_sym_as] = ACTIONS(1570), - [anon_sym_AMPdeprecated] = ACTIONS(1570), - [anon_sym_DASH_EQ] = ACTIONS(1570), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1570), - [anon_sym_AMPerror_handler] = ACTIONS(1570), - [anon_sym_AMPis_assigned] = ACTIONS(1570), - [anon_sym_AMPis_used] = ACTIONS(1570), - [anon_sym_AMPlog] = ACTIONS(1570), - [anon_sym_AMPoptional] = ACTIONS(1570), - [anon_sym_AMPraw_output] = ACTIONS(1570), - [anon_sym_AMPredef] = ACTIONS(1570), - [anon_sym_AMPadd_func] = ACTIONS(1570), - [anon_sym_AMPbackend] = ACTIONS(1570), - [anon_sym_AMPbroker_store] = ACTIONS(1570), - [anon_sym_AMPcreate_expire] = ACTIONS(1570), - [anon_sym_AMPdefault] = ACTIONS(1570), - [anon_sym_AMPdelete_func] = ACTIONS(1570), - [anon_sym_AMPexpire_func] = ACTIONS(1570), - [anon_sym_AMPgroup] = ACTIONS(1570), - [anon_sym_AMPon_change] = ACTIONS(1570), - [anon_sym_AMPpriority] = ACTIONS(1570), - [anon_sym_AMPread_expire] = ACTIONS(1570), - [anon_sym_AMPtype_column] = ACTIONS(1570), - [anon_sym_AMPwrite_expire] = ACTIONS(1570), - [anon_sym_DOLLAR] = ACTIONS(1570), + [320] = { + [ts_builtin_sym_end] = ACTIONS(1574), + [anon_sym_module] = ACTIONS(1576), + [anon_sym_SEMI] = ACTIONS(1574), + [anon_sym_export] = ACTIONS(1576), + [anon_sym_LBRACE] = ACTIONS(1574), + [anon_sym_global] = ACTIONS(1576), + [anon_sym_option] = ACTIONS(1576), + [anon_sym_const] = ACTIONS(1576), + [anon_sym_redef] = ACTIONS(1576), + [anon_sym_record] = ACTIONS(1576), + [anon_sym_type] = ACTIONS(1576), + [anon_sym_print] = ACTIONS(1576), + [anon_sym_event] = ACTIONS(1576), + [anon_sym_if] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_switch] = ACTIONS(1576), + [anon_sym_for] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_next] = ACTIONS(1576), + [anon_sym_break] = ACTIONS(1576), + [anon_sym_fallthrough] = ACTIONS(1576), + [anon_sym_return] = ACTIONS(1576), + [anon_sym_add] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_local] = ACTIONS(1576), + [anon_sym_when] = ACTIONS(1576), + [anon_sym_assert] = ACTIONS(1576), + [anon_sym_table] = ACTIONS(1576), + [anon_sym_set] = ACTIONS(1576), + [anon_sym_vector] = ACTIONS(1576), + [anon_sym_function] = ACTIONS(1576), + [anon_sym_hook] = ACTIONS(1576), + [anon_sym_DOLLAR] = ACTIONS(1574), [anon_sym_PIPE] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1574), + [anon_sym_DASH_DASH] = ACTIONS(1574), [anon_sym_BANG] = ACTIONS(1574), - [anon_sym_DASH] = ACTIONS(1574), - [anon_sym_PLUS] = ACTIONS(1574), - [anon_sym_is] = ACTIONS(1570), - [anon_sym_STAR] = ACTIONS(1570), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_PERCENT] = ACTIONS(1570), - [anon_sym_LT] = ACTIONS(1574), - [anon_sym_LT_EQ] = ACTIONS(1570), - [anon_sym_GT] = ACTIONS(1574), - [anon_sym_GT_EQ] = ACTIONS(1570), - [anon_sym_AMP] = ACTIONS(1574), - [anon_sym_CARET] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1574), - [anon_sym_EQ_EQ] = ACTIONS(1570), - [anon_sym_BANG_EQ] = ACTIONS(1570), - [anon_sym_AMP_AMP] = ACTIONS(1570), - [anon_sym_PIPE_PIPE] = ACTIONS(1570), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1570), - [anon_sym_ATdeprecated] = ACTIONS(1570), - [anon_sym_ATload] = ACTIONS(1574), - [anon_sym_ATload_DASHsigs] = ACTIONS(1570), - [anon_sym_ATload_DASHplugin] = ACTIONS(1570), - [anon_sym_ATunload] = ACTIONS(1570), - [anon_sym_ATprefixes] = ACTIONS(1570), - [anon_sym_ATif] = ACTIONS(1574), - [anon_sym_ATifdef] = ACTIONS(1570), - [anon_sym_ATifndef] = ACTIONS(1570), - [anon_sym_ATendif] = ACTIONS(1570), - [anon_sym_ATelse] = ACTIONS(1570), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [342] = { - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_COLON] = ACTIONS(1414), - [anon_sym_PLUS_EQ] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_in] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1414), - [anon_sym_AMPdeprecated] = ACTIONS(1414), - [anon_sym_DASH_EQ] = ACTIONS(1414), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1414), - [anon_sym_AMPerror_handler] = ACTIONS(1414), - [anon_sym_AMPis_assigned] = ACTIONS(1414), - [anon_sym_AMPis_used] = ACTIONS(1414), - [anon_sym_AMPlog] = ACTIONS(1414), - [anon_sym_AMPoptional] = ACTIONS(1414), - [anon_sym_AMPraw_output] = ACTIONS(1414), - [anon_sym_AMPredef] = ACTIONS(1414), - [anon_sym_AMPadd_func] = ACTIONS(1414), - [anon_sym_AMPbackend] = ACTIONS(1414), - [anon_sym_AMPbroker_store] = ACTIONS(1414), - [anon_sym_AMPcreate_expire] = ACTIONS(1414), - [anon_sym_AMPdefault] = ACTIONS(1414), - [anon_sym_AMPdelete_func] = ACTIONS(1414), - [anon_sym_AMPexpire_func] = ACTIONS(1414), - [anon_sym_AMPgroup] = ACTIONS(1414), - [anon_sym_AMPon_change] = ACTIONS(1414), - [anon_sym_AMPpriority] = ACTIONS(1414), - [anon_sym_AMPread_expire] = ACTIONS(1414), - [anon_sym_AMPtype_column] = ACTIONS(1414), - [anon_sym_AMPwrite_expire] = ACTIONS(1414), - [anon_sym_DOLLAR] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_is] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1414), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PERCENT] = ACTIONS(1414), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1414), - [anon_sym_ATdeprecated] = ACTIONS(1414), - [anon_sym_ATload] = ACTIONS(1416), - [anon_sym_ATload_DASHsigs] = ACTIONS(1414), - [anon_sym_ATload_DASHplugin] = ACTIONS(1414), - [anon_sym_ATunload] = ACTIONS(1414), - [anon_sym_ATprefixes] = ACTIONS(1414), - [anon_sym_ATif] = ACTIONS(1416), - [anon_sym_ATifdef] = ACTIONS(1414), - [anon_sym_ATifndef] = ACTIONS(1414), - [anon_sym_ATendif] = ACTIONS(1414), - [anon_sym_ATelse] = ACTIONS(1414), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [343] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_global] = ACTIONS(1578), - [anon_sym_option] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_redef] = ACTIONS(1578), - [anon_sym_record] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_print] = ACTIONS(1578), - [anon_sym_event] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_next] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_fallthrough] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_add] = ACTIONS(1578), - [anon_sym_delete] = ACTIONS(1578), - [anon_sym_local] = ACTIONS(1578), - [anon_sym_when] = ACTIONS(1578), - [anon_sym_assert] = ACTIONS(1578), - [anon_sym_table] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_vector] = ACTIONS(1578), - [anon_sym_function] = ACTIONS(1578), - [anon_sym_hook] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1578), - [anon_sym_copy] = ACTIONS(1578), - [anon_sym_schedule] = ACTIONS(1578), - [aux_sym_constant_token1] = ACTIONS(1578), - [anon_sym_T] = ACTIONS(1578), - [anon_sym_F] = ACTIONS(1578), - [anon_sym_ATdeprecated] = ACTIONS(1576), - [anon_sym_ATload] = ACTIONS(1578), - [anon_sym_ATload_DASHsigs] = ACTIONS(1576), - [anon_sym_ATload_DASHplugin] = ACTIONS(1576), - [anon_sym_ATunload] = ACTIONS(1576), - [anon_sym_ATprefixes] = ACTIONS(1576), - [anon_sym_ATif] = ACTIONS(1578), - [anon_sym_ATifdef] = ACTIONS(1576), - [anon_sym_ATifndef] = ACTIONS(1576), - [anon_sym_ATendif] = ACTIONS(1576), - [anon_sym_ATelse] = ACTIONS(1576), - [anon_sym_ATDIR] = ACTIONS(1576), - [anon_sym_ATFILENAME] = ACTIONS(1576), - [sym_id] = ACTIONS(1578), - [sym_pattern] = ACTIONS(1576), - [sym_ipv6] = ACTIONS(1578), - [sym_ipv4] = ACTIONS(1578), - [sym_port] = ACTIONS(1576), - [sym_floatp] = ACTIONS(1578), - [sym_hex] = ACTIONS(1578), - [sym_hostname] = ACTIONS(1578), - [aux_sym_string_token1] = ACTIONS(1576), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1564), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_export] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1562), - [anon_sym_global] = ACTIONS(1564), - [anon_sym_option] = ACTIONS(1564), - [anon_sym_const] = ACTIONS(1564), - [anon_sym_redef] = ACTIONS(1564), - [anon_sym_record] = ACTIONS(1564), - [anon_sym_type] = ACTIONS(1564), - [anon_sym_print] = ACTIONS(1564), - [anon_sym_event] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(1562), - [anon_sym_switch] = ACTIONS(1564), - [anon_sym_for] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_while] = ACTIONS(1564), - [anon_sym_next] = ACTIONS(1564), - [anon_sym_break] = ACTIONS(1564), - [anon_sym_fallthrough] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1564), - [anon_sym_add] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_local] = ACTIONS(1564), - [anon_sym_when] = ACTIONS(1564), - [anon_sym_assert] = ACTIONS(1564), - [anon_sym_table] = ACTIONS(1564), - [anon_sym_set] = ACTIONS(1564), - [anon_sym_vector] = ACTIONS(1564), - [anon_sym_function] = ACTIONS(1564), - [anon_sym_hook] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1562), - [anon_sym_DASH_DASH] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_copy] = ACTIONS(1564), - [anon_sym_schedule] = ACTIONS(1564), - [aux_sym_constant_token1] = ACTIONS(1564), - [anon_sym_T] = ACTIONS(1564), - [anon_sym_F] = ACTIONS(1564), - [anon_sym_ATdeprecated] = ACTIONS(1562), - [anon_sym_ATload] = ACTIONS(1564), - [anon_sym_ATload_DASHsigs] = ACTIONS(1562), - [anon_sym_ATload_DASHplugin] = ACTIONS(1562), - [anon_sym_ATunload] = ACTIONS(1562), - [anon_sym_ATprefixes] = ACTIONS(1562), - [anon_sym_ATif] = ACTIONS(1564), - [anon_sym_ATifdef] = ACTIONS(1562), - [anon_sym_ATifndef] = ACTIONS(1562), - [anon_sym_ATendif] = ACTIONS(1562), - [anon_sym_ATelse] = ACTIONS(1562), - [anon_sym_ATDIR] = ACTIONS(1562), - [anon_sym_ATFILENAME] = ACTIONS(1562), - [sym_id] = ACTIONS(1564), - [sym_pattern] = ACTIONS(1562), - [sym_ipv6] = ACTIONS(1564), - [sym_ipv4] = ACTIONS(1564), - [sym_port] = ACTIONS(1562), - [sym_floatp] = ACTIONS(1564), - [sym_hex] = ACTIONS(1564), - [sym_hostname] = ACTIONS(1564), - [aux_sym_string_token1] = ACTIONS(1562), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_copy] = ACTIONS(1576), + [anon_sym_schedule] = ACTIONS(1576), + [aux_sym_constant_token1] = ACTIONS(1576), + [anon_sym_T] = ACTIONS(1576), + [anon_sym_F] = ACTIONS(1576), + [anon_sym_ATdeprecated] = ACTIONS(1574), + [anon_sym_ATload] = ACTIONS(1576), + [anon_sym_ATload_DASHsigs] = ACTIONS(1574), + [anon_sym_ATload_DASHplugin] = ACTIONS(1574), + [anon_sym_ATunload] = ACTIONS(1574), + [anon_sym_ATprefixes] = ACTIONS(1574), + [anon_sym_ATif] = ACTIONS(1576), + [anon_sym_ATifdef] = ACTIONS(1574), + [anon_sym_ATifndef] = ACTIONS(1574), + [anon_sym_ATendif] = ACTIONS(1574), + [anon_sym_ATelse] = ACTIONS(1574), + [anon_sym_ATpragma] = ACTIONS(1574), + [anon_sym_ATDIR] = ACTIONS(1574), + [anon_sym_ATFILENAME] = ACTIONS(1574), + [sym_id] = ACTIONS(1576), + [sym_pattern] = ACTIONS(1574), + [sym_ipv6] = ACTIONS(1576), + [sym_ipv4] = ACTIONS(1576), + [sym_port] = ACTIONS(1574), + [sym_floatp] = ACTIONS(1576), + [sym_hex] = ACTIONS(1576), + [sym_hostname] = ACTIONS(1576), + [aux_sym_string_token1] = ACTIONS(1574), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [345] = { - [ts_builtin_sym_end] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_SEMI] = ACTIONS(1580), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1580), - [anon_sym_global] = ACTIONS(1582), - [anon_sym_option] = ACTIONS(1582), - [anon_sym_const] = ACTIONS(1582), - [anon_sym_redef] = ACTIONS(1582), - [anon_sym_record] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_print] = ACTIONS(1582), - [anon_sym_event] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1582), - [anon_sym_LPAREN] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1582), - [anon_sym_for] = ACTIONS(1582), - [anon_sym_LBRACK] = ACTIONS(1580), - [anon_sym_while] = ACTIONS(1582), - [anon_sym_next] = ACTIONS(1582), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_fallthrough] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1582), - [anon_sym_add] = ACTIONS(1582), - [anon_sym_delete] = ACTIONS(1582), - [anon_sym_local] = ACTIONS(1582), - [anon_sym_when] = ACTIONS(1582), - [anon_sym_assert] = ACTIONS(1582), - [anon_sym_table] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_vector] = ACTIONS(1582), - [anon_sym_function] = ACTIONS(1582), - [anon_sym_hook] = ACTIONS(1582), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1580), - [anon_sym_DASH_DASH] = ACTIONS(1580), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1582), - [anon_sym_PLUS] = ACTIONS(1582), - [anon_sym_copy] = ACTIONS(1582), - [anon_sym_schedule] = ACTIONS(1582), - [aux_sym_constant_token1] = ACTIONS(1582), - [anon_sym_T] = ACTIONS(1582), - [anon_sym_F] = ACTIONS(1582), - [anon_sym_ATdeprecated] = ACTIONS(1580), - [anon_sym_ATload] = ACTIONS(1582), - [anon_sym_ATload_DASHsigs] = ACTIONS(1580), - [anon_sym_ATload_DASHplugin] = ACTIONS(1580), - [anon_sym_ATunload] = ACTIONS(1580), - [anon_sym_ATprefixes] = ACTIONS(1580), - [anon_sym_ATif] = ACTIONS(1582), - [anon_sym_ATifdef] = ACTIONS(1580), - [anon_sym_ATifndef] = ACTIONS(1580), - [anon_sym_ATendif] = ACTIONS(1580), - [anon_sym_ATelse] = ACTIONS(1580), - [anon_sym_ATDIR] = ACTIONS(1580), - [anon_sym_ATFILENAME] = ACTIONS(1580), - [sym_id] = ACTIONS(1582), - [sym_pattern] = ACTIONS(1580), - [sym_ipv6] = ACTIONS(1582), - [sym_ipv4] = ACTIONS(1582), - [sym_port] = ACTIONS(1580), - [sym_floatp] = ACTIONS(1582), - [sym_hex] = ACTIONS(1582), - [sym_hostname] = ACTIONS(1582), - [aux_sym_string_token1] = ACTIONS(1580), + [321] = { + [ts_builtin_sym_end] = ACTIONS(1578), + [anon_sym_module] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_export] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_global] = ACTIONS(1580), + [anon_sym_option] = ACTIONS(1580), + [anon_sym_const] = ACTIONS(1580), + [anon_sym_redef] = ACTIONS(1580), + [anon_sym_record] = ACTIONS(1580), + [anon_sym_type] = ACTIONS(1580), + [anon_sym_print] = ACTIONS(1580), + [anon_sym_event] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1580), + [anon_sym_for] = ACTIONS(1580), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_next] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_fallthrough] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_add] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_local] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(1580), + [anon_sym_assert] = ACTIONS(1580), + [anon_sym_table] = ACTIONS(1580), + [anon_sym_set] = ACTIONS(1580), + [anon_sym_vector] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(1580), + [anon_sym_hook] = ACTIONS(1580), + [anon_sym_DOLLAR] = ACTIONS(1578), + [anon_sym_PIPE] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1578), + [anon_sym_TILDE] = ACTIONS(1578), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_copy] = ACTIONS(1580), + [anon_sym_schedule] = ACTIONS(1580), + [aux_sym_constant_token1] = ACTIONS(1580), + [anon_sym_T] = ACTIONS(1580), + [anon_sym_F] = ACTIONS(1580), + [anon_sym_ATdeprecated] = ACTIONS(1578), + [anon_sym_ATload] = ACTIONS(1580), + [anon_sym_ATload_DASHsigs] = ACTIONS(1578), + [anon_sym_ATload_DASHplugin] = ACTIONS(1578), + [anon_sym_ATunload] = ACTIONS(1578), + [anon_sym_ATprefixes] = ACTIONS(1578), + [anon_sym_ATif] = ACTIONS(1580), + [anon_sym_ATifdef] = ACTIONS(1578), + [anon_sym_ATifndef] = ACTIONS(1578), + [anon_sym_ATendif] = ACTIONS(1578), + [anon_sym_ATelse] = ACTIONS(1578), + [anon_sym_ATpragma] = ACTIONS(1578), + [anon_sym_ATDIR] = ACTIONS(1578), + [anon_sym_ATFILENAME] = ACTIONS(1578), + [sym_id] = ACTIONS(1580), + [sym_pattern] = ACTIONS(1578), + [sym_ipv6] = ACTIONS(1580), + [sym_ipv4] = ACTIONS(1580), + [sym_port] = ACTIONS(1578), + [sym_floatp] = ACTIONS(1580), + [sym_hex] = ACTIONS(1580), + [sym_hostname] = ACTIONS(1580), + [aux_sym_string_token1] = ACTIONS(1578), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [346] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_as] = ACTIONS(133), - [anon_sym_AMPdeprecated] = ACTIONS(133), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(133), - [anon_sym_AMPerror_handler] = ACTIONS(133), - [anon_sym_AMPis_assigned] = ACTIONS(133), - [anon_sym_AMPis_used] = ACTIONS(133), - [anon_sym_AMPlog] = ACTIONS(133), - [anon_sym_AMPoptional] = ACTIONS(133), - [anon_sym_AMPraw_output] = ACTIONS(133), - [anon_sym_AMPredef] = ACTIONS(133), - [anon_sym_AMPadd_func] = ACTIONS(133), - [anon_sym_AMPbackend] = ACTIONS(133), - [anon_sym_AMPbroker_store] = ACTIONS(133), - [anon_sym_AMPcreate_expire] = ACTIONS(133), - [anon_sym_AMPdefault] = ACTIONS(133), - [anon_sym_AMPdelete_func] = ACTIONS(133), - [anon_sym_AMPexpire_func] = ACTIONS(133), - [anon_sym_AMPgroup] = ACTIONS(133), - [anon_sym_AMPon_change] = ACTIONS(133), - [anon_sym_AMPpriority] = ACTIONS(133), - [anon_sym_AMPread_expire] = ACTIONS(133), - [anon_sym_AMPtype_column] = ACTIONS(133), - [anon_sym_AMPwrite_expire] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_ATdeprecated] = ACTIONS(133), - [anon_sym_ATload] = ACTIONS(139), - [anon_sym_ATload_DASHsigs] = ACTIONS(133), - [anon_sym_ATload_DASHplugin] = ACTIONS(133), - [anon_sym_ATunload] = ACTIONS(133), - [anon_sym_ATprefixes] = ACTIONS(133), - [anon_sym_ATif] = ACTIONS(139), - [anon_sym_ATifdef] = ACTIONS(133), - [anon_sym_ATifndef] = ACTIONS(133), - [anon_sym_ATendif] = ACTIONS(133), - [anon_sym_ATelse] = ACTIONS(133), + [322] = { + [ts_builtin_sym_end] = ACTIONS(1582), + [anon_sym_module] = ACTIONS(1584), + [anon_sym_SEMI] = ACTIONS(1582), + [anon_sym_export] = ACTIONS(1584), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_global] = ACTIONS(1584), + [anon_sym_option] = ACTIONS(1584), + [anon_sym_const] = ACTIONS(1584), + [anon_sym_redef] = ACTIONS(1584), + [anon_sym_record] = ACTIONS(1584), + [anon_sym_type] = ACTIONS(1584), + [anon_sym_print] = ACTIONS(1584), + [anon_sym_event] = ACTIONS(1584), + [anon_sym_if] = ACTIONS(1584), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_switch] = ACTIONS(1584), + [anon_sym_for] = ACTIONS(1584), + [anon_sym_LBRACK] = ACTIONS(1582), + [anon_sym_while] = ACTIONS(1584), + [anon_sym_next] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1584), + [anon_sym_fallthrough] = ACTIONS(1584), + [anon_sym_return] = ACTIONS(1584), + [anon_sym_add] = ACTIONS(1584), + [anon_sym_delete] = ACTIONS(1584), + [anon_sym_local] = ACTIONS(1584), + [anon_sym_when] = ACTIONS(1584), + [anon_sym_assert] = ACTIONS(1584), + [anon_sym_table] = ACTIONS(1584), + [anon_sym_set] = ACTIONS(1584), + [anon_sym_vector] = ACTIONS(1584), + [anon_sym_function] = ACTIONS(1584), + [anon_sym_hook] = ACTIONS(1584), + [anon_sym_DOLLAR] = ACTIONS(1582), + [anon_sym_PIPE] = ACTIONS(1582), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_BANG] = ACTIONS(1582), + [anon_sym_TILDE] = ACTIONS(1582), + [anon_sym_DASH] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1584), + [anon_sym_copy] = ACTIONS(1584), + [anon_sym_schedule] = ACTIONS(1584), + [aux_sym_constant_token1] = ACTIONS(1584), + [anon_sym_T] = ACTIONS(1584), + [anon_sym_F] = ACTIONS(1584), + [anon_sym_ATdeprecated] = ACTIONS(1582), + [anon_sym_ATload] = ACTIONS(1584), + [anon_sym_ATload_DASHsigs] = ACTIONS(1582), + [anon_sym_ATload_DASHplugin] = ACTIONS(1582), + [anon_sym_ATunload] = ACTIONS(1582), + [anon_sym_ATprefixes] = ACTIONS(1582), + [anon_sym_ATif] = ACTIONS(1584), + [anon_sym_ATifdef] = ACTIONS(1582), + [anon_sym_ATifndef] = ACTIONS(1582), + [anon_sym_ATendif] = ACTIONS(1582), + [anon_sym_ATelse] = ACTIONS(1582), + [anon_sym_ATpragma] = ACTIONS(1582), + [anon_sym_ATDIR] = ACTIONS(1582), + [anon_sym_ATFILENAME] = ACTIONS(1582), + [sym_id] = ACTIONS(1584), + [sym_pattern] = ACTIONS(1582), + [sym_ipv6] = ACTIONS(1584), + [sym_ipv4] = ACTIONS(1584), + [sym_port] = ACTIONS(1582), + [sym_floatp] = ACTIONS(1584), + [sym_hex] = ACTIONS(1584), + [sym_hostname] = ACTIONS(1584), + [aux_sym_string_token1] = ACTIONS(1582), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [347] = { - [sym_index_slice] = STATE(349), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(133), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(133), - [anon_sym_AMPerror_handler] = ACTIONS(133), - [anon_sym_AMPis_assigned] = ACTIONS(133), - [anon_sym_AMPis_used] = ACTIONS(133), - [anon_sym_AMPlog] = ACTIONS(133), - [anon_sym_AMPoptional] = ACTIONS(133), - [anon_sym_AMPraw_output] = ACTIONS(133), - [anon_sym_AMPredef] = ACTIONS(133), - [anon_sym_AMPadd_func] = ACTIONS(133), - [anon_sym_AMPbackend] = ACTIONS(133), - [anon_sym_AMPbroker_store] = ACTIONS(133), - [anon_sym_AMPcreate_expire] = ACTIONS(133), - [anon_sym_AMPdefault] = ACTIONS(133), - [anon_sym_AMPdelete_func] = ACTIONS(133), - [anon_sym_AMPexpire_func] = ACTIONS(133), - [anon_sym_AMPgroup] = ACTIONS(133), - [anon_sym_AMPon_change] = ACTIONS(133), - [anon_sym_AMPpriority] = ACTIONS(133), - [anon_sym_AMPread_expire] = ACTIONS(133), - [anon_sym_AMPtype_column] = ACTIONS(133), - [anon_sym_AMPwrite_expire] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_ATdeprecated] = ACTIONS(133), - [anon_sym_ATload] = ACTIONS(139), - [anon_sym_ATload_DASHsigs] = ACTIONS(133), - [anon_sym_ATload_DASHplugin] = ACTIONS(133), - [anon_sym_ATunload] = ACTIONS(133), - [anon_sym_ATprefixes] = ACTIONS(133), - [anon_sym_ATif] = ACTIONS(139), - [anon_sym_ATifdef] = ACTIONS(133), - [anon_sym_ATifndef] = ACTIONS(133), - [anon_sym_ATendif] = ACTIONS(133), - [anon_sym_ATelse] = ACTIONS(133), + [323] = { + [ts_builtin_sym_end] = ACTIONS(1586), + [anon_sym_module] = ACTIONS(1588), + [anon_sym_SEMI] = ACTIONS(1586), + [anon_sym_export] = ACTIONS(1588), + [anon_sym_LBRACE] = ACTIONS(1586), + [anon_sym_global] = ACTIONS(1588), + [anon_sym_option] = ACTIONS(1588), + [anon_sym_const] = ACTIONS(1588), + [anon_sym_redef] = ACTIONS(1588), + [anon_sym_record] = ACTIONS(1588), + [anon_sym_type] = ACTIONS(1588), + [anon_sym_print] = ACTIONS(1588), + [anon_sym_event] = ACTIONS(1588), + [anon_sym_if] = ACTIONS(1588), + [anon_sym_LPAREN] = ACTIONS(1586), + [anon_sym_switch] = ACTIONS(1588), + [anon_sym_for] = ACTIONS(1588), + [anon_sym_LBRACK] = ACTIONS(1586), + [anon_sym_while] = ACTIONS(1588), + [anon_sym_next] = ACTIONS(1588), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_fallthrough] = ACTIONS(1588), + [anon_sym_return] = ACTIONS(1588), + [anon_sym_add] = ACTIONS(1588), + [anon_sym_delete] = ACTIONS(1588), + [anon_sym_local] = ACTIONS(1588), + [anon_sym_when] = ACTIONS(1588), + [anon_sym_assert] = ACTIONS(1588), + [anon_sym_table] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_vector] = ACTIONS(1588), + [anon_sym_function] = ACTIONS(1588), + [anon_sym_hook] = ACTIONS(1588), + [anon_sym_DOLLAR] = ACTIONS(1586), + [anon_sym_PIPE] = ACTIONS(1586), + [anon_sym_PLUS_PLUS] = ACTIONS(1586), + [anon_sym_DASH_DASH] = ACTIONS(1586), + [anon_sym_BANG] = ACTIONS(1586), + [anon_sym_TILDE] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1588), + [anon_sym_PLUS] = ACTIONS(1588), + [anon_sym_copy] = ACTIONS(1588), + [anon_sym_schedule] = ACTIONS(1588), + [aux_sym_constant_token1] = ACTIONS(1588), + [anon_sym_T] = ACTIONS(1588), + [anon_sym_F] = ACTIONS(1588), + [anon_sym_ATdeprecated] = ACTIONS(1586), + [anon_sym_ATload] = ACTIONS(1588), + [anon_sym_ATload_DASHsigs] = ACTIONS(1586), + [anon_sym_ATload_DASHplugin] = ACTIONS(1586), + [anon_sym_ATunload] = ACTIONS(1586), + [anon_sym_ATprefixes] = ACTIONS(1586), + [anon_sym_ATif] = ACTIONS(1588), + [anon_sym_ATifdef] = ACTIONS(1586), + [anon_sym_ATifndef] = ACTIONS(1586), + [anon_sym_ATendif] = ACTIONS(1586), + [anon_sym_ATelse] = ACTIONS(1586), + [anon_sym_ATpragma] = ACTIONS(1586), + [anon_sym_ATDIR] = ACTIONS(1586), + [anon_sym_ATFILENAME] = ACTIONS(1586), + [sym_id] = ACTIONS(1588), + [sym_pattern] = ACTIONS(1586), + [sym_ipv6] = ACTIONS(1588), + [sym_ipv4] = ACTIONS(1588), + [sym_port] = ACTIONS(1586), + [sym_floatp] = ACTIONS(1588), + [sym_hex] = ACTIONS(1588), + [sym_hostname] = ACTIONS(1588), + [aux_sym_string_token1] = ACTIONS(1586), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [348] = { + [324] = { + [ts_builtin_sym_end] = ACTIONS(1590), + [anon_sym_module] = ACTIONS(1592), [anon_sym_SEMI] = ACTIONS(1590), + [anon_sym_export] = ACTIONS(1592), [anon_sym_LBRACE] = ACTIONS(1590), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_COLON] = ACTIONS(1590), - [anon_sym_PLUS_EQ] = ACTIONS(1590), + [anon_sym_global] = ACTIONS(1592), + [anon_sym_option] = ACTIONS(1592), + [anon_sym_const] = ACTIONS(1592), + [anon_sym_redef] = ACTIONS(1592), + [anon_sym_record] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_print] = ACTIONS(1592), + [anon_sym_event] = ACTIONS(1592), + [anon_sym_if] = ACTIONS(1592), [anon_sym_LPAREN] = ACTIONS(1590), - [anon_sym_RPAREN] = ACTIONS(1590), - [anon_sym_COMMA] = ACTIONS(1590), - [anon_sym_in] = ACTIONS(1590), + [anon_sym_switch] = ACTIONS(1592), + [anon_sym_for] = ACTIONS(1592), [anon_sym_LBRACK] = ACTIONS(1590), - [anon_sym_RBRACK] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_as] = ACTIONS(1590), - [anon_sym_AMPdeprecated] = ACTIONS(1590), - [anon_sym_DASH_EQ] = ACTIONS(1590), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1590), - [anon_sym_AMPerror_handler] = ACTIONS(1590), - [anon_sym_AMPis_assigned] = ACTIONS(1590), - [anon_sym_AMPis_used] = ACTIONS(1590), - [anon_sym_AMPlog] = ACTIONS(1590), - [anon_sym_AMPoptional] = ACTIONS(1590), - [anon_sym_AMPraw_output] = ACTIONS(1590), - [anon_sym_AMPredef] = ACTIONS(1590), - [anon_sym_AMPadd_func] = ACTIONS(1590), - [anon_sym_AMPbackend] = ACTIONS(1590), - [anon_sym_AMPbroker_store] = ACTIONS(1590), - [anon_sym_AMPcreate_expire] = ACTIONS(1590), - [anon_sym_AMPdefault] = ACTIONS(1590), - [anon_sym_AMPdelete_func] = ACTIONS(1590), - [anon_sym_AMPexpire_func] = ACTIONS(1590), - [anon_sym_AMPgroup] = ACTIONS(1590), - [anon_sym_AMPon_change] = ACTIONS(1590), - [anon_sym_AMPpriority] = ACTIONS(1590), - [anon_sym_AMPread_expire] = ACTIONS(1590), - [anon_sym_AMPtype_column] = ACTIONS(1590), - [anon_sym_AMPwrite_expire] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1592), + [anon_sym_next] = ACTIONS(1592), + [anon_sym_break] = ACTIONS(1592), + [anon_sym_fallthrough] = ACTIONS(1592), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_add] = ACTIONS(1592), + [anon_sym_delete] = ACTIONS(1592), + [anon_sym_local] = ACTIONS(1592), + [anon_sym_when] = ACTIONS(1592), + [anon_sym_assert] = ACTIONS(1592), + [anon_sym_table] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_vector] = ACTIONS(1592), + [anon_sym_function] = ACTIONS(1592), + [anon_sym_hook] = ACTIONS(1592), [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1592), + [anon_sym_PIPE] = ACTIONS(1590), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [anon_sym_BANG] = ACTIONS(1590), + [anon_sym_TILDE] = ACTIONS(1590), [anon_sym_DASH] = ACTIONS(1592), [anon_sym_PLUS] = ACTIONS(1592), - [anon_sym_is] = ACTIONS(1590), - [anon_sym_STAR] = ACTIONS(1590), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym_PERCENT] = ACTIONS(1590), - [anon_sym_LT] = ACTIONS(1592), - [anon_sym_LT_EQ] = ACTIONS(1590), - [anon_sym_GT] = ACTIONS(1592), - [anon_sym_GT_EQ] = ACTIONS(1590), - [anon_sym_AMP] = ACTIONS(1592), - [anon_sym_CARET] = ACTIONS(1590), - [anon_sym_QMARK] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1590), - [anon_sym_BANG_EQ] = ACTIONS(1590), - [anon_sym_AMP_AMP] = ACTIONS(1590), - [anon_sym_PIPE_PIPE] = ACTIONS(1590), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1590), + [anon_sym_copy] = ACTIONS(1592), + [anon_sym_schedule] = ACTIONS(1592), + [aux_sym_constant_token1] = ACTIONS(1592), + [anon_sym_T] = ACTIONS(1592), + [anon_sym_F] = ACTIONS(1592), [anon_sym_ATdeprecated] = ACTIONS(1590), [anon_sym_ATload] = ACTIONS(1592), [anon_sym_ATload_DASHsigs] = ACTIONS(1590), @@ -44126,318 +42300,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1590), [anon_sym_ATendif] = ACTIONS(1590), [anon_sym_ATelse] = ACTIONS(1590), + [anon_sym_ATpragma] = ACTIONS(1590), + [anon_sym_ATDIR] = ACTIONS(1590), + [anon_sym_ATFILENAME] = ACTIONS(1590), + [sym_id] = ACTIONS(1592), + [sym_pattern] = ACTIONS(1590), + [sym_ipv6] = ACTIONS(1592), + [sym_ipv4] = ACTIONS(1592), + [sym_port] = ACTIONS(1590), + [sym_floatp] = ACTIONS(1592), + [sym_hex] = ACTIONS(1592), + [sym_hostname] = ACTIONS(1592), + [aux_sym_string_token1] = ACTIONS(1590), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [349] = { - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COLON] = ACTIONS(133), - [anon_sym_PLUS_EQ] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [anon_sym_LBRACK] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_as] = ACTIONS(133), - [anon_sym_AMPdeprecated] = ACTIONS(133), - [anon_sym_DASH_EQ] = ACTIONS(133), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(133), - [anon_sym_AMPerror_handler] = ACTIONS(133), - [anon_sym_AMPis_assigned] = ACTIONS(133), - [anon_sym_AMPis_used] = ACTIONS(133), - [anon_sym_AMPlog] = ACTIONS(133), - [anon_sym_AMPoptional] = ACTIONS(133), - [anon_sym_AMPraw_output] = ACTIONS(133), - [anon_sym_AMPredef] = ACTIONS(133), - [anon_sym_AMPadd_func] = ACTIONS(133), - [anon_sym_AMPbackend] = ACTIONS(133), - [anon_sym_AMPbroker_store] = ACTIONS(133), - [anon_sym_AMPcreate_expire] = ACTIONS(133), - [anon_sym_AMPdefault] = ACTIONS(133), - [anon_sym_AMPdelete_func] = ACTIONS(133), - [anon_sym_AMPexpire_func] = ACTIONS(133), - [anon_sym_AMPgroup] = ACTIONS(133), - [anon_sym_AMPon_change] = ACTIONS(133), - [anon_sym_AMPpriority] = ACTIONS(133), - [anon_sym_AMPread_expire] = ACTIONS(133), - [anon_sym_AMPtype_column] = ACTIONS(133), - [anon_sym_AMPwrite_expire] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(133), - [anon_sym_PIPE] = ACTIONS(139), - [anon_sym_BANG] = ACTIONS(139), - [anon_sym_DASH] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(139), - [anon_sym_is] = ACTIONS(133), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(133), - [anon_sym_PERCENT] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(139), - [anon_sym_LT_EQ] = ACTIONS(133), - [anon_sym_GT] = ACTIONS(139), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(139), - [anon_sym_CARET] = ACTIONS(133), - [anon_sym_QMARK] = ACTIONS(139), - [anon_sym_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(133), - [anon_sym_PIPE_PIPE] = ACTIONS(133), - [anon_sym_QMARK_DOLLAR] = ACTIONS(133), - [anon_sym_ATdeprecated] = ACTIONS(133), - [anon_sym_ATload] = ACTIONS(139), - [anon_sym_ATload_DASHsigs] = ACTIONS(133), - [anon_sym_ATload_DASHplugin] = ACTIONS(133), - [anon_sym_ATunload] = ACTIONS(133), - [anon_sym_ATprefixes] = ACTIONS(133), - [anon_sym_ATif] = ACTIONS(139), - [anon_sym_ATifdef] = ACTIONS(133), - [anon_sym_ATifndef] = ACTIONS(133), - [anon_sym_ATendif] = ACTIONS(133), - [anon_sym_ATelse] = ACTIONS(133), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [350] = { - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [351] = { - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_COLON] = ACTIONS(1558), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_in] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_RBRACK] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1558), - [anon_sym_AMPdeprecated] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1558), - [anon_sym_AMPerror_handler] = ACTIONS(1558), - [anon_sym_AMPis_assigned] = ACTIONS(1558), - [anon_sym_AMPis_used] = ACTIONS(1558), - [anon_sym_AMPlog] = ACTIONS(1558), - [anon_sym_AMPoptional] = ACTIONS(1558), - [anon_sym_AMPraw_output] = ACTIONS(1558), - [anon_sym_AMPredef] = ACTIONS(1558), - [anon_sym_AMPadd_func] = ACTIONS(1558), - [anon_sym_AMPbackend] = ACTIONS(1558), - [anon_sym_AMPbroker_store] = ACTIONS(1558), - [anon_sym_AMPcreate_expire] = ACTIONS(1558), - [anon_sym_AMPdefault] = ACTIONS(1558), - [anon_sym_AMPdelete_func] = ACTIONS(1558), - [anon_sym_AMPexpire_func] = ACTIONS(1558), - [anon_sym_AMPgroup] = ACTIONS(1558), - [anon_sym_AMPon_change] = ACTIONS(1558), - [anon_sym_AMPpriority] = ACTIONS(1558), - [anon_sym_AMPread_expire] = ACTIONS(1558), - [anon_sym_AMPtype_column] = ACTIONS(1558), - [anon_sym_AMPwrite_expire] = ACTIONS(1558), - [anon_sym_DOLLAR] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_is] = ACTIONS(1558), - [anon_sym_STAR] = ACTIONS(1558), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_PERCENT] = ACTIONS(1558), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1558), - [anon_sym_ATdeprecated] = ACTIONS(1558), - [anon_sym_ATload] = ACTIONS(1560), - [anon_sym_ATload_DASHsigs] = ACTIONS(1558), - [anon_sym_ATload_DASHplugin] = ACTIONS(1558), - [anon_sym_ATunload] = ACTIONS(1558), - [anon_sym_ATprefixes] = ACTIONS(1558), - [anon_sym_ATif] = ACTIONS(1560), - [anon_sym_ATifdef] = ACTIONS(1558), - [anon_sym_ATifndef] = ACTIONS(1558), - [anon_sym_ATendif] = ACTIONS(1558), - [anon_sym_ATelse] = ACTIONS(1558), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [352] = { - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [353] = { + [325] = { [anon_sym_SEMI] = ACTIONS(1594), [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(1594), [anon_sym_COLON] = ACTIONS(1594), [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), [anon_sym_LPAREN] = ACTIONS(1594), [anon_sym_RPAREN] = ACTIONS(1594), [anon_sym_COMMA] = ACTIONS(1594), @@ -44447,7 +42334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1596), [anon_sym_as] = ACTIONS(1594), [anon_sym_AMPdeprecated] = ACTIONS(1594), - [anon_sym_DASH_EQ] = ACTIONS(1594), [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1594), [anon_sym_AMPerror_handler] = ACTIONS(1594), [anon_sym_AMPis_assigned] = ACTIONS(1594), @@ -44501,253 +42387,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1594), [anon_sym_ATendif] = ACTIONS(1594), [anon_sym_ATelse] = ACTIONS(1594), + [anon_sym_ATpragma] = ACTIONS(1594), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [354] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_module] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_export] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_global] = ACTIONS(1422), - [anon_sym_option] = ACTIONS(1422), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_redef] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_type] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [355] = { - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [326] = { + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_AMPdeprecated] = ACTIONS(1456), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1456), + [anon_sym_AMPerror_handler] = ACTIONS(1456), + [anon_sym_AMPis_assigned] = ACTIONS(1456), + [anon_sym_AMPis_used] = ACTIONS(1456), + [anon_sym_AMPlog] = ACTIONS(1456), + [anon_sym_AMPoptional] = ACTIONS(1456), + [anon_sym_AMPraw_output] = ACTIONS(1456), + [anon_sym_AMPredef] = ACTIONS(1456), + [anon_sym_AMPadd_func] = ACTIONS(1456), + [anon_sym_AMPbackend] = ACTIONS(1456), + [anon_sym_AMPbroker_store] = ACTIONS(1456), + [anon_sym_AMPcreate_expire] = ACTIONS(1456), + [anon_sym_AMPdefault] = ACTIONS(1456), + [anon_sym_AMPdelete_func] = ACTIONS(1456), + [anon_sym_AMPexpire_func] = ACTIONS(1456), + [anon_sym_AMPgroup] = ACTIONS(1456), + [anon_sym_AMPon_change] = ACTIONS(1456), + [anon_sym_AMPpriority] = ACTIONS(1456), + [anon_sym_AMPread_expire] = ACTIONS(1456), + [anon_sym_AMPtype_column] = ACTIONS(1456), + [anon_sym_AMPwrite_expire] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_is] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1456), + [anon_sym_ATdeprecated] = ACTIONS(1456), + [anon_sym_ATload] = ACTIONS(1458), + [anon_sym_ATload_DASHsigs] = ACTIONS(1456), + [anon_sym_ATload_DASHplugin] = ACTIONS(1456), + [anon_sym_ATunload] = ACTIONS(1456), + [anon_sym_ATprefixes] = ACTIONS(1456), + [anon_sym_ATif] = ACTIONS(1458), + [anon_sym_ATifdef] = ACTIONS(1456), + [anon_sym_ATifndef] = ACTIONS(1456), + [anon_sym_ATendif] = ACTIONS(1456), + [anon_sym_ATelse] = ACTIONS(1456), + [anon_sym_ATpragma] = ACTIONS(1456), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [356] = { - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [327] = { + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_COLON] = ACTIONS(1598), + [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_in] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1602), + [anon_sym_as] = ACTIONS(1598), + [anon_sym_AMPdeprecated] = ACTIONS(1598), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1598), + [anon_sym_AMPerror_handler] = ACTIONS(1598), + [anon_sym_AMPis_assigned] = ACTIONS(1598), + [anon_sym_AMPis_used] = ACTIONS(1598), + [anon_sym_AMPlog] = ACTIONS(1598), + [anon_sym_AMPoptional] = ACTIONS(1598), + [anon_sym_AMPraw_output] = ACTIONS(1598), + [anon_sym_AMPredef] = ACTIONS(1598), + [anon_sym_AMPadd_func] = ACTIONS(1598), + [anon_sym_AMPbackend] = ACTIONS(1598), + [anon_sym_AMPbroker_store] = ACTIONS(1598), + [anon_sym_AMPcreate_expire] = ACTIONS(1598), + [anon_sym_AMPdefault] = ACTIONS(1598), + [anon_sym_AMPdelete_func] = ACTIONS(1598), + [anon_sym_AMPexpire_func] = ACTIONS(1598), + [anon_sym_AMPgroup] = ACTIONS(1598), + [anon_sym_AMPon_change] = ACTIONS(1598), + [anon_sym_AMPpriority] = ACTIONS(1598), + [anon_sym_AMPread_expire] = ACTIONS(1598), + [anon_sym_AMPtype_column] = ACTIONS(1598), + [anon_sym_AMPwrite_expire] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_is] = ACTIONS(1598), + [anon_sym_STAR] = ACTIONS(1598), + [anon_sym_SLASH] = ACTIONS(1598), + [anon_sym_PERCENT] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym_LT_EQ] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1602), + [anon_sym_GT_EQ] = ACTIONS(1598), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_CARET] = ACTIONS(1598), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_AMP_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1598), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1598), + [anon_sym_ATdeprecated] = ACTIONS(1598), + [anon_sym_ATload] = ACTIONS(1602), + [anon_sym_ATload_DASHsigs] = ACTIONS(1598), + [anon_sym_ATload_DASHplugin] = ACTIONS(1598), + [anon_sym_ATunload] = ACTIONS(1598), + [anon_sym_ATprefixes] = ACTIONS(1598), + [anon_sym_ATif] = ACTIONS(1602), + [anon_sym_ATifdef] = ACTIONS(1598), + [anon_sym_ATifndef] = ACTIONS(1598), + [anon_sym_ATendif] = ACTIONS(1598), + [anon_sym_ATelse] = ACTIONS(1598), + [anon_sym_ATpragma] = ACTIONS(1598), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [357] = { + [328] = { [anon_sym_SEMI] = ACTIONS(1598), [anon_sym_LBRACE] = ACTIONS(1598), [anon_sym_RBRACE] = ACTIONS(1598), [anon_sym_COLON] = ACTIONS(1598), [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), [anon_sym_LPAREN] = ACTIONS(1598), [anon_sym_RPAREN] = ACTIONS(1598), [anon_sym_COMMA] = ACTIONS(1598), [anon_sym_in] = ACTIONS(1598), [anon_sym_LBRACK] = ACTIONS(1598), [anon_sym_RBRACK] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1600), + [anon_sym_EQ] = ACTIONS(1602), [anon_sym_as] = ACTIONS(1598), [anon_sym_AMPdeprecated] = ACTIONS(1598), - [anon_sym_DASH_EQ] = ACTIONS(1598), [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1598), [anon_sym_AMPerror_handler] = ACTIONS(1598), [anon_sym_AMPis_assigned] = ACTIONS(1598), @@ -44770,2147 +42584,2036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMPtype_column] = ACTIONS(1598), [anon_sym_AMPwrite_expire] = ACTIONS(1598), [anon_sym_DOLLAR] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1600), - [anon_sym_BANG] = ACTIONS(1600), - [anon_sym_DASH] = ACTIONS(1600), - [anon_sym_PLUS] = ACTIONS(1600), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_PLUS] = ACTIONS(1602), [anon_sym_is] = ACTIONS(1598), [anon_sym_STAR] = ACTIONS(1598), [anon_sym_SLASH] = ACTIONS(1598), [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1600), + [anon_sym_LT] = ACTIONS(1602), [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1600), + [anon_sym_GT] = ACTIONS(1602), [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1600), + [anon_sym_AMP] = ACTIONS(1602), [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_QMARK] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(1602), [anon_sym_EQ_EQ] = ACTIONS(1598), [anon_sym_BANG_EQ] = ACTIONS(1598), [anon_sym_AMP_AMP] = ACTIONS(1598), [anon_sym_PIPE_PIPE] = ACTIONS(1598), [anon_sym_QMARK_DOLLAR] = ACTIONS(1598), [anon_sym_ATdeprecated] = ACTIONS(1598), - [anon_sym_ATload] = ACTIONS(1600), + [anon_sym_ATload] = ACTIONS(1602), [anon_sym_ATload_DASHsigs] = ACTIONS(1598), [anon_sym_ATload_DASHplugin] = ACTIONS(1598), [anon_sym_ATunload] = ACTIONS(1598), [anon_sym_ATprefixes] = ACTIONS(1598), - [anon_sym_ATif] = ACTIONS(1600), + [anon_sym_ATif] = ACTIONS(1602), [anon_sym_ATifdef] = ACTIONS(1598), [anon_sym_ATifndef] = ACTIONS(1598), [anon_sym_ATendif] = ACTIONS(1598), [anon_sym_ATelse] = ACTIONS(1598), + [anon_sym_ATpragma] = ACTIONS(1598), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [358] = { - [sym_index_slice] = STATE(349), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [329] = { + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1456), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_in] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1456), + [anon_sym_AMPdeprecated] = ACTIONS(1456), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1456), + [anon_sym_AMPerror_handler] = ACTIONS(1456), + [anon_sym_AMPis_assigned] = ACTIONS(1456), + [anon_sym_AMPis_used] = ACTIONS(1456), + [anon_sym_AMPlog] = ACTIONS(1456), + [anon_sym_AMPoptional] = ACTIONS(1456), + [anon_sym_AMPraw_output] = ACTIONS(1456), + [anon_sym_AMPredef] = ACTIONS(1456), + [anon_sym_AMPadd_func] = ACTIONS(1456), + [anon_sym_AMPbackend] = ACTIONS(1456), + [anon_sym_AMPbroker_store] = ACTIONS(1456), + [anon_sym_AMPcreate_expire] = ACTIONS(1456), + [anon_sym_AMPdefault] = ACTIONS(1456), + [anon_sym_AMPdelete_func] = ACTIONS(1456), + [anon_sym_AMPexpire_func] = ACTIONS(1456), + [anon_sym_AMPgroup] = ACTIONS(1456), + [anon_sym_AMPon_change] = ACTIONS(1456), + [anon_sym_AMPpriority] = ACTIONS(1456), + [anon_sym_AMPread_expire] = ACTIONS(1456), + [anon_sym_AMPtype_column] = ACTIONS(1456), + [anon_sym_AMPwrite_expire] = ACTIONS(1456), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_is] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_SLASH] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1456), + [anon_sym_ATdeprecated] = ACTIONS(1456), + [anon_sym_ATload] = ACTIONS(1458), + [anon_sym_ATload_DASHsigs] = ACTIONS(1456), + [anon_sym_ATload_DASHplugin] = ACTIONS(1456), + [anon_sym_ATunload] = ACTIONS(1456), + [anon_sym_ATprefixes] = ACTIONS(1456), + [anon_sym_ATif] = ACTIONS(1458), + [anon_sym_ATifdef] = ACTIONS(1456), + [anon_sym_ATifndef] = ACTIONS(1456), + [anon_sym_ATendif] = ACTIONS(1456), + [anon_sym_ATelse] = ACTIONS(1456), + [anon_sym_ATpragma] = ACTIONS(1456), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [359] = { - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), + [330] = { + [ts_builtin_sym_end] = ACTIONS(1604), + [anon_sym_module] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_export] = ACTIONS(1606), + [anon_sym_LBRACE] = ACTIONS(1604), + [anon_sym_global] = ACTIONS(1606), + [anon_sym_option] = ACTIONS(1606), + [anon_sym_const] = ACTIONS(1606), + [anon_sym_redef] = ACTIONS(1606), + [anon_sym_record] = ACTIONS(1606), + [anon_sym_type] = ACTIONS(1606), + [anon_sym_print] = ACTIONS(1606), + [anon_sym_event] = ACTIONS(1606), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(1604), + [anon_sym_switch] = ACTIONS(1606), + [anon_sym_for] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1604), + [anon_sym_while] = ACTIONS(1606), + [anon_sym_next] = ACTIONS(1606), + [anon_sym_break] = ACTIONS(1606), + [anon_sym_fallthrough] = ACTIONS(1606), + [anon_sym_return] = ACTIONS(1606), + [anon_sym_add] = ACTIONS(1606), + [anon_sym_delete] = ACTIONS(1606), + [anon_sym_local] = ACTIONS(1606), + [anon_sym_when] = ACTIONS(1606), + [anon_sym_assert] = ACTIONS(1606), + [anon_sym_table] = ACTIONS(1606), + [anon_sym_set] = ACTIONS(1606), + [anon_sym_vector] = ACTIONS(1606), + [anon_sym_function] = ACTIONS(1606), + [anon_sym_hook] = ACTIONS(1606), + [anon_sym_DOLLAR] = ACTIONS(1604), [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_PLUS_PLUS] = ACTIONS(1604), + [anon_sym_DASH_DASH] = ACTIONS(1604), [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_is] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1604), + [anon_sym_DASH] = ACTIONS(1606), + [anon_sym_PLUS] = ACTIONS(1606), + [anon_sym_copy] = ACTIONS(1606), + [anon_sym_schedule] = ACTIONS(1606), + [aux_sym_constant_token1] = ACTIONS(1606), + [anon_sym_T] = ACTIONS(1606), + [anon_sym_F] = ACTIONS(1606), + [anon_sym_ATdeprecated] = ACTIONS(1604), + [anon_sym_ATload] = ACTIONS(1606), + [anon_sym_ATload_DASHsigs] = ACTIONS(1604), + [anon_sym_ATload_DASHplugin] = ACTIONS(1604), + [anon_sym_ATunload] = ACTIONS(1604), + [anon_sym_ATprefixes] = ACTIONS(1604), + [anon_sym_ATif] = ACTIONS(1606), + [anon_sym_ATifdef] = ACTIONS(1604), + [anon_sym_ATifndef] = ACTIONS(1604), + [anon_sym_ATendif] = ACTIONS(1604), + [anon_sym_ATelse] = ACTIONS(1604), + [anon_sym_ATpragma] = ACTIONS(1604), + [anon_sym_ATDIR] = ACTIONS(1604), + [anon_sym_ATFILENAME] = ACTIONS(1604), + [sym_id] = ACTIONS(1606), + [sym_pattern] = ACTIONS(1604), + [sym_ipv6] = ACTIONS(1606), + [sym_ipv4] = ACTIONS(1606), + [sym_port] = ACTIONS(1604), + [sym_floatp] = ACTIONS(1606), + [sym_hex] = ACTIONS(1606), + [sym_hostname] = ACTIONS(1606), + [aux_sym_string_token1] = ACTIONS(1604), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [360] = { - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_is] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [331] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(125), + [anon_sym_PLUS_EQ] = ACTIONS(125), + [anon_sym_DASH_EQ] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_in] = ACTIONS(125), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(127), + [anon_sym_as] = ACTIONS(125), + [anon_sym_AMPdeprecated] = ACTIONS(125), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(125), + [anon_sym_AMPerror_handler] = ACTIONS(125), + [anon_sym_AMPis_assigned] = ACTIONS(125), + [anon_sym_AMPis_used] = ACTIONS(125), + [anon_sym_AMPlog] = ACTIONS(125), + [anon_sym_AMPoptional] = ACTIONS(125), + [anon_sym_AMPraw_output] = ACTIONS(125), + [anon_sym_AMPredef] = ACTIONS(125), + [anon_sym_AMPadd_func] = ACTIONS(125), + [anon_sym_AMPbackend] = ACTIONS(125), + [anon_sym_AMPbroker_store] = ACTIONS(125), + [anon_sym_AMPcreate_expire] = ACTIONS(125), + [anon_sym_AMPdefault] = ACTIONS(125), + [anon_sym_AMPdelete_func] = ACTIONS(125), + [anon_sym_AMPexpire_func] = ACTIONS(125), + [anon_sym_AMPgroup] = ACTIONS(125), + [anon_sym_AMPon_change] = ACTIONS(125), + [anon_sym_AMPpriority] = ACTIONS(125), + [anon_sym_AMPread_expire] = ACTIONS(125), + [anon_sym_AMPtype_column] = ACTIONS(125), + [anon_sym_AMPwrite_expire] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(127), + [anon_sym_BANG] = ACTIONS(127), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_is] = ACTIONS(125), + [anon_sym_STAR] = ACTIONS(125), + [anon_sym_SLASH] = ACTIONS(125), + [anon_sym_PERCENT] = ACTIONS(125), + [anon_sym_LT] = ACTIONS(127), + [anon_sym_LT_EQ] = ACTIONS(125), + [anon_sym_GT] = ACTIONS(127), + [anon_sym_GT_EQ] = ACTIONS(125), + [anon_sym_AMP] = ACTIONS(127), + [anon_sym_CARET] = ACTIONS(125), + [anon_sym_QMARK] = ACTIONS(127), + [anon_sym_EQ_EQ] = ACTIONS(125), + [anon_sym_BANG_EQ] = ACTIONS(125), + [anon_sym_AMP_AMP] = ACTIONS(125), + [anon_sym_PIPE_PIPE] = ACTIONS(125), + [anon_sym_QMARK_DOLLAR] = ACTIONS(125), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [361] = { - [anon_sym_SEMI] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1602), - [anon_sym_COMMA] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_RBRACK] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_is] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [332] = { + [ts_builtin_sym_end] = ACTIONS(1608), + [anon_sym_module] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1608), + [anon_sym_export] = ACTIONS(1610), + [anon_sym_LBRACE] = ACTIONS(1608), + [anon_sym_global] = ACTIONS(1610), + [anon_sym_option] = ACTIONS(1610), + [anon_sym_const] = ACTIONS(1610), + [anon_sym_redef] = ACTIONS(1610), + [anon_sym_record] = ACTIONS(1610), + [anon_sym_type] = ACTIONS(1610), + [anon_sym_print] = ACTIONS(1610), + [anon_sym_event] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_switch] = ACTIONS(1610), + [anon_sym_for] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1610), + [anon_sym_next] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1610), + [anon_sym_fallthrough] = ACTIONS(1610), + [anon_sym_return] = ACTIONS(1610), + [anon_sym_add] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_local] = ACTIONS(1610), + [anon_sym_when] = ACTIONS(1610), + [anon_sym_assert] = ACTIONS(1610), + [anon_sym_table] = ACTIONS(1610), + [anon_sym_set] = ACTIONS(1610), + [anon_sym_vector] = ACTIONS(1610), + [anon_sym_function] = ACTIONS(1610), + [anon_sym_hook] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1608), + [anon_sym_PLUS_PLUS] = ACTIONS(1608), + [anon_sym_DASH_DASH] = ACTIONS(1608), + [anon_sym_BANG] = ACTIONS(1608), + [anon_sym_TILDE] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_copy] = ACTIONS(1610), + [anon_sym_schedule] = ACTIONS(1610), + [aux_sym_constant_token1] = ACTIONS(1610), + [anon_sym_T] = ACTIONS(1610), + [anon_sym_F] = ACTIONS(1610), + [anon_sym_ATdeprecated] = ACTIONS(1608), + [anon_sym_ATload] = ACTIONS(1610), + [anon_sym_ATload_DASHsigs] = ACTIONS(1608), + [anon_sym_ATload_DASHplugin] = ACTIONS(1608), + [anon_sym_ATunload] = ACTIONS(1608), + [anon_sym_ATprefixes] = ACTIONS(1608), + [anon_sym_ATif] = ACTIONS(1610), + [anon_sym_ATifdef] = ACTIONS(1608), + [anon_sym_ATifndef] = ACTIONS(1608), + [anon_sym_ATendif] = ACTIONS(1608), + [anon_sym_ATelse] = ACTIONS(1608), + [anon_sym_ATpragma] = ACTIONS(1608), + [anon_sym_ATDIR] = ACTIONS(1608), + [anon_sym_ATFILENAME] = ACTIONS(1608), + [sym_id] = ACTIONS(1610), + [sym_pattern] = ACTIONS(1608), + [sym_ipv6] = ACTIONS(1610), + [sym_ipv4] = ACTIONS(1610), + [sym_port] = ACTIONS(1608), + [sym_floatp] = ACTIONS(1610), + [sym_hex] = ACTIONS(1610), + [sym_hostname] = ACTIONS(1610), + [aux_sym_string_token1] = ACTIONS(1608), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [362] = { - [ts_builtin_sym_end] = ACTIONS(1468), - [anon_sym_module] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1468), - [anon_sym_export] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1468), - [anon_sym_global] = ACTIONS(1470), - [anon_sym_option] = ACTIONS(1470), - [anon_sym_const] = ACTIONS(1470), - [anon_sym_redef] = ACTIONS(1470), - [anon_sym_record] = ACTIONS(1470), - [anon_sym_type] = ACTIONS(1470), - [anon_sym_print] = ACTIONS(1470), - [anon_sym_event] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1470), - [anon_sym_for] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1470), - [anon_sym_next] = ACTIONS(1470), - [anon_sym_break] = ACTIONS(1470), - [anon_sym_fallthrough] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1470), - [anon_sym_add] = ACTIONS(1470), - [anon_sym_delete] = ACTIONS(1470), - [anon_sym_local] = ACTIONS(1470), - [anon_sym_when] = ACTIONS(1470), - [anon_sym_assert] = ACTIONS(1470), - [anon_sym_table] = ACTIONS(1470), - [anon_sym_set] = ACTIONS(1470), - [anon_sym_vector] = ACTIONS(1470), - [anon_sym_function] = ACTIONS(1470), - [anon_sym_hook] = ACTIONS(1470), - [anon_sym_DOLLAR] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_PLUS_PLUS] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_copy] = ACTIONS(1470), - [anon_sym_schedule] = ACTIONS(1470), - [aux_sym_constant_token1] = ACTIONS(1470), - [anon_sym_T] = ACTIONS(1470), - [anon_sym_F] = ACTIONS(1470), - [anon_sym_ATdeprecated] = ACTIONS(1468), - [anon_sym_ATload] = ACTIONS(1470), - [anon_sym_ATload_DASHsigs] = ACTIONS(1468), - [anon_sym_ATload_DASHplugin] = ACTIONS(1468), - [anon_sym_ATunload] = ACTIONS(1468), - [anon_sym_ATprefixes] = ACTIONS(1468), - [anon_sym_ATif] = ACTIONS(1470), - [anon_sym_ATifdef] = ACTIONS(1468), - [anon_sym_ATifndef] = ACTIONS(1468), - [anon_sym_ATendif] = ACTIONS(1468), - [anon_sym_ATelse] = ACTIONS(1468), - [anon_sym_ATDIR] = ACTIONS(1468), - [anon_sym_ATFILENAME] = ACTIONS(1468), - [sym_id] = ACTIONS(1470), - [sym_pattern] = ACTIONS(1468), - [sym_ipv6] = ACTIONS(1470), - [sym_ipv4] = ACTIONS(1470), - [sym_port] = ACTIONS(1468), - [sym_floatp] = ACTIONS(1470), - [sym_hex] = ACTIONS(1470), - [sym_hostname] = ACTIONS(1470), - [aux_sym_string_token1] = ACTIONS(1468), + [333] = { + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_as] = ACTIONS(135), + [anon_sym_AMPdeprecated] = ACTIONS(135), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(135), + [anon_sym_AMPerror_handler] = ACTIONS(135), + [anon_sym_AMPis_assigned] = ACTIONS(135), + [anon_sym_AMPis_used] = ACTIONS(135), + [anon_sym_AMPlog] = ACTIONS(135), + [anon_sym_AMPoptional] = ACTIONS(135), + [anon_sym_AMPraw_output] = ACTIONS(135), + [anon_sym_AMPredef] = ACTIONS(135), + [anon_sym_AMPadd_func] = ACTIONS(135), + [anon_sym_AMPbackend] = ACTIONS(135), + [anon_sym_AMPbroker_store] = ACTIONS(135), + [anon_sym_AMPcreate_expire] = ACTIONS(135), + [anon_sym_AMPdefault] = ACTIONS(135), + [anon_sym_AMPdelete_func] = ACTIONS(135), + [anon_sym_AMPexpire_func] = ACTIONS(135), + [anon_sym_AMPgroup] = ACTIONS(135), + [anon_sym_AMPon_change] = ACTIONS(135), + [anon_sym_AMPpriority] = ACTIONS(135), + [anon_sym_AMPread_expire] = ACTIONS(135), + [anon_sym_AMPtype_column] = ACTIONS(135), + [anon_sym_AMPwrite_expire] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_ATdeprecated] = ACTIONS(135), + [anon_sym_ATload] = ACTIONS(141), + [anon_sym_ATload_DASHsigs] = ACTIONS(135), + [anon_sym_ATload_DASHplugin] = ACTIONS(135), + [anon_sym_ATunload] = ACTIONS(135), + [anon_sym_ATprefixes] = ACTIONS(135), + [anon_sym_ATif] = ACTIONS(141), + [anon_sym_ATifdef] = ACTIONS(135), + [anon_sym_ATifndef] = ACTIONS(135), + [anon_sym_ATendif] = ACTIONS(135), + [anon_sym_ATelse] = ACTIONS(135), + [anon_sym_ATpragma] = ACTIONS(135), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [363] = { - [ts_builtin_sym_end] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1578), - [anon_sym_SEMI] = ACTIONS(1576), - [anon_sym_export] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1576), - [anon_sym_global] = ACTIONS(1578), - [anon_sym_option] = ACTIONS(1578), - [anon_sym_const] = ACTIONS(1578), - [anon_sym_redef] = ACTIONS(1578), - [anon_sym_record] = ACTIONS(1578), - [anon_sym_type] = ACTIONS(1578), - [anon_sym_print] = ACTIONS(1578), - [anon_sym_event] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1578), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_switch] = ACTIONS(1578), - [anon_sym_for] = ACTIONS(1578), - [anon_sym_LBRACK] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1578), - [anon_sym_next] = ACTIONS(1578), - [anon_sym_break] = ACTIONS(1578), - [anon_sym_fallthrough] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1578), - [anon_sym_add] = ACTIONS(1578), - [anon_sym_delete] = ACTIONS(1578), - [anon_sym_local] = ACTIONS(1578), - [anon_sym_when] = ACTIONS(1578), - [anon_sym_assert] = ACTIONS(1578), - [anon_sym_table] = ACTIONS(1578), - [anon_sym_set] = ACTIONS(1578), - [anon_sym_vector] = ACTIONS(1578), - [anon_sym_function] = ACTIONS(1578), - [anon_sym_hook] = ACTIONS(1578), - [anon_sym_DOLLAR] = ACTIONS(1576), - [anon_sym_PIPE] = ACTIONS(1576), - [anon_sym_PLUS_PLUS] = ACTIONS(1576), - [anon_sym_DASH_DASH] = ACTIONS(1576), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_TILDE] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1578), - [anon_sym_copy] = ACTIONS(1578), - [anon_sym_schedule] = ACTIONS(1578), - [aux_sym_constant_token1] = ACTIONS(1578), - [anon_sym_T] = ACTIONS(1578), - [anon_sym_F] = ACTIONS(1578), - [anon_sym_ATdeprecated] = ACTIONS(1576), - [anon_sym_ATload] = ACTIONS(1578), - [anon_sym_ATload_DASHsigs] = ACTIONS(1576), - [anon_sym_ATload_DASHplugin] = ACTIONS(1576), - [anon_sym_ATunload] = ACTIONS(1576), - [anon_sym_ATprefixes] = ACTIONS(1576), - [anon_sym_ATif] = ACTIONS(1578), - [anon_sym_ATifdef] = ACTIONS(1576), - [anon_sym_ATifndef] = ACTIONS(1576), - [anon_sym_ATendif] = ACTIONS(1576), - [anon_sym_ATelse] = ACTIONS(1576), - [anon_sym_ATDIR] = ACTIONS(1576), - [anon_sym_ATFILENAME] = ACTIONS(1576), - [sym_id] = ACTIONS(1578), - [sym_pattern] = ACTIONS(1576), - [sym_ipv6] = ACTIONS(1578), - [sym_ipv4] = ACTIONS(1578), - [sym_port] = ACTIONS(1576), - [sym_floatp] = ACTIONS(1578), - [sym_hex] = ACTIONS(1578), - [sym_hostname] = ACTIONS(1578), - [aux_sym_string_token1] = ACTIONS(1576), + [334] = { + [sym_index_slice] = STATE(336), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(135), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(135), + [anon_sym_AMPerror_handler] = ACTIONS(135), + [anon_sym_AMPis_assigned] = ACTIONS(135), + [anon_sym_AMPis_used] = ACTIONS(135), + [anon_sym_AMPlog] = ACTIONS(135), + [anon_sym_AMPoptional] = ACTIONS(135), + [anon_sym_AMPraw_output] = ACTIONS(135), + [anon_sym_AMPredef] = ACTIONS(135), + [anon_sym_AMPadd_func] = ACTIONS(135), + [anon_sym_AMPbackend] = ACTIONS(135), + [anon_sym_AMPbroker_store] = ACTIONS(135), + [anon_sym_AMPcreate_expire] = ACTIONS(135), + [anon_sym_AMPdefault] = ACTIONS(135), + [anon_sym_AMPdelete_func] = ACTIONS(135), + [anon_sym_AMPexpire_func] = ACTIONS(135), + [anon_sym_AMPgroup] = ACTIONS(135), + [anon_sym_AMPon_change] = ACTIONS(135), + [anon_sym_AMPpriority] = ACTIONS(135), + [anon_sym_AMPread_expire] = ACTIONS(135), + [anon_sym_AMPtype_column] = ACTIONS(135), + [anon_sym_AMPwrite_expire] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_ATdeprecated] = ACTIONS(135), + [anon_sym_ATload] = ACTIONS(141), + [anon_sym_ATload_DASHsigs] = ACTIONS(135), + [anon_sym_ATload_DASHplugin] = ACTIONS(135), + [anon_sym_ATunload] = ACTIONS(135), + [anon_sym_ATprefixes] = ACTIONS(135), + [anon_sym_ATif] = ACTIONS(141), + [anon_sym_ATifdef] = ACTIONS(135), + [anon_sym_ATifndef] = ACTIONS(135), + [anon_sym_ATendif] = ACTIONS(135), + [anon_sym_ATelse] = ACTIONS(135), + [anon_sym_ATpragma] = ACTIONS(135), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [364] = { - [anon_sym_SEMI] = ACTIONS(321), - [anon_sym_LBRACE] = ACTIONS(321), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_PLUS_EQ] = ACTIONS(321), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_COMMA] = ACTIONS(321), - [anon_sym_in] = ACTIONS(321), - [anon_sym_LBRACK] = ACTIONS(321), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_EQ] = ACTIONS(323), - [anon_sym_as] = ACTIONS(321), - [anon_sym_AMPdeprecated] = ACTIONS(321), - [anon_sym_DASH_EQ] = ACTIONS(321), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(321), - [anon_sym_AMPerror_handler] = ACTIONS(321), - [anon_sym_AMPis_assigned] = ACTIONS(321), - [anon_sym_AMPis_used] = ACTIONS(321), - [anon_sym_AMPlog] = ACTIONS(321), - [anon_sym_AMPoptional] = ACTIONS(321), - [anon_sym_AMPraw_output] = ACTIONS(321), - [anon_sym_AMPredef] = ACTIONS(321), - [anon_sym_AMPadd_func] = ACTIONS(321), - [anon_sym_AMPbackend] = ACTIONS(321), - [anon_sym_AMPbroker_store] = ACTIONS(321), - [anon_sym_AMPcreate_expire] = ACTIONS(321), - [anon_sym_AMPdefault] = ACTIONS(321), - [anon_sym_AMPdelete_func] = ACTIONS(321), - [anon_sym_AMPexpire_func] = ACTIONS(321), - [anon_sym_AMPgroup] = ACTIONS(321), - [anon_sym_AMPon_change] = ACTIONS(321), - [anon_sym_AMPpriority] = ACTIONS(321), - [anon_sym_AMPread_expire] = ACTIONS(321), - [anon_sym_AMPtype_column] = ACTIONS(321), - [anon_sym_AMPwrite_expire] = ACTIONS(321), - [anon_sym_DOLLAR] = ACTIONS(321), - [anon_sym_PIPE] = ACTIONS(323), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_DASH] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(323), - [anon_sym_is] = ACTIONS(321), - [anon_sym_STAR] = ACTIONS(321), - [anon_sym_SLASH] = ACTIONS(321), - [anon_sym_PERCENT] = ACTIONS(321), - [anon_sym_LT] = ACTIONS(323), - [anon_sym_LT_EQ] = ACTIONS(321), - [anon_sym_GT] = ACTIONS(323), - [anon_sym_GT_EQ] = ACTIONS(321), - [anon_sym_AMP] = ACTIONS(323), - [anon_sym_CARET] = ACTIONS(321), - [anon_sym_QMARK] = ACTIONS(323), - [anon_sym_EQ_EQ] = ACTIONS(321), - [anon_sym_BANG_EQ] = ACTIONS(321), - [anon_sym_AMP_AMP] = ACTIONS(321), - [anon_sym_PIPE_PIPE] = ACTIONS(321), - [anon_sym_QMARK_DOLLAR] = ACTIONS(321), - [anon_sym_ATdeprecated] = ACTIONS(321), - [anon_sym_ATload] = ACTIONS(323), - [anon_sym_ATload_DASHsigs] = ACTIONS(321), - [anon_sym_ATload_DASHplugin] = ACTIONS(321), - [anon_sym_ATunload] = ACTIONS(321), - [anon_sym_ATprefixes] = ACTIONS(321), - [anon_sym_ATif] = ACTIONS(323), - [anon_sym_ATifdef] = ACTIONS(321), - [anon_sym_ATifndef] = ACTIONS(321), - [anon_sym_ATendif] = ACTIONS(321), - [anon_sym_ATelse] = ACTIONS(321), + [335] = { + [anon_sym_SEMI] = ACTIONS(1618), + [anon_sym_LBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_COLON] = ACTIONS(1618), + [anon_sym_PLUS_EQ] = ACTIONS(1618), + [anon_sym_DASH_EQ] = ACTIONS(1618), + [anon_sym_LPAREN] = ACTIONS(1618), + [anon_sym_RPAREN] = ACTIONS(1618), + [anon_sym_COMMA] = ACTIONS(1618), + [anon_sym_in] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_RBRACK] = ACTIONS(1618), + [anon_sym_EQ] = ACTIONS(1620), + [anon_sym_as] = ACTIONS(1618), + [anon_sym_AMPdeprecated] = ACTIONS(1618), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1618), + [anon_sym_AMPerror_handler] = ACTIONS(1618), + [anon_sym_AMPis_assigned] = ACTIONS(1618), + [anon_sym_AMPis_used] = ACTIONS(1618), + [anon_sym_AMPlog] = ACTIONS(1618), + [anon_sym_AMPoptional] = ACTIONS(1618), + [anon_sym_AMPraw_output] = ACTIONS(1618), + [anon_sym_AMPredef] = ACTIONS(1618), + [anon_sym_AMPadd_func] = ACTIONS(1618), + [anon_sym_AMPbackend] = ACTIONS(1618), + [anon_sym_AMPbroker_store] = ACTIONS(1618), + [anon_sym_AMPcreate_expire] = ACTIONS(1618), + [anon_sym_AMPdefault] = ACTIONS(1618), + [anon_sym_AMPdelete_func] = ACTIONS(1618), + [anon_sym_AMPexpire_func] = ACTIONS(1618), + [anon_sym_AMPgroup] = ACTIONS(1618), + [anon_sym_AMPon_change] = ACTIONS(1618), + [anon_sym_AMPpriority] = ACTIONS(1618), + [anon_sym_AMPread_expire] = ACTIONS(1618), + [anon_sym_AMPtype_column] = ACTIONS(1618), + [anon_sym_AMPwrite_expire] = ACTIONS(1618), + [anon_sym_DOLLAR] = ACTIONS(1618), + [anon_sym_PIPE] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_is] = ACTIONS(1618), + [anon_sym_STAR] = ACTIONS(1618), + [anon_sym_SLASH] = ACTIONS(1618), + [anon_sym_PERCENT] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1620), + [anon_sym_LT_EQ] = ACTIONS(1618), + [anon_sym_GT] = ACTIONS(1620), + [anon_sym_GT_EQ] = ACTIONS(1618), + [anon_sym_AMP] = ACTIONS(1620), + [anon_sym_CARET] = ACTIONS(1618), + [anon_sym_QMARK] = ACTIONS(1620), + [anon_sym_EQ_EQ] = ACTIONS(1618), + [anon_sym_BANG_EQ] = ACTIONS(1618), + [anon_sym_AMP_AMP] = ACTIONS(1618), + [anon_sym_PIPE_PIPE] = ACTIONS(1618), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1618), + [anon_sym_ATdeprecated] = ACTIONS(1618), + [anon_sym_ATload] = ACTIONS(1620), + [anon_sym_ATload_DASHsigs] = ACTIONS(1618), + [anon_sym_ATload_DASHplugin] = ACTIONS(1618), + [anon_sym_ATunload] = ACTIONS(1618), + [anon_sym_ATprefixes] = ACTIONS(1618), + [anon_sym_ATif] = ACTIONS(1620), + [anon_sym_ATifdef] = ACTIONS(1618), + [anon_sym_ATifndef] = ACTIONS(1618), + [anon_sym_ATendif] = ACTIONS(1618), + [anon_sym_ATelse] = ACTIONS(1618), + [anon_sym_ATpragma] = ACTIONS(1618), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [365] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_module] = ACTIONS(1608), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_export] = ACTIONS(1608), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_global] = ACTIONS(1608), - [anon_sym_option] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_redef] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_type] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [336] = { + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COLON] = ACTIONS(135), + [anon_sym_PLUS_EQ] = ACTIONS(135), + [anon_sym_DASH_EQ] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [anon_sym_LBRACK] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_as] = ACTIONS(135), + [anon_sym_AMPdeprecated] = ACTIONS(135), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(135), + [anon_sym_AMPerror_handler] = ACTIONS(135), + [anon_sym_AMPis_assigned] = ACTIONS(135), + [anon_sym_AMPis_used] = ACTIONS(135), + [anon_sym_AMPlog] = ACTIONS(135), + [anon_sym_AMPoptional] = ACTIONS(135), + [anon_sym_AMPraw_output] = ACTIONS(135), + [anon_sym_AMPredef] = ACTIONS(135), + [anon_sym_AMPadd_func] = ACTIONS(135), + [anon_sym_AMPbackend] = ACTIONS(135), + [anon_sym_AMPbroker_store] = ACTIONS(135), + [anon_sym_AMPcreate_expire] = ACTIONS(135), + [anon_sym_AMPdefault] = ACTIONS(135), + [anon_sym_AMPdelete_func] = ACTIONS(135), + [anon_sym_AMPexpire_func] = ACTIONS(135), + [anon_sym_AMPgroup] = ACTIONS(135), + [anon_sym_AMPon_change] = ACTIONS(135), + [anon_sym_AMPpriority] = ACTIONS(135), + [anon_sym_AMPread_expire] = ACTIONS(135), + [anon_sym_AMPtype_column] = ACTIONS(135), + [anon_sym_AMPwrite_expire] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_BANG] = ACTIONS(141), + [anon_sym_DASH] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(141), + [anon_sym_is] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_SLASH] = ACTIONS(135), + [anon_sym_PERCENT] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(141), + [anon_sym_LT_EQ] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(141), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(141), + [anon_sym_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(135), + [anon_sym_PIPE_PIPE] = ACTIONS(135), + [anon_sym_QMARK_DOLLAR] = ACTIONS(135), + [anon_sym_ATdeprecated] = ACTIONS(135), + [anon_sym_ATload] = ACTIONS(141), + [anon_sym_ATload_DASHsigs] = ACTIONS(135), + [anon_sym_ATload_DASHplugin] = ACTIONS(135), + [anon_sym_ATunload] = ACTIONS(135), + [anon_sym_ATprefixes] = ACTIONS(135), + [anon_sym_ATif] = ACTIONS(141), + [anon_sym_ATifdef] = ACTIONS(135), + [anon_sym_ATifndef] = ACTIONS(135), + [anon_sym_ATendif] = ACTIONS(135), + [anon_sym_ATelse] = ACTIONS(135), + [anon_sym_ATpragma] = ACTIONS(135), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [366] = { - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_COLON] = ACTIONS(1610), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_in] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1610), - [anon_sym_AMPdeprecated] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1610), - [anon_sym_AMPerror_handler] = ACTIONS(1610), - [anon_sym_AMPis_assigned] = ACTIONS(1610), - [anon_sym_AMPis_used] = ACTIONS(1610), - [anon_sym_AMPlog] = ACTIONS(1610), - [anon_sym_AMPoptional] = ACTIONS(1610), - [anon_sym_AMPraw_output] = ACTIONS(1610), - [anon_sym_AMPredef] = ACTIONS(1610), - [anon_sym_AMPadd_func] = ACTIONS(1610), - [anon_sym_AMPbackend] = ACTIONS(1610), - [anon_sym_AMPbroker_store] = ACTIONS(1610), - [anon_sym_AMPcreate_expire] = ACTIONS(1610), - [anon_sym_AMPdefault] = ACTIONS(1610), - [anon_sym_AMPdelete_func] = ACTIONS(1610), - [anon_sym_AMPexpire_func] = ACTIONS(1610), - [anon_sym_AMPgroup] = ACTIONS(1610), - [anon_sym_AMPon_change] = ACTIONS(1610), - [anon_sym_AMPpriority] = ACTIONS(1610), - [anon_sym_AMPread_expire] = ACTIONS(1610), - [anon_sym_AMPtype_column] = ACTIONS(1610), - [anon_sym_AMPwrite_expire] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_is] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1610), - [anon_sym_ATdeprecated] = ACTIONS(1610), - [anon_sym_ATload] = ACTIONS(1612), - [anon_sym_ATload_DASHsigs] = ACTIONS(1610), - [anon_sym_ATload_DASHplugin] = ACTIONS(1610), - [anon_sym_ATunload] = ACTIONS(1610), - [anon_sym_ATprefixes] = ACTIONS(1610), - [anon_sym_ATif] = ACTIONS(1612), - [anon_sym_ATifdef] = ACTIONS(1610), - [anon_sym_ATifndef] = ACTIONS(1610), - [anon_sym_ATendif] = ACTIONS(1610), - [anon_sym_ATelse] = ACTIONS(1610), + [337] = { + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [367] = { - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_COLON] = ACTIONS(1610), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_in] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1610), - [anon_sym_AMPdeprecated] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1610), - [anon_sym_AMPerror_handler] = ACTIONS(1610), - [anon_sym_AMPis_assigned] = ACTIONS(1610), - [anon_sym_AMPis_used] = ACTIONS(1610), - [anon_sym_AMPlog] = ACTIONS(1610), - [anon_sym_AMPoptional] = ACTIONS(1610), - [anon_sym_AMPraw_output] = ACTIONS(1610), - [anon_sym_AMPredef] = ACTIONS(1610), - [anon_sym_AMPadd_func] = ACTIONS(1610), - [anon_sym_AMPbackend] = ACTIONS(1610), - [anon_sym_AMPbroker_store] = ACTIONS(1610), - [anon_sym_AMPcreate_expire] = ACTIONS(1610), - [anon_sym_AMPdefault] = ACTIONS(1610), - [anon_sym_AMPdelete_func] = ACTIONS(1610), - [anon_sym_AMPexpire_func] = ACTIONS(1610), - [anon_sym_AMPgroup] = ACTIONS(1610), - [anon_sym_AMPon_change] = ACTIONS(1610), - [anon_sym_AMPpriority] = ACTIONS(1610), - [anon_sym_AMPread_expire] = ACTIONS(1610), - [anon_sym_AMPtype_column] = ACTIONS(1610), - [anon_sym_AMPwrite_expire] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_is] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1610), - [anon_sym_ATdeprecated] = ACTIONS(1610), - [anon_sym_ATload] = ACTIONS(1612), - [anon_sym_ATload_DASHsigs] = ACTIONS(1610), - [anon_sym_ATload_DASHplugin] = ACTIONS(1610), - [anon_sym_ATunload] = ACTIONS(1610), - [anon_sym_ATprefixes] = ACTIONS(1610), - [anon_sym_ATif] = ACTIONS(1612), - [anon_sym_ATifdef] = ACTIONS(1610), - [anon_sym_ATifndef] = ACTIONS(1610), - [anon_sym_ATendif] = ACTIONS(1610), - [anon_sym_ATelse] = ACTIONS(1610), + [338] = { + [anon_sym_SEMI] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_COLON] = ACTIONS(1594), + [anon_sym_PLUS_EQ] = ACTIONS(1594), + [anon_sym_DASH_EQ] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(1594), + [anon_sym_RPAREN] = ACTIONS(1594), + [anon_sym_COMMA] = ACTIONS(1594), + [anon_sym_in] = ACTIONS(1594), + [anon_sym_LBRACK] = ACTIONS(1594), + [anon_sym_RBRACK] = ACTIONS(1594), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1594), + [anon_sym_AMPdeprecated] = ACTIONS(1594), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1594), + [anon_sym_AMPerror_handler] = ACTIONS(1594), + [anon_sym_AMPis_assigned] = ACTIONS(1594), + [anon_sym_AMPis_used] = ACTIONS(1594), + [anon_sym_AMPlog] = ACTIONS(1594), + [anon_sym_AMPoptional] = ACTIONS(1594), + [anon_sym_AMPraw_output] = ACTIONS(1594), + [anon_sym_AMPredef] = ACTIONS(1594), + [anon_sym_AMPadd_func] = ACTIONS(1594), + [anon_sym_AMPbackend] = ACTIONS(1594), + [anon_sym_AMPbroker_store] = ACTIONS(1594), + [anon_sym_AMPcreate_expire] = ACTIONS(1594), + [anon_sym_AMPdefault] = ACTIONS(1594), + [anon_sym_AMPdelete_func] = ACTIONS(1594), + [anon_sym_AMPexpire_func] = ACTIONS(1594), + [anon_sym_AMPgroup] = ACTIONS(1594), + [anon_sym_AMPon_change] = ACTIONS(1594), + [anon_sym_AMPpriority] = ACTIONS(1594), + [anon_sym_AMPread_expire] = ACTIONS(1594), + [anon_sym_AMPtype_column] = ACTIONS(1594), + [anon_sym_AMPwrite_expire] = ACTIONS(1594), + [anon_sym_DOLLAR] = ACTIONS(1594), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_is] = ACTIONS(1594), + [anon_sym_STAR] = ACTIONS(1594), + [anon_sym_SLASH] = ACTIONS(1594), + [anon_sym_PERCENT] = ACTIONS(1594), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_LT_EQ] = ACTIONS(1594), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1594), + [anon_sym_QMARK] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1594), + [anon_sym_BANG_EQ] = ACTIONS(1594), + [anon_sym_AMP_AMP] = ACTIONS(1594), + [anon_sym_PIPE_PIPE] = ACTIONS(1594), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1594), + [anon_sym_ATdeprecated] = ACTIONS(1594), + [anon_sym_ATload] = ACTIONS(1596), + [anon_sym_ATload_DASHsigs] = ACTIONS(1594), + [anon_sym_ATload_DASHplugin] = ACTIONS(1594), + [anon_sym_ATunload] = ACTIONS(1594), + [anon_sym_ATprefixes] = ACTIONS(1594), + [anon_sym_ATif] = ACTIONS(1596), + [anon_sym_ATifdef] = ACTIONS(1594), + [anon_sym_ATifndef] = ACTIONS(1594), + [anon_sym_ATendif] = ACTIONS(1594), + [anon_sym_ATelse] = ACTIONS(1594), + [anon_sym_ATpragma] = ACTIONS(1594), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [368] = { - [anon_sym_SEMI] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_COLON] = ACTIONS(1610), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_RPAREN] = ACTIONS(1610), - [anon_sym_COMMA] = ACTIONS(1610), - [anon_sym_in] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_RBRACK] = ACTIONS(1610), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1610), - [anon_sym_AMPdeprecated] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1610), - [anon_sym_AMPerror_handler] = ACTIONS(1610), - [anon_sym_AMPis_assigned] = ACTIONS(1610), - [anon_sym_AMPis_used] = ACTIONS(1610), - [anon_sym_AMPlog] = ACTIONS(1610), - [anon_sym_AMPoptional] = ACTIONS(1610), - [anon_sym_AMPraw_output] = ACTIONS(1610), - [anon_sym_AMPredef] = ACTIONS(1610), - [anon_sym_AMPadd_func] = ACTIONS(1610), - [anon_sym_AMPbackend] = ACTIONS(1610), - [anon_sym_AMPbroker_store] = ACTIONS(1610), - [anon_sym_AMPcreate_expire] = ACTIONS(1610), - [anon_sym_AMPdefault] = ACTIONS(1610), - [anon_sym_AMPdelete_func] = ACTIONS(1610), - [anon_sym_AMPexpire_func] = ACTIONS(1610), - [anon_sym_AMPgroup] = ACTIONS(1610), - [anon_sym_AMPon_change] = ACTIONS(1610), - [anon_sym_AMPpriority] = ACTIONS(1610), - [anon_sym_AMPread_expire] = ACTIONS(1610), - [anon_sym_AMPtype_column] = ACTIONS(1610), - [anon_sym_AMPwrite_expire] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_PLUS] = ACTIONS(1612), - [anon_sym_is] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_SLASH] = ACTIONS(1610), - [anon_sym_PERCENT] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1612), - [anon_sym_LT_EQ] = ACTIONS(1610), - [anon_sym_GT] = ACTIONS(1612), - [anon_sym_GT_EQ] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_CARET] = ACTIONS(1610), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1610), - [anon_sym_ATdeprecated] = ACTIONS(1610), - [anon_sym_ATload] = ACTIONS(1612), - [anon_sym_ATload_DASHsigs] = ACTIONS(1610), - [anon_sym_ATload_DASHplugin] = ACTIONS(1610), - [anon_sym_ATunload] = ACTIONS(1610), - [anon_sym_ATprefixes] = ACTIONS(1610), - [anon_sym_ATif] = ACTIONS(1612), - [anon_sym_ATifdef] = ACTIONS(1610), - [anon_sym_ATifndef] = ACTIONS(1610), - [anon_sym_ATendif] = ACTIONS(1610), - [anon_sym_ATelse] = ACTIONS(1610), + [339] = { + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [369] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [anon_sym_module] = ACTIONS(1616), - [anon_sym_SEMI] = ACTIONS(1614), - [anon_sym_export] = ACTIONS(1616), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_global] = ACTIONS(1616), - [anon_sym_option] = ACTIONS(1616), - [anon_sym_const] = ACTIONS(1616), - [anon_sym_redef] = ACTIONS(1616), - [anon_sym_record] = ACTIONS(1616), - [anon_sym_type] = ACTIONS(1616), - [anon_sym_print] = ACTIONS(1616), - [anon_sym_event] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_switch] = ACTIONS(1616), - [anon_sym_for] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_while] = ACTIONS(1616), - [anon_sym_next] = ACTIONS(1616), - [anon_sym_break] = ACTIONS(1616), - [anon_sym_fallthrough] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1616), - [anon_sym_add] = ACTIONS(1616), - [anon_sym_delete] = ACTIONS(1616), - [anon_sym_local] = ACTIONS(1616), - [anon_sym_when] = ACTIONS(1616), - [anon_sym_assert] = ACTIONS(1616), - [anon_sym_table] = ACTIONS(1616), - [anon_sym_set] = ACTIONS(1616), - [anon_sym_vector] = ACTIONS(1616), - [anon_sym_function] = ACTIONS(1616), - [anon_sym_hook] = ACTIONS(1616), - [anon_sym_DOLLAR] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_PLUS_PLUS] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1614), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_TILDE] = ACTIONS(1614), - [anon_sym_DASH] = ACTIONS(1616), - [anon_sym_PLUS] = ACTIONS(1616), - [anon_sym_copy] = ACTIONS(1616), - [anon_sym_schedule] = ACTIONS(1616), - [aux_sym_constant_token1] = ACTIONS(1616), - [anon_sym_T] = ACTIONS(1616), - [anon_sym_F] = ACTIONS(1616), - [anon_sym_ATdeprecated] = ACTIONS(1614), - [anon_sym_ATload] = ACTIONS(1616), - [anon_sym_ATload_DASHsigs] = ACTIONS(1614), - [anon_sym_ATload_DASHplugin] = ACTIONS(1614), - [anon_sym_ATunload] = ACTIONS(1614), - [anon_sym_ATprefixes] = ACTIONS(1614), - [anon_sym_ATif] = ACTIONS(1616), - [anon_sym_ATifdef] = ACTIONS(1614), - [anon_sym_ATifndef] = ACTIONS(1614), - [anon_sym_ATendif] = ACTIONS(1614), - [anon_sym_ATelse] = ACTIONS(1614), - [anon_sym_ATDIR] = ACTIONS(1614), - [anon_sym_ATFILENAME] = ACTIONS(1614), - [sym_id] = ACTIONS(1616), - [sym_pattern] = ACTIONS(1614), - [sym_ipv6] = ACTIONS(1616), - [sym_ipv4] = ACTIONS(1616), - [sym_port] = ACTIONS(1614), - [sym_floatp] = ACTIONS(1616), - [sym_hex] = ACTIONS(1616), - [sym_hostname] = ACTIONS(1616), - [aux_sym_string_token1] = ACTIONS(1614), + [340] = { + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_in] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_RBRACK] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_as] = ACTIONS(572), + [anon_sym_of] = ACTIONS(1622), + [anon_sym_AMPdeprecated] = ACTIONS(572), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(572), + [anon_sym_AMPerror_handler] = ACTIONS(572), + [anon_sym_AMPis_assigned] = ACTIONS(572), + [anon_sym_AMPis_used] = ACTIONS(572), + [anon_sym_AMPlog] = ACTIONS(572), + [anon_sym_AMPoptional] = ACTIONS(572), + [anon_sym_AMPraw_output] = ACTIONS(572), + [anon_sym_AMPredef] = ACTIONS(572), + [anon_sym_AMPadd_func] = ACTIONS(572), + [anon_sym_AMPbackend] = ACTIONS(572), + [anon_sym_AMPbroker_store] = ACTIONS(572), + [anon_sym_AMPcreate_expire] = ACTIONS(572), + [anon_sym_AMPdefault] = ACTIONS(572), + [anon_sym_AMPdelete_func] = ACTIONS(572), + [anon_sym_AMPexpire_func] = ACTIONS(572), + [anon_sym_AMPgroup] = ACTIONS(572), + [anon_sym_AMPon_change] = ACTIONS(572), + [anon_sym_AMPpriority] = ACTIONS(572), + [anon_sym_AMPread_expire] = ACTIONS(572), + [anon_sym_AMPtype_column] = ACTIONS(572), + [anon_sym_AMPwrite_expire] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_is] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_QMARK_DOLLAR] = ACTIONS(572), + [anon_sym_ATdeprecated] = ACTIONS(572), + [anon_sym_ATload] = ACTIONS(574), + [anon_sym_ATload_DASHsigs] = ACTIONS(572), + [anon_sym_ATload_DASHplugin] = ACTIONS(572), + [anon_sym_ATunload] = ACTIONS(572), + [anon_sym_ATprefixes] = ACTIONS(572), + [anon_sym_ATif] = ACTIONS(574), + [anon_sym_ATifdef] = ACTIONS(572), + [anon_sym_ATifndef] = ACTIONS(572), + [anon_sym_ATendif] = ACTIONS(572), + [anon_sym_ATelse] = ACTIONS(572), + [anon_sym_ATpragma] = ACTIONS(572), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [370] = { - [ts_builtin_sym_end] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_export] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_global] = ACTIONS(1548), - [anon_sym_option] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_redef] = ACTIONS(1548), - [anon_sym_record] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_print] = ACTIONS(1548), - [anon_sym_event] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_switch] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_next] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_fallthrough] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_add] = ACTIONS(1548), - [anon_sym_delete] = ACTIONS(1548), - [anon_sym_local] = ACTIONS(1548), - [anon_sym_when] = ACTIONS(1548), - [anon_sym_assert] = ACTIONS(1548), - [anon_sym_table] = ACTIONS(1548), - [anon_sym_set] = ACTIONS(1548), - [anon_sym_vector] = ACTIONS(1548), - [anon_sym_function] = ACTIONS(1548), - [anon_sym_hook] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1546), - [anon_sym_DASH_DASH] = ACTIONS(1546), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_copy] = ACTIONS(1548), - [anon_sym_schedule] = ACTIONS(1548), - [aux_sym_constant_token1] = ACTIONS(1548), - [anon_sym_T] = ACTIONS(1548), - [anon_sym_F] = ACTIONS(1548), - [anon_sym_ATdeprecated] = ACTIONS(1546), - [anon_sym_ATload] = ACTIONS(1548), - [anon_sym_ATload_DASHsigs] = ACTIONS(1546), - [anon_sym_ATload_DASHplugin] = ACTIONS(1546), - [anon_sym_ATunload] = ACTIONS(1546), - [anon_sym_ATprefixes] = ACTIONS(1546), - [anon_sym_ATif] = ACTIONS(1548), - [anon_sym_ATifdef] = ACTIONS(1546), - [anon_sym_ATifndef] = ACTIONS(1546), - [anon_sym_ATendif] = ACTIONS(1546), - [anon_sym_ATelse] = ACTIONS(1546), - [anon_sym_ATDIR] = ACTIONS(1546), - [anon_sym_ATFILENAME] = ACTIONS(1546), - [sym_id] = ACTIONS(1548), - [sym_pattern] = ACTIONS(1546), - [sym_ipv6] = ACTIONS(1548), - [sym_ipv4] = ACTIONS(1548), - [sym_port] = ACTIONS(1546), - [sym_floatp] = ACTIONS(1548), - [sym_hex] = ACTIONS(1548), - [sym_hostname] = ACTIONS(1548), - [aux_sym_string_token1] = ACTIONS(1546), + [341] = { + [anon_sym_SEMI] = ACTIONS(1624), + [anon_sym_LBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_COLON] = ACTIONS(1624), + [anon_sym_PLUS_EQ] = ACTIONS(1624), + [anon_sym_DASH_EQ] = ACTIONS(1624), + [anon_sym_LPAREN] = ACTIONS(1624), + [anon_sym_RPAREN] = ACTIONS(1624), + [anon_sym_COMMA] = ACTIONS(1624), + [anon_sym_in] = ACTIONS(1624), + [anon_sym_LBRACK] = ACTIONS(1624), + [anon_sym_RBRACK] = ACTIONS(1624), + [anon_sym_EQ] = ACTIONS(1626), + [anon_sym_as] = ACTIONS(1624), + [anon_sym_AMPdeprecated] = ACTIONS(1624), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1624), + [anon_sym_AMPerror_handler] = ACTIONS(1624), + [anon_sym_AMPis_assigned] = ACTIONS(1624), + [anon_sym_AMPis_used] = ACTIONS(1624), + [anon_sym_AMPlog] = ACTIONS(1624), + [anon_sym_AMPoptional] = ACTIONS(1624), + [anon_sym_AMPraw_output] = ACTIONS(1624), + [anon_sym_AMPredef] = ACTIONS(1624), + [anon_sym_AMPadd_func] = ACTIONS(1624), + [anon_sym_AMPbackend] = ACTIONS(1624), + [anon_sym_AMPbroker_store] = ACTIONS(1624), + [anon_sym_AMPcreate_expire] = ACTIONS(1624), + [anon_sym_AMPdefault] = ACTIONS(1624), + [anon_sym_AMPdelete_func] = ACTIONS(1624), + [anon_sym_AMPexpire_func] = ACTIONS(1624), + [anon_sym_AMPgroup] = ACTIONS(1624), + [anon_sym_AMPon_change] = ACTIONS(1624), + [anon_sym_AMPpriority] = ACTIONS(1624), + [anon_sym_AMPread_expire] = ACTIONS(1624), + [anon_sym_AMPtype_column] = ACTIONS(1624), + [anon_sym_AMPwrite_expire] = ACTIONS(1624), + [anon_sym_DOLLAR] = ACTIONS(1624), + [anon_sym_PIPE] = ACTIONS(1626), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_is] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(1624), + [anon_sym_PERCENT] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(1626), + [anon_sym_LT_EQ] = ACTIONS(1624), + [anon_sym_GT] = ACTIONS(1626), + [anon_sym_GT_EQ] = ACTIONS(1624), + [anon_sym_AMP] = ACTIONS(1626), + [anon_sym_CARET] = ACTIONS(1624), + [anon_sym_QMARK] = ACTIONS(1626), + [anon_sym_EQ_EQ] = ACTIONS(1624), + [anon_sym_BANG_EQ] = ACTIONS(1624), + [anon_sym_AMP_AMP] = ACTIONS(1624), + [anon_sym_PIPE_PIPE] = ACTIONS(1624), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1624), + [anon_sym_ATdeprecated] = ACTIONS(1624), + [anon_sym_ATload] = ACTIONS(1626), + [anon_sym_ATload_DASHsigs] = ACTIONS(1624), + [anon_sym_ATload_DASHplugin] = ACTIONS(1624), + [anon_sym_ATunload] = ACTIONS(1624), + [anon_sym_ATprefixes] = ACTIONS(1624), + [anon_sym_ATif] = ACTIONS(1626), + [anon_sym_ATifdef] = ACTIONS(1624), + [anon_sym_ATifndef] = ACTIONS(1624), + [anon_sym_ATendif] = ACTIONS(1624), + [anon_sym_ATelse] = ACTIONS(1624), + [anon_sym_ATpragma] = ACTIONS(1624), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [371] = { - [ts_builtin_sym_end] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1620), - [anon_sym_SEMI] = ACTIONS(1618), - [anon_sym_export] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1618), - [anon_sym_global] = ACTIONS(1620), - [anon_sym_option] = ACTIONS(1620), - [anon_sym_const] = ACTIONS(1620), - [anon_sym_redef] = ACTIONS(1620), - [anon_sym_record] = ACTIONS(1620), - [anon_sym_type] = ACTIONS(1620), - [anon_sym_print] = ACTIONS(1620), - [anon_sym_event] = ACTIONS(1620), - [anon_sym_if] = ACTIONS(1620), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_switch] = ACTIONS(1620), - [anon_sym_for] = ACTIONS(1620), - [anon_sym_LBRACK] = ACTIONS(1618), - [anon_sym_while] = ACTIONS(1620), - [anon_sym_next] = ACTIONS(1620), - [anon_sym_break] = ACTIONS(1620), - [anon_sym_fallthrough] = ACTIONS(1620), - [anon_sym_return] = ACTIONS(1620), - [anon_sym_add] = ACTIONS(1620), - [anon_sym_delete] = ACTIONS(1620), - [anon_sym_local] = ACTIONS(1620), - [anon_sym_when] = ACTIONS(1620), - [anon_sym_assert] = ACTIONS(1620), - [anon_sym_table] = ACTIONS(1620), - [anon_sym_set] = ACTIONS(1620), - [anon_sym_vector] = ACTIONS(1620), - [anon_sym_function] = ACTIONS(1620), - [anon_sym_hook] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1618), - [anon_sym_DASH_DASH] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(1620), - [anon_sym_copy] = ACTIONS(1620), - [anon_sym_schedule] = ACTIONS(1620), - [aux_sym_constant_token1] = ACTIONS(1620), - [anon_sym_T] = ACTIONS(1620), - [anon_sym_F] = ACTIONS(1620), - [anon_sym_ATdeprecated] = ACTIONS(1618), - [anon_sym_ATload] = ACTIONS(1620), - [anon_sym_ATload_DASHsigs] = ACTIONS(1618), - [anon_sym_ATload_DASHplugin] = ACTIONS(1618), - [anon_sym_ATunload] = ACTIONS(1618), - [anon_sym_ATprefixes] = ACTIONS(1618), - [anon_sym_ATif] = ACTIONS(1620), - [anon_sym_ATifdef] = ACTIONS(1618), - [anon_sym_ATifndef] = ACTIONS(1618), - [anon_sym_ATendif] = ACTIONS(1618), - [anon_sym_ATelse] = ACTIONS(1618), - [anon_sym_ATDIR] = ACTIONS(1618), - [anon_sym_ATFILENAME] = ACTIONS(1618), - [sym_id] = ACTIONS(1620), - [sym_pattern] = ACTIONS(1618), - [sym_ipv6] = ACTIONS(1620), - [sym_ipv4] = ACTIONS(1620), - [sym_port] = ACTIONS(1618), - [sym_floatp] = ACTIONS(1620), - [sym_hex] = ACTIONS(1620), - [sym_hostname] = ACTIONS(1620), - [aux_sym_string_token1] = ACTIONS(1618), + [342] = { + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [372] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [anon_sym_module] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1456), - [anon_sym_export] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_global] = ACTIONS(1458), - [anon_sym_option] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_redef] = ACTIONS(1458), - [anon_sym_record] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_print] = ACTIONS(1458), - [anon_sym_event] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1458), - [anon_sym_next] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_fallthrough] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_add] = ACTIONS(1458), - [anon_sym_delete] = ACTIONS(1458), - [anon_sym_local] = ACTIONS(1458), - [anon_sym_when] = ACTIONS(1458), - [anon_sym_assert] = ACTIONS(1458), - [anon_sym_table] = ACTIONS(1458), - [anon_sym_set] = ACTIONS(1458), - [anon_sym_vector] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_hook] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_copy] = ACTIONS(1458), - [anon_sym_schedule] = ACTIONS(1458), - [aux_sym_constant_token1] = ACTIONS(1458), - [anon_sym_T] = ACTIONS(1458), - [anon_sym_F] = ACTIONS(1458), - [anon_sym_ATdeprecated] = ACTIONS(1456), - [anon_sym_ATload] = ACTIONS(1458), - [anon_sym_ATload_DASHsigs] = ACTIONS(1456), - [anon_sym_ATload_DASHplugin] = ACTIONS(1456), - [anon_sym_ATunload] = ACTIONS(1456), - [anon_sym_ATprefixes] = ACTIONS(1456), - [anon_sym_ATif] = ACTIONS(1458), - [anon_sym_ATifdef] = ACTIONS(1456), - [anon_sym_ATifndef] = ACTIONS(1456), - [anon_sym_ATendif] = ACTIONS(1456), - [anon_sym_ATelse] = ACTIONS(1456), - [anon_sym_ATDIR] = ACTIONS(1456), - [anon_sym_ATFILENAME] = ACTIONS(1456), - [sym_id] = ACTIONS(1458), - [sym_pattern] = ACTIONS(1456), - [sym_ipv6] = ACTIONS(1458), - [sym_ipv4] = ACTIONS(1458), - [sym_port] = ACTIONS(1456), - [sym_floatp] = ACTIONS(1458), - [sym_hex] = ACTIONS(1458), - [sym_hostname] = ACTIONS(1458), - [aux_sym_string_token1] = ACTIONS(1456), + [343] = { + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [373] = { - [ts_builtin_sym_end] = ACTIONS(1622), - [anon_sym_module] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(1622), - [anon_sym_export] = ACTIONS(1624), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_global] = ACTIONS(1624), - [anon_sym_option] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1624), - [anon_sym_redef] = ACTIONS(1624), - [anon_sym_record] = ACTIONS(1624), - [anon_sym_type] = ACTIONS(1624), - [anon_sym_print] = ACTIONS(1624), - [anon_sym_event] = ACTIONS(1624), - [anon_sym_if] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_switch] = ACTIONS(1624), - [anon_sym_for] = ACTIONS(1624), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_while] = ACTIONS(1624), - [anon_sym_next] = ACTIONS(1624), - [anon_sym_break] = ACTIONS(1624), - [anon_sym_fallthrough] = ACTIONS(1624), - [anon_sym_return] = ACTIONS(1624), - [anon_sym_add] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_local] = ACTIONS(1624), - [anon_sym_when] = ACTIONS(1624), - [anon_sym_assert] = ACTIONS(1624), - [anon_sym_table] = ACTIONS(1624), - [anon_sym_set] = ACTIONS(1624), - [anon_sym_vector] = ACTIONS(1624), - [anon_sym_function] = ACTIONS(1624), - [anon_sym_hook] = ACTIONS(1624), - [anon_sym_DOLLAR] = ACTIONS(1622), - [anon_sym_PIPE] = ACTIONS(1622), - [anon_sym_PLUS_PLUS] = ACTIONS(1622), - [anon_sym_DASH_DASH] = ACTIONS(1622), - [anon_sym_BANG] = ACTIONS(1622), - [anon_sym_TILDE] = ACTIONS(1622), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_copy] = ACTIONS(1624), - [anon_sym_schedule] = ACTIONS(1624), - [aux_sym_constant_token1] = ACTIONS(1624), - [anon_sym_T] = ACTIONS(1624), - [anon_sym_F] = ACTIONS(1624), - [anon_sym_ATdeprecated] = ACTIONS(1622), - [anon_sym_ATload] = ACTIONS(1624), - [anon_sym_ATload_DASHsigs] = ACTIONS(1622), - [anon_sym_ATload_DASHplugin] = ACTIONS(1622), - [anon_sym_ATunload] = ACTIONS(1622), - [anon_sym_ATprefixes] = ACTIONS(1622), - [anon_sym_ATif] = ACTIONS(1624), - [anon_sym_ATifdef] = ACTIONS(1622), - [anon_sym_ATifndef] = ACTIONS(1622), - [anon_sym_ATendif] = ACTIONS(1622), - [anon_sym_ATelse] = ACTIONS(1622), - [anon_sym_ATDIR] = ACTIONS(1622), - [anon_sym_ATFILENAME] = ACTIONS(1622), - [sym_id] = ACTIONS(1624), - [sym_pattern] = ACTIONS(1622), - [sym_ipv6] = ACTIONS(1624), - [sym_ipv4] = ACTIONS(1624), - [sym_port] = ACTIONS(1622), - [sym_floatp] = ACTIONS(1624), - [sym_hex] = ACTIONS(1624), - [sym_hostname] = ACTIONS(1624), - [aux_sym_string_token1] = ACTIONS(1622), + [344] = { + [sym_index_slice] = STATE(336), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [374] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [anon_sym_module] = ACTIONS(1628), - [anon_sym_SEMI] = ACTIONS(1626), - [anon_sym_export] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1626), - [anon_sym_global] = ACTIONS(1628), - [anon_sym_option] = ACTIONS(1628), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_redef] = ACTIONS(1628), - [anon_sym_record] = ACTIONS(1628), - [anon_sym_type] = ACTIONS(1628), - [anon_sym_print] = ACTIONS(1628), - [anon_sym_event] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1628), - [anon_sym_LPAREN] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1628), - [anon_sym_for] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1626), - [anon_sym_while] = ACTIONS(1628), - [anon_sym_next] = ACTIONS(1628), - [anon_sym_break] = ACTIONS(1628), - [anon_sym_fallthrough] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1628), - [anon_sym_add] = ACTIONS(1628), - [anon_sym_delete] = ACTIONS(1628), - [anon_sym_local] = ACTIONS(1628), - [anon_sym_when] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(1628), - [anon_sym_table] = ACTIONS(1628), - [anon_sym_set] = ACTIONS(1628), - [anon_sym_vector] = ACTIONS(1628), - [anon_sym_function] = ACTIONS(1628), - [anon_sym_hook] = ACTIONS(1628), - [anon_sym_DOLLAR] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1626), - [anon_sym_DASH_DASH] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1628), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_copy] = ACTIONS(1628), - [anon_sym_schedule] = ACTIONS(1628), - [aux_sym_constant_token1] = ACTIONS(1628), - [anon_sym_T] = ACTIONS(1628), - [anon_sym_F] = ACTIONS(1628), - [anon_sym_ATdeprecated] = ACTIONS(1626), - [anon_sym_ATload] = ACTIONS(1628), - [anon_sym_ATload_DASHsigs] = ACTIONS(1626), - [anon_sym_ATload_DASHplugin] = ACTIONS(1626), - [anon_sym_ATunload] = ACTIONS(1626), - [anon_sym_ATprefixes] = ACTIONS(1626), - [anon_sym_ATif] = ACTIONS(1628), - [anon_sym_ATifdef] = ACTIONS(1626), - [anon_sym_ATifndef] = ACTIONS(1626), - [anon_sym_ATendif] = ACTIONS(1626), - [anon_sym_ATelse] = ACTIONS(1626), - [anon_sym_ATDIR] = ACTIONS(1626), - [anon_sym_ATFILENAME] = ACTIONS(1626), - [sym_id] = ACTIONS(1628), - [sym_pattern] = ACTIONS(1626), - [sym_ipv6] = ACTIONS(1628), - [sym_ipv4] = ACTIONS(1628), - [sym_port] = ACTIONS(1626), - [sym_floatp] = ACTIONS(1628), - [sym_hex] = ACTIONS(1628), - [sym_hostname] = ACTIONS(1628), - [aux_sym_string_token1] = ACTIONS(1626), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [375] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_global] = ACTIONS(1500), - [anon_sym_option] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_redef] = ACTIONS(1500), - [anon_sym_record] = ACTIONS(1500), - [anon_sym_type] = ACTIONS(1500), - [anon_sym_print] = ACTIONS(1500), - [anon_sym_event] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_next] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_fallthrough] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_add] = ACTIONS(1500), - [anon_sym_delete] = ACTIONS(1500), - [anon_sym_local] = ACTIONS(1500), - [anon_sym_when] = ACTIONS(1500), - [anon_sym_assert] = ACTIONS(1500), - [anon_sym_table] = ACTIONS(1500), - [anon_sym_set] = ACTIONS(1500), - [anon_sym_vector] = ACTIONS(1500), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_hook] = ACTIONS(1500), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_copy] = ACTIONS(1500), - [anon_sym_schedule] = ACTIONS(1500), - [aux_sym_constant_token1] = ACTIONS(1500), - [anon_sym_T] = ACTIONS(1500), - [anon_sym_F] = ACTIONS(1500), - [anon_sym_ATdeprecated] = ACTIONS(1498), - [anon_sym_ATload] = ACTIONS(1500), - [anon_sym_ATload_DASHsigs] = ACTIONS(1498), - [anon_sym_ATload_DASHplugin] = ACTIONS(1498), - [anon_sym_ATunload] = ACTIONS(1498), - [anon_sym_ATprefixes] = ACTIONS(1498), - [anon_sym_ATif] = ACTIONS(1500), - [anon_sym_ATifdef] = ACTIONS(1498), - [anon_sym_ATifndef] = ACTIONS(1498), - [anon_sym_ATendif] = ACTIONS(1498), - [anon_sym_ATelse] = ACTIONS(1498), - [anon_sym_ATDIR] = ACTIONS(1498), - [anon_sym_ATFILENAME] = ACTIONS(1498), - [sym_id] = ACTIONS(1500), - [sym_pattern] = ACTIONS(1498), - [sym_ipv6] = ACTIONS(1500), - [sym_ipv4] = ACTIONS(1500), - [sym_port] = ACTIONS(1498), - [sym_floatp] = ACTIONS(1500), - [sym_hex] = ACTIONS(1500), - [sym_hostname] = ACTIONS(1500), - [aux_sym_string_token1] = ACTIONS(1498), + [345] = { + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_LT_EQ] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_EQ_EQ] = ACTIONS(1628), + [anon_sym_BANG_EQ] = ACTIONS(1628), + [anon_sym_AMP_AMP] = ACTIONS(1628), + [anon_sym_PIPE_PIPE] = ACTIONS(1628), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [376] = { - [anon_sym_SEMI] = ACTIONS(1630), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_RBRACE] = ACTIONS(1630), - [anon_sym_COLON] = ACTIONS(1630), - [anon_sym_PLUS_EQ] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1630), - [anon_sym_RPAREN] = ACTIONS(1630), - [anon_sym_COMMA] = ACTIONS(1630), - [anon_sym_in] = ACTIONS(1630), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_RBRACK] = ACTIONS(1630), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_as] = ACTIONS(1630), - [anon_sym_AMPdeprecated] = ACTIONS(1630), - [anon_sym_DASH_EQ] = ACTIONS(1630), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1630), - [anon_sym_AMPerror_handler] = ACTIONS(1630), - [anon_sym_AMPis_assigned] = ACTIONS(1630), - [anon_sym_AMPis_used] = ACTIONS(1630), - [anon_sym_AMPlog] = ACTIONS(1630), - [anon_sym_AMPoptional] = ACTIONS(1630), - [anon_sym_AMPraw_output] = ACTIONS(1630), - [anon_sym_AMPredef] = ACTIONS(1630), - [anon_sym_AMPadd_func] = ACTIONS(1630), - [anon_sym_AMPbackend] = ACTIONS(1630), - [anon_sym_AMPbroker_store] = ACTIONS(1630), - [anon_sym_AMPcreate_expire] = ACTIONS(1630), - [anon_sym_AMPdefault] = ACTIONS(1630), - [anon_sym_AMPdelete_func] = ACTIONS(1630), - [anon_sym_AMPexpire_func] = ACTIONS(1630), - [anon_sym_AMPgroup] = ACTIONS(1630), - [anon_sym_AMPon_change] = ACTIONS(1630), - [anon_sym_AMPpriority] = ACTIONS(1630), - [anon_sym_AMPread_expire] = ACTIONS(1630), - [anon_sym_AMPtype_column] = ACTIONS(1630), - [anon_sym_AMPwrite_expire] = ACTIONS(1630), - [anon_sym_DOLLAR] = ACTIONS(1630), - [anon_sym_PIPE] = ACTIONS(1632), - [anon_sym_BANG] = ACTIONS(1632), - [anon_sym_DASH] = ACTIONS(1632), - [anon_sym_PLUS] = ACTIONS(1632), - [anon_sym_is] = ACTIONS(1630), - [anon_sym_STAR] = ACTIONS(1630), - [anon_sym_SLASH] = ACTIONS(1630), - [anon_sym_PERCENT] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_LT_EQ] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_GT_EQ] = ACTIONS(1630), - [anon_sym_AMP] = ACTIONS(1632), - [anon_sym_CARET] = ACTIONS(1630), - [anon_sym_QMARK] = ACTIONS(1632), - [anon_sym_EQ_EQ] = ACTIONS(1630), - [anon_sym_BANG_EQ] = ACTIONS(1630), - [anon_sym_AMP_AMP] = ACTIONS(1630), - [anon_sym_PIPE_PIPE] = ACTIONS(1630), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1630), - [anon_sym_ATdeprecated] = ACTIONS(1630), - [anon_sym_ATload] = ACTIONS(1632), - [anon_sym_ATload_DASHsigs] = ACTIONS(1630), - [anon_sym_ATload_DASHplugin] = ACTIONS(1630), - [anon_sym_ATunload] = ACTIONS(1630), - [anon_sym_ATprefixes] = ACTIONS(1630), - [anon_sym_ATif] = ACTIONS(1632), - [anon_sym_ATifdef] = ACTIONS(1630), - [anon_sym_ATifndef] = ACTIONS(1630), - [anon_sym_ATendif] = ACTIONS(1630), - [anon_sym_ATelse] = ACTIONS(1630), + [346] = { + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_LT_EQ] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_EQ_EQ] = ACTIONS(1628), + [anon_sym_BANG_EQ] = ACTIONS(1628), + [anon_sym_AMP_AMP] = ACTIONS(1628), + [anon_sym_PIPE_PIPE] = ACTIONS(1628), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [377] = { - [ts_builtin_sym_end] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1636), - [anon_sym_SEMI] = ACTIONS(1634), - [anon_sym_export] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1634), - [anon_sym_global] = ACTIONS(1636), - [anon_sym_option] = ACTIONS(1636), - [anon_sym_const] = ACTIONS(1636), - [anon_sym_redef] = ACTIONS(1636), - [anon_sym_record] = ACTIONS(1636), - [anon_sym_type] = ACTIONS(1636), - [anon_sym_print] = ACTIONS(1636), - [anon_sym_event] = ACTIONS(1636), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_for] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1636), - [anon_sym_next] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_fallthrough] = ACTIONS(1636), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_add] = ACTIONS(1636), - [anon_sym_delete] = ACTIONS(1636), - [anon_sym_local] = ACTIONS(1636), - [anon_sym_when] = ACTIONS(1636), - [anon_sym_assert] = ACTIONS(1636), - [anon_sym_table] = ACTIONS(1636), - [anon_sym_set] = ACTIONS(1636), - [anon_sym_vector] = ACTIONS(1636), - [anon_sym_function] = ACTIONS(1636), - [anon_sym_hook] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_PIPE] = ACTIONS(1634), - [anon_sym_PLUS_PLUS] = ACTIONS(1634), - [anon_sym_DASH_DASH] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1634), - [anon_sym_TILDE] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_copy] = ACTIONS(1636), - [anon_sym_schedule] = ACTIONS(1636), - [aux_sym_constant_token1] = ACTIONS(1636), - [anon_sym_T] = ACTIONS(1636), - [anon_sym_F] = ACTIONS(1636), - [anon_sym_ATdeprecated] = ACTIONS(1634), - [anon_sym_ATload] = ACTIONS(1636), - [anon_sym_ATload_DASHsigs] = ACTIONS(1634), - [anon_sym_ATload_DASHplugin] = ACTIONS(1634), - [anon_sym_ATunload] = ACTIONS(1634), - [anon_sym_ATprefixes] = ACTIONS(1634), - [anon_sym_ATif] = ACTIONS(1636), - [anon_sym_ATifdef] = ACTIONS(1634), - [anon_sym_ATifndef] = ACTIONS(1634), - [anon_sym_ATendif] = ACTIONS(1634), - [anon_sym_ATelse] = ACTIONS(1634), - [anon_sym_ATDIR] = ACTIONS(1634), - [anon_sym_ATFILENAME] = ACTIONS(1634), - [sym_id] = ACTIONS(1636), - [sym_pattern] = ACTIONS(1634), - [sym_ipv6] = ACTIONS(1636), - [sym_ipv4] = ACTIONS(1636), - [sym_port] = ACTIONS(1634), - [sym_floatp] = ACTIONS(1636), - [sym_hex] = ACTIONS(1636), - [sym_hostname] = ACTIONS(1636), - [aux_sym_string_token1] = ACTIONS(1634), + [347] = { + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_COLON] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_RBRACK] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_LT_EQ] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_EQ_EQ] = ACTIONS(1628), + [anon_sym_BANG_EQ] = ACTIONS(1628), + [anon_sym_AMP_AMP] = ACTIONS(1628), + [anon_sym_PIPE_PIPE] = ACTIONS(1628), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [378] = { - [anon_sym_SEMI] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(297), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_COLON] = ACTIONS(297), - [anon_sym_PLUS_EQ] = ACTIONS(297), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_RPAREN] = ACTIONS(297), - [anon_sym_COMMA] = ACTIONS(297), - [anon_sym_in] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(297), - [anon_sym_RBRACK] = ACTIONS(297), - [anon_sym_EQ] = ACTIONS(299), - [anon_sym_as] = ACTIONS(297), - [anon_sym_AMPdeprecated] = ACTIONS(297), - [anon_sym_DASH_EQ] = ACTIONS(297), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(297), - [anon_sym_AMPerror_handler] = ACTIONS(297), - [anon_sym_AMPis_assigned] = ACTIONS(297), - [anon_sym_AMPis_used] = ACTIONS(297), - [anon_sym_AMPlog] = ACTIONS(297), - [anon_sym_AMPoptional] = ACTIONS(297), - [anon_sym_AMPraw_output] = ACTIONS(297), - [anon_sym_AMPredef] = ACTIONS(297), - [anon_sym_AMPadd_func] = ACTIONS(297), - [anon_sym_AMPbackend] = ACTIONS(297), - [anon_sym_AMPbroker_store] = ACTIONS(297), - [anon_sym_AMPcreate_expire] = ACTIONS(297), - [anon_sym_AMPdefault] = ACTIONS(297), - [anon_sym_AMPdelete_func] = ACTIONS(297), - [anon_sym_AMPexpire_func] = ACTIONS(297), - [anon_sym_AMPgroup] = ACTIONS(297), - [anon_sym_AMPon_change] = ACTIONS(297), - [anon_sym_AMPpriority] = ACTIONS(297), - [anon_sym_AMPread_expire] = ACTIONS(297), - [anon_sym_AMPtype_column] = ACTIONS(297), - [anon_sym_AMPwrite_expire] = ACTIONS(297), - [anon_sym_DOLLAR] = ACTIONS(297), - [anon_sym_PIPE] = ACTIONS(299), - [anon_sym_BANG] = ACTIONS(299), - [anon_sym_DASH] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(299), - [anon_sym_is] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(297), - [anon_sym_SLASH] = ACTIONS(297), - [anon_sym_PERCENT] = ACTIONS(297), - [anon_sym_LT] = ACTIONS(299), - [anon_sym_LT_EQ] = ACTIONS(297), - [anon_sym_GT] = ACTIONS(299), - [anon_sym_GT_EQ] = ACTIONS(297), - [anon_sym_AMP] = ACTIONS(299), - [anon_sym_CARET] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(299), - [anon_sym_EQ_EQ] = ACTIONS(297), - [anon_sym_BANG_EQ] = ACTIONS(297), - [anon_sym_AMP_AMP] = ACTIONS(297), - [anon_sym_PIPE_PIPE] = ACTIONS(297), - [anon_sym_QMARK_DOLLAR] = ACTIONS(297), - [anon_sym_ATdeprecated] = ACTIONS(297), - [anon_sym_ATload] = ACTIONS(299), - [anon_sym_ATload_DASHsigs] = ACTIONS(297), - [anon_sym_ATload_DASHplugin] = ACTIONS(297), - [anon_sym_ATunload] = ACTIONS(297), - [anon_sym_ATprefixes] = ACTIONS(297), - [anon_sym_ATif] = ACTIONS(299), - [anon_sym_ATifdef] = ACTIONS(297), - [anon_sym_ATifndef] = ACTIONS(297), - [anon_sym_ATendif] = ACTIONS(297), - [anon_sym_ATelse] = ACTIONS(297), + [348] = { + [ts_builtin_sym_end] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_global] = ACTIONS(1634), + [anon_sym_option] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_redef] = ACTIONS(1634), + [anon_sym_record] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_print] = ACTIONS(1634), + [anon_sym_event] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_next] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_fallthrough] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_add] = ACTIONS(1634), + [anon_sym_delete] = ACTIONS(1634), + [anon_sym_local] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(1634), + [anon_sym_assert] = ACTIONS(1634), + [anon_sym_table] = ACTIONS(1634), + [anon_sym_set] = ACTIONS(1634), + [anon_sym_vector] = ACTIONS(1634), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_hook] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_PLUS_PLUS] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_TILDE] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_copy] = ACTIONS(1634), + [anon_sym_schedule] = ACTIONS(1634), + [aux_sym_constant_token1] = ACTIONS(1634), + [anon_sym_T] = ACTIONS(1634), + [anon_sym_F] = ACTIONS(1634), + [anon_sym_ATdeprecated] = ACTIONS(1632), + [anon_sym_ATload] = ACTIONS(1634), + [anon_sym_ATload_DASHsigs] = ACTIONS(1632), + [anon_sym_ATload_DASHplugin] = ACTIONS(1632), + [anon_sym_ATunload] = ACTIONS(1632), + [anon_sym_ATprefixes] = ACTIONS(1632), + [anon_sym_ATif] = ACTIONS(1634), + [anon_sym_ATifdef] = ACTIONS(1632), + [anon_sym_ATifndef] = ACTIONS(1632), + [anon_sym_ATendif] = ACTIONS(1632), + [anon_sym_ATelse] = ACTIONS(1632), + [anon_sym_ATpragma] = ACTIONS(1632), + [anon_sym_ATDIR] = ACTIONS(1632), + [anon_sym_ATFILENAME] = ACTIONS(1632), + [sym_id] = ACTIONS(1634), + [sym_pattern] = ACTIONS(1632), + [sym_ipv6] = ACTIONS(1634), + [sym_ipv4] = ACTIONS(1634), + [sym_port] = ACTIONS(1632), + [sym_floatp] = ACTIONS(1634), + [sym_hex] = ACTIONS(1634), + [sym_hostname] = ACTIONS(1634), + [aux_sym_string_token1] = ACTIONS(1632), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [379] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [anon_sym_module] = ACTIONS(1640), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_export] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_global] = ACTIONS(1640), - [anon_sym_option] = ACTIONS(1640), - [anon_sym_const] = ACTIONS(1640), - [anon_sym_redef] = ACTIONS(1640), - [anon_sym_record] = ACTIONS(1640), - [anon_sym_type] = ACTIONS(1640), - [anon_sym_print] = ACTIONS(1640), - [anon_sym_event] = ACTIONS(1640), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_while] = ACTIONS(1640), - [anon_sym_next] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_fallthrough] = ACTIONS(1640), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_add] = ACTIONS(1640), - [anon_sym_delete] = ACTIONS(1640), - [anon_sym_local] = ACTIONS(1640), - [anon_sym_when] = ACTIONS(1640), - [anon_sym_assert] = ACTIONS(1640), - [anon_sym_table] = ACTIONS(1640), - [anon_sym_set] = ACTIONS(1640), - [anon_sym_vector] = ACTIONS(1640), - [anon_sym_function] = ACTIONS(1640), - [anon_sym_hook] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1638), + [349] = { + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(1636), + [anon_sym_DASH_EQ] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_in] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_as] = ACTIONS(1636), + [anon_sym_AMPdeprecated] = ACTIONS(1636), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1636), + [anon_sym_AMPerror_handler] = ACTIONS(1636), + [anon_sym_AMPis_assigned] = ACTIONS(1636), + [anon_sym_AMPis_used] = ACTIONS(1636), + [anon_sym_AMPlog] = ACTIONS(1636), + [anon_sym_AMPoptional] = ACTIONS(1636), + [anon_sym_AMPraw_output] = ACTIONS(1636), + [anon_sym_AMPredef] = ACTIONS(1636), + [anon_sym_AMPadd_func] = ACTIONS(1636), + [anon_sym_AMPbackend] = ACTIONS(1636), + [anon_sym_AMPbroker_store] = ACTIONS(1636), + [anon_sym_AMPcreate_expire] = ACTIONS(1636), + [anon_sym_AMPdefault] = ACTIONS(1636), + [anon_sym_AMPdelete_func] = ACTIONS(1636), + [anon_sym_AMPexpire_func] = ACTIONS(1636), + [anon_sym_AMPgroup] = ACTIONS(1636), + [anon_sym_AMPon_change] = ACTIONS(1636), + [anon_sym_AMPpriority] = ACTIONS(1636), + [anon_sym_AMPread_expire] = ACTIONS(1636), + [anon_sym_AMPtype_column] = ACTIONS(1636), + [anon_sym_AMPwrite_expire] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), [anon_sym_PIPE] = ACTIONS(1638), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), [anon_sym_BANG] = ACTIONS(1638), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_copy] = ACTIONS(1640), - [anon_sym_schedule] = ACTIONS(1640), - [aux_sym_constant_token1] = ACTIONS(1640), - [anon_sym_T] = ACTIONS(1640), - [anon_sym_F] = ACTIONS(1640), - [anon_sym_ATdeprecated] = ACTIONS(1638), - [anon_sym_ATload] = ACTIONS(1640), - [anon_sym_ATload_DASHsigs] = ACTIONS(1638), - [anon_sym_ATload_DASHplugin] = ACTIONS(1638), - [anon_sym_ATunload] = ACTIONS(1638), - [anon_sym_ATprefixes] = ACTIONS(1638), - [anon_sym_ATif] = ACTIONS(1640), - [anon_sym_ATifdef] = ACTIONS(1638), - [anon_sym_ATifndef] = ACTIONS(1638), - [anon_sym_ATendif] = ACTIONS(1638), - [anon_sym_ATelse] = ACTIONS(1638), - [anon_sym_ATDIR] = ACTIONS(1638), - [anon_sym_ATFILENAME] = ACTIONS(1638), - [sym_id] = ACTIONS(1640), - [sym_pattern] = ACTIONS(1638), - [sym_ipv6] = ACTIONS(1640), - [sym_ipv4] = ACTIONS(1640), - [sym_port] = ACTIONS(1638), - [sym_floatp] = ACTIONS(1640), - [sym_hex] = ACTIONS(1640), - [sym_hostname] = ACTIONS(1640), - [aux_sym_string_token1] = ACTIONS(1638), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [380] = { - [sym_expr] = STATE(1279), - [sym_constant] = STATE(1269), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(111), - [anon_sym_COLON] = ACTIONS(113), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_record] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_RPAREN] = ACTIONS(111), - [anon_sym_COMMA] = ACTIONS(111), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(111), - [anon_sym_local] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), - [anon_sym_table] = ACTIONS(57), - [anon_sym_set] = ACTIONS(57), - [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_copy] = ACTIONS(73), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_schedule] = ACTIONS(75), - [aux_sym_constant_token1] = ACTIONS(77), - [anon_sym_T] = ACTIONS(79), - [anon_sym_F] = ACTIONS(79), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), - [sym_hex] = ACTIONS(79), - [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_is] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1636), + [anon_sym_ATdeprecated] = ACTIONS(1636), + [anon_sym_ATload] = ACTIONS(1638), + [anon_sym_ATload_DASHsigs] = ACTIONS(1636), + [anon_sym_ATload_DASHplugin] = ACTIONS(1636), + [anon_sym_ATunload] = ACTIONS(1636), + [anon_sym_ATprefixes] = ACTIONS(1636), + [anon_sym_ATif] = ACTIONS(1638), + [anon_sym_ATifdef] = ACTIONS(1636), + [anon_sym_ATifndef] = ACTIONS(1636), + [anon_sym_ATendif] = ACTIONS(1636), + [anon_sym_ATelse] = ACTIONS(1636), + [anon_sym_ATpragma] = ACTIONS(1636), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [381] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1642), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [350] = { + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(1636), + [anon_sym_DASH_EQ] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_in] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_as] = ACTIONS(1636), + [anon_sym_AMPdeprecated] = ACTIONS(1636), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1636), + [anon_sym_AMPerror_handler] = ACTIONS(1636), + [anon_sym_AMPis_assigned] = ACTIONS(1636), + [anon_sym_AMPis_used] = ACTIONS(1636), + [anon_sym_AMPlog] = ACTIONS(1636), + [anon_sym_AMPoptional] = ACTIONS(1636), + [anon_sym_AMPraw_output] = ACTIONS(1636), + [anon_sym_AMPredef] = ACTIONS(1636), + [anon_sym_AMPadd_func] = ACTIONS(1636), + [anon_sym_AMPbackend] = ACTIONS(1636), + [anon_sym_AMPbroker_store] = ACTIONS(1636), + [anon_sym_AMPcreate_expire] = ACTIONS(1636), + [anon_sym_AMPdefault] = ACTIONS(1636), + [anon_sym_AMPdelete_func] = ACTIONS(1636), + [anon_sym_AMPexpire_func] = ACTIONS(1636), + [anon_sym_AMPgroup] = ACTIONS(1636), + [anon_sym_AMPon_change] = ACTIONS(1636), + [anon_sym_AMPpriority] = ACTIONS(1636), + [anon_sym_AMPread_expire] = ACTIONS(1636), + [anon_sym_AMPtype_column] = ACTIONS(1636), + [anon_sym_AMPwrite_expire] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_is] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1636), + [anon_sym_ATdeprecated] = ACTIONS(1636), + [anon_sym_ATload] = ACTIONS(1638), + [anon_sym_ATload_DASHsigs] = ACTIONS(1636), + [anon_sym_ATload_DASHplugin] = ACTIONS(1636), + [anon_sym_ATunload] = ACTIONS(1636), + [anon_sym_ATprefixes] = ACTIONS(1636), + [anon_sym_ATif] = ACTIONS(1638), + [anon_sym_ATifdef] = ACTIONS(1636), + [anon_sym_ATifndef] = ACTIONS(1636), + [anon_sym_ATendif] = ACTIONS(1636), + [anon_sym_ATelse] = ACTIONS(1636), + [anon_sym_ATpragma] = ACTIONS(1636), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [382] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1644), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [351] = { + [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(1636), + [anon_sym_DASH_EQ] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_in] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_as] = ACTIONS(1636), + [anon_sym_AMPdeprecated] = ACTIONS(1636), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1636), + [anon_sym_AMPerror_handler] = ACTIONS(1636), + [anon_sym_AMPis_assigned] = ACTIONS(1636), + [anon_sym_AMPis_used] = ACTIONS(1636), + [anon_sym_AMPlog] = ACTIONS(1636), + [anon_sym_AMPoptional] = ACTIONS(1636), + [anon_sym_AMPraw_output] = ACTIONS(1636), + [anon_sym_AMPredef] = ACTIONS(1636), + [anon_sym_AMPadd_func] = ACTIONS(1636), + [anon_sym_AMPbackend] = ACTIONS(1636), + [anon_sym_AMPbroker_store] = ACTIONS(1636), + [anon_sym_AMPcreate_expire] = ACTIONS(1636), + [anon_sym_AMPdefault] = ACTIONS(1636), + [anon_sym_AMPdelete_func] = ACTIONS(1636), + [anon_sym_AMPexpire_func] = ACTIONS(1636), + [anon_sym_AMPgroup] = ACTIONS(1636), + [anon_sym_AMPon_change] = ACTIONS(1636), + [anon_sym_AMPpriority] = ACTIONS(1636), + [anon_sym_AMPread_expire] = ACTIONS(1636), + [anon_sym_AMPtype_column] = ACTIONS(1636), + [anon_sym_AMPwrite_expire] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1636), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_is] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1636), + [anon_sym_ATdeprecated] = ACTIONS(1636), + [anon_sym_ATload] = ACTIONS(1638), + [anon_sym_ATload_DASHsigs] = ACTIONS(1636), + [anon_sym_ATload_DASHplugin] = ACTIONS(1636), + [anon_sym_ATunload] = ACTIONS(1636), + [anon_sym_ATprefixes] = ACTIONS(1636), + [anon_sym_ATif] = ACTIONS(1638), + [anon_sym_ATifdef] = ACTIONS(1636), + [anon_sym_ATifndef] = ACTIONS(1636), + [anon_sym_ATendif] = ACTIONS(1636), + [anon_sym_ATelse] = ACTIONS(1636), + [anon_sym_ATpragma] = ACTIONS(1636), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [383] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [352] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_global] = ACTIONS(1464), + [anon_sym_option] = ACTIONS(1464), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_redef] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [384] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [353] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_global] = ACTIONS(1642), + [anon_sym_option] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_redef] = ACTIONS(1642), + [anon_sym_record] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_event] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_switch] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_next] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_fallthrough] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_add] = ACTIONS(1642), + [anon_sym_delete] = ACTIONS(1642), + [anon_sym_local] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(1642), + [anon_sym_assert] = ACTIONS(1642), + [anon_sym_table] = ACTIONS(1642), + [anon_sym_set] = ACTIONS(1642), + [anon_sym_vector] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(1642), + [anon_sym_hook] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_PLUS_PLUS] = ACTIONS(1640), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_copy] = ACTIONS(1642), + [anon_sym_schedule] = ACTIONS(1642), + [aux_sym_constant_token1] = ACTIONS(1642), + [anon_sym_T] = ACTIONS(1642), + [anon_sym_F] = ACTIONS(1642), + [anon_sym_ATdeprecated] = ACTIONS(1640), + [anon_sym_ATload] = ACTIONS(1642), + [anon_sym_ATload_DASHsigs] = ACTIONS(1640), + [anon_sym_ATload_DASHplugin] = ACTIONS(1640), + [anon_sym_ATunload] = ACTIONS(1640), + [anon_sym_ATprefixes] = ACTIONS(1640), + [anon_sym_ATif] = ACTIONS(1642), + [anon_sym_ATifdef] = ACTIONS(1640), + [anon_sym_ATifndef] = ACTIONS(1640), + [anon_sym_ATendif] = ACTIONS(1640), + [anon_sym_ATelse] = ACTIONS(1640), + [anon_sym_ATpragma] = ACTIONS(1640), + [anon_sym_ATDIR] = ACTIONS(1640), + [anon_sym_ATFILENAME] = ACTIONS(1640), + [sym_id] = ACTIONS(1642), + [sym_pattern] = ACTIONS(1640), + [sym_ipv6] = ACTIONS(1642), + [sym_ipv4] = ACTIONS(1642), + [sym_port] = ACTIONS(1640), + [sym_floatp] = ACTIONS(1642), + [sym_hex] = ACTIONS(1642), + [sym_hostname] = ACTIONS(1642), + [aux_sym_string_token1] = ACTIONS(1640), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [385] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1646), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [354] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_global] = ACTIONS(1646), + [anon_sym_option] = ACTIONS(1646), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_redef] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [386] = { + [355] = { + [ts_builtin_sym_end] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1650), [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_export] = ACTIONS(1650), [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_global] = ACTIONS(1650), + [anon_sym_option] = ACTIONS(1650), [anon_sym_const] = ACTIONS(1650), + [anon_sym_redef] = ACTIONS(1650), [anon_sym_record] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1650), [anon_sym_print] = ACTIONS(1650), [anon_sym_event] = ACTIONS(1650), [anon_sym_if] = ACTIONS(1650), [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), [anon_sym_switch] = ACTIONS(1650), [anon_sym_for] = ACTIONS(1650), [anon_sym_LBRACK] = ACTIONS(1648), @@ -46923,10 +44626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1650), [anon_sym_local] = ACTIONS(1650), [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), [anon_sym_table] = ACTIONS(1650), [anon_sym_set] = ACTIONS(1650), [anon_sym_vector] = ACTIONS(1650), @@ -46956,6 +44656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1648), [anon_sym_ATendif] = ACTIONS(1648), [anon_sym_ATelse] = ACTIONS(1648), + [anon_sym_ATpragma] = ACTIONS(1648), [anon_sym_ATDIR] = ACTIONS(1648), [anon_sym_ATFILENAME] = ACTIONS(1648), [sym_id] = ACTIONS(1650), @@ -46973,163 +44674,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [387] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1652), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [356] = { + [ts_builtin_sym_end] = ACTIONS(1652), + [anon_sym_module] = ACTIONS(1654), + [anon_sym_SEMI] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(1654), + [anon_sym_LBRACE] = ACTIONS(1652), + [anon_sym_global] = ACTIONS(1654), + [anon_sym_option] = ACTIONS(1654), + [anon_sym_const] = ACTIONS(1654), + [anon_sym_redef] = ACTIONS(1654), + [anon_sym_record] = ACTIONS(1654), + [anon_sym_type] = ACTIONS(1654), + [anon_sym_print] = ACTIONS(1654), + [anon_sym_event] = ACTIONS(1654), + [anon_sym_if] = ACTIONS(1654), + [anon_sym_LPAREN] = ACTIONS(1652), + [anon_sym_switch] = ACTIONS(1654), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1654), + [anon_sym_next] = ACTIONS(1654), + [anon_sym_break] = ACTIONS(1654), + [anon_sym_fallthrough] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_add] = ACTIONS(1654), + [anon_sym_delete] = ACTIONS(1654), + [anon_sym_local] = ACTIONS(1654), + [anon_sym_when] = ACTIONS(1654), + [anon_sym_assert] = ACTIONS(1654), + [anon_sym_table] = ACTIONS(1654), + [anon_sym_set] = ACTIONS(1654), + [anon_sym_vector] = ACTIONS(1654), + [anon_sym_function] = ACTIONS(1654), + [anon_sym_hook] = ACTIONS(1654), + [anon_sym_DOLLAR] = ACTIONS(1652), + [anon_sym_PIPE] = ACTIONS(1652), + [anon_sym_PLUS_PLUS] = ACTIONS(1652), + [anon_sym_DASH_DASH] = ACTIONS(1652), + [anon_sym_BANG] = ACTIONS(1652), + [anon_sym_TILDE] = ACTIONS(1652), + [anon_sym_DASH] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(1654), + [anon_sym_copy] = ACTIONS(1654), + [anon_sym_schedule] = ACTIONS(1654), + [aux_sym_constant_token1] = ACTIONS(1654), + [anon_sym_T] = ACTIONS(1654), + [anon_sym_F] = ACTIONS(1654), + [anon_sym_ATdeprecated] = ACTIONS(1652), + [anon_sym_ATload] = ACTIONS(1654), + [anon_sym_ATload_DASHsigs] = ACTIONS(1652), + [anon_sym_ATload_DASHplugin] = ACTIONS(1652), + [anon_sym_ATunload] = ACTIONS(1652), + [anon_sym_ATprefixes] = ACTIONS(1652), + [anon_sym_ATif] = ACTIONS(1654), + [anon_sym_ATifdef] = ACTIONS(1652), + [anon_sym_ATifndef] = ACTIONS(1652), + [anon_sym_ATendif] = ACTIONS(1652), + [anon_sym_ATelse] = ACTIONS(1652), + [anon_sym_ATpragma] = ACTIONS(1652), + [anon_sym_ATDIR] = ACTIONS(1652), + [anon_sym_ATFILENAME] = ACTIONS(1652), + [sym_id] = ACTIONS(1654), + [sym_pattern] = ACTIONS(1652), + [sym_ipv6] = ACTIONS(1654), + [sym_ipv4] = ACTIONS(1654), + [sym_port] = ACTIONS(1652), + [sym_floatp] = ACTIONS(1654), + [sym_hex] = ACTIONS(1654), + [sym_hostname] = ACTIONS(1654), + [aux_sym_string_token1] = ACTIONS(1652), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [388] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1654), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [357] = { + [ts_builtin_sym_end] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_export] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_global] = ACTIONS(1500), + [anon_sym_option] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_redef] = ACTIONS(1500), + [anon_sym_record] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_print] = ACTIONS(1500), + [anon_sym_event] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_next] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_fallthrough] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_add] = ACTIONS(1500), + [anon_sym_delete] = ACTIONS(1500), + [anon_sym_local] = ACTIONS(1500), + [anon_sym_when] = ACTIONS(1500), + [anon_sym_assert] = ACTIONS(1500), + [anon_sym_table] = ACTIONS(1500), + [anon_sym_set] = ACTIONS(1500), + [anon_sym_vector] = ACTIONS(1500), + [anon_sym_function] = ACTIONS(1500), + [anon_sym_hook] = ACTIONS(1500), + [anon_sym_DOLLAR] = ACTIONS(1498), + [anon_sym_PIPE] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_copy] = ACTIONS(1500), + [anon_sym_schedule] = ACTIONS(1500), + [aux_sym_constant_token1] = ACTIONS(1500), + [anon_sym_T] = ACTIONS(1500), + [anon_sym_F] = ACTIONS(1500), + [anon_sym_ATdeprecated] = ACTIONS(1498), + [anon_sym_ATload] = ACTIONS(1500), + [anon_sym_ATload_DASHsigs] = ACTIONS(1498), + [anon_sym_ATload_DASHplugin] = ACTIONS(1498), + [anon_sym_ATunload] = ACTIONS(1498), + [anon_sym_ATprefixes] = ACTIONS(1498), + [anon_sym_ATif] = ACTIONS(1500), + [anon_sym_ATifdef] = ACTIONS(1498), + [anon_sym_ATifndef] = ACTIONS(1498), + [anon_sym_ATendif] = ACTIONS(1498), + [anon_sym_ATelse] = ACTIONS(1498), + [anon_sym_ATpragma] = ACTIONS(1498), + [anon_sym_ATDIR] = ACTIONS(1498), + [anon_sym_ATFILENAME] = ACTIONS(1498), + [sym_id] = ACTIONS(1500), + [sym_pattern] = ACTIONS(1498), + [sym_ipv6] = ACTIONS(1500), + [sym_ipv4] = ACTIONS(1500), + [sym_port] = ACTIONS(1498), + [sym_floatp] = ACTIONS(1500), + [sym_hex] = ACTIONS(1500), + [sym_hostname] = ACTIONS(1500), + [aux_sym_string_token1] = ACTIONS(1498), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [389] = { + [358] = { + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_global] = ACTIONS(1532), + [anon_sym_option] = ACTIONS(1532), + [anon_sym_const] = ACTIONS(1532), + [anon_sym_redef] = ACTIONS(1532), + [anon_sym_record] = ACTIONS(1532), + [anon_sym_type] = ACTIONS(1532), + [anon_sym_print] = ACTIONS(1532), + [anon_sym_event] = ACTIONS(1532), + [anon_sym_if] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_switch] = ACTIONS(1532), + [anon_sym_for] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_while] = ACTIONS(1532), + [anon_sym_next] = ACTIONS(1532), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_fallthrough] = ACTIONS(1532), + [anon_sym_return] = ACTIONS(1532), + [anon_sym_add] = ACTIONS(1532), + [anon_sym_delete] = ACTIONS(1532), + [anon_sym_local] = ACTIONS(1532), + [anon_sym_when] = ACTIONS(1532), + [anon_sym_assert] = ACTIONS(1532), + [anon_sym_table] = ACTIONS(1532), + [anon_sym_set] = ACTIONS(1532), + [anon_sym_vector] = ACTIONS(1532), + [anon_sym_function] = ACTIONS(1532), + [anon_sym_hook] = ACTIONS(1532), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_PLUS_PLUS] = ACTIONS(1530), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_BANG] = ACTIONS(1530), + [anon_sym_TILDE] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1532), + [anon_sym_copy] = ACTIONS(1532), + [anon_sym_schedule] = ACTIONS(1532), + [aux_sym_constant_token1] = ACTIONS(1532), + [anon_sym_T] = ACTIONS(1532), + [anon_sym_F] = ACTIONS(1532), + [anon_sym_ATdeprecated] = ACTIONS(1530), + [anon_sym_ATload] = ACTIONS(1532), + [anon_sym_ATload_DASHsigs] = ACTIONS(1530), + [anon_sym_ATload_DASHplugin] = ACTIONS(1530), + [anon_sym_ATunload] = ACTIONS(1530), + [anon_sym_ATprefixes] = ACTIONS(1530), + [anon_sym_ATif] = ACTIONS(1532), + [anon_sym_ATifdef] = ACTIONS(1530), + [anon_sym_ATifndef] = ACTIONS(1530), + [anon_sym_ATendif] = ACTIONS(1530), + [anon_sym_ATelse] = ACTIONS(1530), + [anon_sym_ATpragma] = ACTIONS(1530), + [anon_sym_ATDIR] = ACTIONS(1530), + [anon_sym_ATFILENAME] = ACTIONS(1530), + [sym_id] = ACTIONS(1532), + [sym_pattern] = ACTIONS(1530), + [sym_ipv6] = ACTIONS(1532), + [sym_ipv4] = ACTIONS(1532), + [sym_port] = ACTIONS(1530), + [sym_floatp] = ACTIONS(1532), + [sym_hex] = ACTIONS(1532), + [sym_hostname] = ACTIONS(1532), + [aux_sym_string_token1] = ACTIONS(1530), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_global] = ACTIONS(1560), + [anon_sym_option] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [anon_sym_redef] = ACTIONS(1560), + [anon_sym_record] = ACTIONS(1560), + [anon_sym_type] = ACTIONS(1560), + [anon_sym_print] = ACTIONS(1560), + [anon_sym_event] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1558), + [anon_sym_switch] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1558), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_next] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_fallthrough] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_add] = ACTIONS(1560), + [anon_sym_delete] = ACTIONS(1560), + [anon_sym_local] = ACTIONS(1560), + [anon_sym_when] = ACTIONS(1560), + [anon_sym_assert] = ACTIONS(1560), + [anon_sym_table] = ACTIONS(1560), + [anon_sym_set] = ACTIONS(1560), + [anon_sym_vector] = ACTIONS(1560), + [anon_sym_function] = ACTIONS(1560), + [anon_sym_hook] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1558), + [anon_sym_PIPE] = ACTIONS(1558), + [anon_sym_PLUS_PLUS] = ACTIONS(1558), + [anon_sym_DASH_DASH] = ACTIONS(1558), + [anon_sym_BANG] = ACTIONS(1558), + [anon_sym_TILDE] = ACTIONS(1558), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_copy] = ACTIONS(1560), + [anon_sym_schedule] = ACTIONS(1560), + [aux_sym_constant_token1] = ACTIONS(1560), + [anon_sym_T] = ACTIONS(1560), + [anon_sym_F] = ACTIONS(1560), + [anon_sym_ATdeprecated] = ACTIONS(1558), + [anon_sym_ATload] = ACTIONS(1560), + [anon_sym_ATload_DASHsigs] = ACTIONS(1558), + [anon_sym_ATload_DASHplugin] = ACTIONS(1558), + [anon_sym_ATunload] = ACTIONS(1558), + [anon_sym_ATprefixes] = ACTIONS(1558), + [anon_sym_ATif] = ACTIONS(1560), + [anon_sym_ATifdef] = ACTIONS(1558), + [anon_sym_ATifndef] = ACTIONS(1558), + [anon_sym_ATendif] = ACTIONS(1558), + [anon_sym_ATelse] = ACTIONS(1558), + [anon_sym_ATpragma] = ACTIONS(1558), + [anon_sym_ATDIR] = ACTIONS(1558), + [anon_sym_ATFILENAME] = ACTIONS(1558), + [sym_id] = ACTIONS(1560), + [sym_pattern] = ACTIONS(1558), + [sym_ipv6] = ACTIONS(1560), + [sym_ipv4] = ACTIONS(1560), + [sym_port] = ACTIONS(1558), + [sym_floatp] = ACTIONS(1560), + [sym_hex] = ACTIONS(1560), + [sym_hostname] = ACTIONS(1560), + [aux_sym_string_token1] = ACTIONS(1558), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [360] = { + [ts_builtin_sym_end] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1658), [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_export] = ACTIONS(1658), [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_global] = ACTIONS(1658), + [anon_sym_option] = ACTIONS(1658), [anon_sym_const] = ACTIONS(1658), + [anon_sym_redef] = ACTIONS(1658), [anon_sym_record] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), [anon_sym_print] = ACTIONS(1658), [anon_sym_event] = ACTIONS(1658), [anon_sym_if] = ACTIONS(1658), [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), [anon_sym_switch] = ACTIONS(1658), [anon_sym_for] = ACTIONS(1658), [anon_sym_LBRACK] = ACTIONS(1656), @@ -47142,10 +45006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1658), [anon_sym_local] = ACTIONS(1658), [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1660), [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), [anon_sym_table] = ACTIONS(1658), [anon_sym_set] = ACTIONS(1658), [anon_sym_vector] = ACTIONS(1658), @@ -47175,6 +45036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1656), [anon_sym_ATendif] = ACTIONS(1656), [anon_sym_ATelse] = ACTIONS(1656), + [anon_sym_ATpragma] = ACTIONS(1656), [anon_sym_ATDIR] = ACTIONS(1656), [anon_sym_ATFILENAME] = ACTIONS(1656), [sym_id] = ACTIONS(1658), @@ -47192,309 +45054,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [390] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1662), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [391] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [392] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [361] = { + [ts_builtin_sym_end] = ACTIONS(1660), + [anon_sym_module] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1660), + [anon_sym_global] = ACTIONS(1662), + [anon_sym_option] = ACTIONS(1662), + [anon_sym_const] = ACTIONS(1662), + [anon_sym_redef] = ACTIONS(1662), + [anon_sym_record] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1662), + [anon_sym_print] = ACTIONS(1662), + [anon_sym_event] = ACTIONS(1662), + [anon_sym_if] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1660), + [anon_sym_switch] = ACTIONS(1662), + [anon_sym_for] = ACTIONS(1662), + [anon_sym_LBRACK] = ACTIONS(1660), + [anon_sym_while] = ACTIONS(1662), + [anon_sym_next] = ACTIONS(1662), + [anon_sym_break] = ACTIONS(1662), + [anon_sym_fallthrough] = ACTIONS(1662), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_add] = ACTIONS(1662), + [anon_sym_delete] = ACTIONS(1662), + [anon_sym_local] = ACTIONS(1662), + [anon_sym_when] = ACTIONS(1662), + [anon_sym_assert] = ACTIONS(1662), + [anon_sym_table] = ACTIONS(1662), + [anon_sym_set] = ACTIONS(1662), + [anon_sym_vector] = ACTIONS(1662), + [anon_sym_function] = ACTIONS(1662), + [anon_sym_hook] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1660), + [anon_sym_PIPE] = ACTIONS(1660), + [anon_sym_PLUS_PLUS] = ACTIONS(1660), + [anon_sym_DASH_DASH] = ACTIONS(1660), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1662), + [anon_sym_PLUS] = ACTIONS(1662), + [anon_sym_copy] = ACTIONS(1662), + [anon_sym_schedule] = ACTIONS(1662), + [aux_sym_constant_token1] = ACTIONS(1662), + [anon_sym_T] = ACTIONS(1662), + [anon_sym_F] = ACTIONS(1662), + [anon_sym_ATdeprecated] = ACTIONS(1660), + [anon_sym_ATload] = ACTIONS(1662), + [anon_sym_ATload_DASHsigs] = ACTIONS(1660), + [anon_sym_ATload_DASHplugin] = ACTIONS(1660), + [anon_sym_ATunload] = ACTIONS(1660), + [anon_sym_ATprefixes] = ACTIONS(1660), + [anon_sym_ATif] = ACTIONS(1662), + [anon_sym_ATifdef] = ACTIONS(1660), + [anon_sym_ATifndef] = ACTIONS(1660), + [anon_sym_ATendif] = ACTIONS(1660), + [anon_sym_ATelse] = ACTIONS(1660), + [anon_sym_ATpragma] = ACTIONS(1660), + [anon_sym_ATDIR] = ACTIONS(1660), + [anon_sym_ATFILENAME] = ACTIONS(1660), + [sym_id] = ACTIONS(1662), + [sym_pattern] = ACTIONS(1660), + [sym_ipv6] = ACTIONS(1662), + [sym_ipv4] = ACTIONS(1662), + [sym_port] = ACTIONS(1660), + [sym_floatp] = ACTIONS(1662), + [sym_hex] = ACTIONS(1662), + [sym_hostname] = ACTIONS(1662), + [aux_sym_string_token1] = ACTIONS(1660), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [393] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [362] = { + [ts_builtin_sym_end] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1658), + [anon_sym_SEMI] = ACTIONS(1656), + [anon_sym_export] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1656), + [anon_sym_global] = ACTIONS(1658), + [anon_sym_option] = ACTIONS(1658), + [anon_sym_const] = ACTIONS(1658), + [anon_sym_redef] = ACTIONS(1658), + [anon_sym_record] = ACTIONS(1658), + [anon_sym_type] = ACTIONS(1658), + [anon_sym_print] = ACTIONS(1658), + [anon_sym_event] = ACTIONS(1658), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_switch] = ACTIONS(1658), + [anon_sym_for] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1658), + [anon_sym_next] = ACTIONS(1658), + [anon_sym_break] = ACTIONS(1658), + [anon_sym_fallthrough] = ACTIONS(1658), + [anon_sym_return] = ACTIONS(1658), + [anon_sym_add] = ACTIONS(1658), + [anon_sym_delete] = ACTIONS(1658), + [anon_sym_local] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(1658), + [anon_sym_assert] = ACTIONS(1658), + [anon_sym_table] = ACTIONS(1658), + [anon_sym_set] = ACTIONS(1658), + [anon_sym_vector] = ACTIONS(1658), + [anon_sym_function] = ACTIONS(1658), + [anon_sym_hook] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_PLUS_PLUS] = ACTIONS(1656), + [anon_sym_DASH_DASH] = ACTIONS(1656), + [anon_sym_BANG] = ACTIONS(1656), + [anon_sym_TILDE] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1658), + [anon_sym_copy] = ACTIONS(1658), + [anon_sym_schedule] = ACTIONS(1658), + [aux_sym_constant_token1] = ACTIONS(1658), + [anon_sym_T] = ACTIONS(1658), + [anon_sym_F] = ACTIONS(1658), + [anon_sym_ATdeprecated] = ACTIONS(1656), + [anon_sym_ATload] = ACTIONS(1658), + [anon_sym_ATload_DASHsigs] = ACTIONS(1656), + [anon_sym_ATload_DASHplugin] = ACTIONS(1656), + [anon_sym_ATunload] = ACTIONS(1656), + [anon_sym_ATprefixes] = ACTIONS(1656), + [anon_sym_ATif] = ACTIONS(1658), + [anon_sym_ATifdef] = ACTIONS(1656), + [anon_sym_ATifndef] = ACTIONS(1656), + [anon_sym_ATendif] = ACTIONS(1656), + [anon_sym_ATelse] = ACTIONS(1656), + [anon_sym_ATpragma] = ACTIONS(1656), + [anon_sym_ATDIR] = ACTIONS(1656), + [anon_sym_ATFILENAME] = ACTIONS(1656), + [sym_id] = ACTIONS(1658), + [sym_pattern] = ACTIONS(1656), + [sym_ipv6] = ACTIONS(1658), + [sym_ipv4] = ACTIONS(1658), + [sym_port] = ACTIONS(1656), + [sym_floatp] = ACTIONS(1658), + [sym_hex] = ACTIONS(1658), + [sym_hostname] = ACTIONS(1658), + [aux_sym_string_token1] = ACTIONS(1656), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [394] = { + [363] = { + [ts_builtin_sym_end] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1666), [anon_sym_SEMI] = ACTIONS(1664), + [anon_sym_export] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_global] = ACTIONS(1666), + [anon_sym_option] = ACTIONS(1666), [anon_sym_const] = ACTIONS(1666), + [anon_sym_redef] = ACTIONS(1666), [anon_sym_record] = ACTIONS(1666), + [anon_sym_type] = ACTIONS(1666), [anon_sym_print] = ACTIONS(1666), [anon_sym_event] = ACTIONS(1666), [anon_sym_if] = ACTIONS(1666), [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), [anon_sym_switch] = ACTIONS(1666), [anon_sym_for] = ACTIONS(1666), [anon_sym_LBRACK] = ACTIONS(1664), @@ -47507,10 +45234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1666), [anon_sym_local] = ACTIONS(1666), [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), [anon_sym_table] = ACTIONS(1666), [anon_sym_set] = ACTIONS(1666), [anon_sym_vector] = ACTIONS(1666), @@ -47540,6 +45264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1664), [anon_sym_ATendif] = ACTIONS(1664), [anon_sym_ATelse] = ACTIONS(1664), + [anon_sym_ATpragma] = ACTIONS(1664), [anon_sym_ATDIR] = ACTIONS(1664), [anon_sym_ATFILENAME] = ACTIONS(1664), [sym_id] = ACTIONS(1666), @@ -47557,1703 +45282,1840 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [395] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [364] = { + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_COLON] = ACTIONS(1668), + [anon_sym_PLUS_EQ] = ACTIONS(1668), + [anon_sym_DASH_EQ] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_COMMA] = ACTIONS(1668), + [anon_sym_in] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(1668), + [anon_sym_EQ] = ACTIONS(1670), + [anon_sym_as] = ACTIONS(1668), + [anon_sym_AMPdeprecated] = ACTIONS(1668), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1668), + [anon_sym_AMPerror_handler] = ACTIONS(1668), + [anon_sym_AMPis_assigned] = ACTIONS(1668), + [anon_sym_AMPis_used] = ACTIONS(1668), + [anon_sym_AMPlog] = ACTIONS(1668), + [anon_sym_AMPoptional] = ACTIONS(1668), + [anon_sym_AMPraw_output] = ACTIONS(1668), + [anon_sym_AMPredef] = ACTIONS(1668), + [anon_sym_AMPadd_func] = ACTIONS(1668), + [anon_sym_AMPbackend] = ACTIONS(1668), + [anon_sym_AMPbroker_store] = ACTIONS(1668), + [anon_sym_AMPcreate_expire] = ACTIONS(1668), + [anon_sym_AMPdefault] = ACTIONS(1668), + [anon_sym_AMPdelete_func] = ACTIONS(1668), + [anon_sym_AMPexpire_func] = ACTIONS(1668), + [anon_sym_AMPgroup] = ACTIONS(1668), + [anon_sym_AMPon_change] = ACTIONS(1668), + [anon_sym_AMPpriority] = ACTIONS(1668), + [anon_sym_AMPread_expire] = ACTIONS(1668), + [anon_sym_AMPtype_column] = ACTIONS(1668), + [anon_sym_AMPwrite_expire] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1670), + [anon_sym_BANG] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_is] = ACTIONS(1668), + [anon_sym_STAR] = ACTIONS(1668), + [anon_sym_SLASH] = ACTIONS(1668), + [anon_sym_PERCENT] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1670), + [anon_sym_LT_EQ] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1670), + [anon_sym_GT_EQ] = ACTIONS(1668), + [anon_sym_AMP] = ACTIONS(1670), + [anon_sym_CARET] = ACTIONS(1668), + [anon_sym_QMARK] = ACTIONS(1670), + [anon_sym_EQ_EQ] = ACTIONS(1668), + [anon_sym_BANG_EQ] = ACTIONS(1668), + [anon_sym_AMP_AMP] = ACTIONS(1668), + [anon_sym_PIPE_PIPE] = ACTIONS(1668), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1668), + [anon_sym_ATdeprecated] = ACTIONS(1668), + [anon_sym_ATload] = ACTIONS(1670), + [anon_sym_ATload_DASHsigs] = ACTIONS(1668), + [anon_sym_ATload_DASHplugin] = ACTIONS(1668), + [anon_sym_ATunload] = ACTIONS(1668), + [anon_sym_ATprefixes] = ACTIONS(1668), + [anon_sym_ATif] = ACTIONS(1670), + [anon_sym_ATifdef] = ACTIONS(1668), + [anon_sym_ATifndef] = ACTIONS(1668), + [anon_sym_ATendif] = ACTIONS(1668), + [anon_sym_ATelse] = ACTIONS(1668), + [anon_sym_ATpragma] = ACTIONS(1668), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [396] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [365] = { + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_COLON] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(572), + [anon_sym_COMMA] = ACTIONS(572), + [anon_sym_in] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_RBRACK] = ACTIONS(572), + [anon_sym_EQ] = ACTIONS(574), + [anon_sym_as] = ACTIONS(572), + [anon_sym_AMPdeprecated] = ACTIONS(572), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(572), + [anon_sym_AMPerror_handler] = ACTIONS(572), + [anon_sym_AMPis_assigned] = ACTIONS(572), + [anon_sym_AMPis_used] = ACTIONS(572), + [anon_sym_AMPlog] = ACTIONS(572), + [anon_sym_AMPoptional] = ACTIONS(572), + [anon_sym_AMPraw_output] = ACTIONS(572), + [anon_sym_AMPredef] = ACTIONS(572), + [anon_sym_AMPadd_func] = ACTIONS(572), + [anon_sym_AMPbackend] = ACTIONS(572), + [anon_sym_AMPbroker_store] = ACTIONS(572), + [anon_sym_AMPcreate_expire] = ACTIONS(572), + [anon_sym_AMPdefault] = ACTIONS(572), + [anon_sym_AMPdelete_func] = ACTIONS(572), + [anon_sym_AMPexpire_func] = ACTIONS(572), + [anon_sym_AMPgroup] = ACTIONS(572), + [anon_sym_AMPon_change] = ACTIONS(572), + [anon_sym_AMPpriority] = ACTIONS(572), + [anon_sym_AMPread_expire] = ACTIONS(572), + [anon_sym_AMPtype_column] = ACTIONS(572), + [anon_sym_AMPwrite_expire] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_is] = ACTIONS(572), + [anon_sym_STAR] = ACTIONS(572), + [anon_sym_SLASH] = ACTIONS(572), + [anon_sym_PERCENT] = ACTIONS(572), + [anon_sym_LT] = ACTIONS(574), + [anon_sym_LT_EQ] = ACTIONS(572), + [anon_sym_GT] = ACTIONS(574), + [anon_sym_GT_EQ] = ACTIONS(572), + [anon_sym_AMP] = ACTIONS(574), + [anon_sym_CARET] = ACTIONS(572), + [anon_sym_QMARK] = ACTIONS(574), + [anon_sym_EQ_EQ] = ACTIONS(572), + [anon_sym_BANG_EQ] = ACTIONS(572), + [anon_sym_AMP_AMP] = ACTIONS(572), + [anon_sym_PIPE_PIPE] = ACTIONS(572), + [anon_sym_QMARK_DOLLAR] = ACTIONS(572), + [anon_sym_ATdeprecated] = ACTIONS(572), + [anon_sym_ATload] = ACTIONS(574), + [anon_sym_ATload_DASHsigs] = ACTIONS(572), + [anon_sym_ATload_DASHplugin] = ACTIONS(572), + [anon_sym_ATunload] = ACTIONS(572), + [anon_sym_ATprefixes] = ACTIONS(572), + [anon_sym_ATif] = ACTIONS(574), + [anon_sym_ATifdef] = ACTIONS(572), + [anon_sym_ATifndef] = ACTIONS(572), + [anon_sym_ATendif] = ACTIONS(572), + [anon_sym_ATelse] = ACTIONS(572), + [anon_sym_ATpragma] = ACTIONS(572), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [397] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [366] = { + [anon_sym_SEMI] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1648), + [anon_sym_RBRACE] = ACTIONS(1648), + [anon_sym_COLON] = ACTIONS(1648), + [anon_sym_PLUS_EQ] = ACTIONS(1648), + [anon_sym_DASH_EQ] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1648), + [anon_sym_RPAREN] = ACTIONS(1648), + [anon_sym_COMMA] = ACTIONS(1648), + [anon_sym_in] = ACTIONS(1648), + [anon_sym_LBRACK] = ACTIONS(1648), + [anon_sym_RBRACK] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1650), + [anon_sym_as] = ACTIONS(1648), + [anon_sym_AMPdeprecated] = ACTIONS(1648), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1648), + [anon_sym_AMPerror_handler] = ACTIONS(1648), + [anon_sym_AMPis_assigned] = ACTIONS(1648), + [anon_sym_AMPis_used] = ACTIONS(1648), + [anon_sym_AMPlog] = ACTIONS(1648), + [anon_sym_AMPoptional] = ACTIONS(1648), + [anon_sym_AMPraw_output] = ACTIONS(1648), + [anon_sym_AMPredef] = ACTIONS(1648), + [anon_sym_AMPadd_func] = ACTIONS(1648), + [anon_sym_AMPbackend] = ACTIONS(1648), + [anon_sym_AMPbroker_store] = ACTIONS(1648), + [anon_sym_AMPcreate_expire] = ACTIONS(1648), + [anon_sym_AMPdefault] = ACTIONS(1648), + [anon_sym_AMPdelete_func] = ACTIONS(1648), + [anon_sym_AMPexpire_func] = ACTIONS(1648), + [anon_sym_AMPgroup] = ACTIONS(1648), + [anon_sym_AMPon_change] = ACTIONS(1648), + [anon_sym_AMPpriority] = ACTIONS(1648), + [anon_sym_AMPread_expire] = ACTIONS(1648), + [anon_sym_AMPtype_column] = ACTIONS(1648), + [anon_sym_AMPwrite_expire] = ACTIONS(1648), + [anon_sym_DOLLAR] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_BANG] = ACTIONS(1650), + [anon_sym_DASH] = ACTIONS(1650), + [anon_sym_PLUS] = ACTIONS(1650), + [anon_sym_is] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1648), + [anon_sym_PERCENT] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(1650), + [anon_sym_LT_EQ] = ACTIONS(1648), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_GT_EQ] = ACTIONS(1648), + [anon_sym_AMP] = ACTIONS(1650), + [anon_sym_CARET] = ACTIONS(1648), + [anon_sym_QMARK] = ACTIONS(1650), + [anon_sym_EQ_EQ] = ACTIONS(1648), + [anon_sym_BANG_EQ] = ACTIONS(1648), + [anon_sym_AMP_AMP] = ACTIONS(1648), + [anon_sym_PIPE_PIPE] = ACTIONS(1648), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1648), + [anon_sym_ATdeprecated] = ACTIONS(1648), + [anon_sym_ATload] = ACTIONS(1650), + [anon_sym_ATload_DASHsigs] = ACTIONS(1648), + [anon_sym_ATload_DASHplugin] = ACTIONS(1648), + [anon_sym_ATunload] = ACTIONS(1648), + [anon_sym_ATprefixes] = ACTIONS(1648), + [anon_sym_ATif] = ACTIONS(1650), + [anon_sym_ATifdef] = ACTIONS(1648), + [anon_sym_ATifndef] = ACTIONS(1648), + [anon_sym_ATendif] = ACTIONS(1648), + [anon_sym_ATelse] = ACTIONS(1648), + [anon_sym_ATpragma] = ACTIONS(1648), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [398] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [399] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1672), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [400] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [401] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), + [367] = { + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1672), + [anon_sym_DASH_EQ] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_EQ] = ACTIONS(1674), + [anon_sym_as] = ACTIONS(1672), + [anon_sym_AMPdeprecated] = ACTIONS(1672), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1672), + [anon_sym_AMPerror_handler] = ACTIONS(1672), + [anon_sym_AMPis_assigned] = ACTIONS(1672), + [anon_sym_AMPis_used] = ACTIONS(1672), + [anon_sym_AMPlog] = ACTIONS(1672), + [anon_sym_AMPoptional] = ACTIONS(1672), + [anon_sym_AMPraw_output] = ACTIONS(1672), + [anon_sym_AMPredef] = ACTIONS(1672), + [anon_sym_AMPadd_func] = ACTIONS(1672), + [anon_sym_AMPbackend] = ACTIONS(1672), + [anon_sym_AMPbroker_store] = ACTIONS(1672), + [anon_sym_AMPcreate_expire] = ACTIONS(1672), + [anon_sym_AMPdefault] = ACTIONS(1672), + [anon_sym_AMPdelete_func] = ACTIONS(1672), + [anon_sym_AMPexpire_func] = ACTIONS(1672), + [anon_sym_AMPgroup] = ACTIONS(1672), + [anon_sym_AMPon_change] = ACTIONS(1672), + [anon_sym_AMPpriority] = ACTIONS(1672), + [anon_sym_AMPread_expire] = ACTIONS(1672), + [anon_sym_AMPtype_column] = ACTIONS(1672), + [anon_sym_AMPwrite_expire] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [402] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(1674), + [anon_sym_PLUS] = ACTIONS(1674), + [anon_sym_is] = ACTIONS(1672), + [anon_sym_STAR] = ACTIONS(1672), + [anon_sym_SLASH] = ACTIONS(1672), + [anon_sym_PERCENT] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1674), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_GT] = ACTIONS(1674), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_AMP] = ACTIONS(1674), + [anon_sym_CARET] = ACTIONS(1672), + [anon_sym_QMARK] = ACTIONS(1674), + [anon_sym_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1672), + [anon_sym_AMP_AMP] = ACTIONS(1672), + [anon_sym_PIPE_PIPE] = ACTIONS(1672), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1672), + [anon_sym_ATdeprecated] = ACTIONS(1672), + [anon_sym_ATload] = ACTIONS(1674), + [anon_sym_ATload_DASHsigs] = ACTIONS(1672), + [anon_sym_ATload_DASHplugin] = ACTIONS(1672), + [anon_sym_ATunload] = ACTIONS(1672), + [anon_sym_ATprefixes] = ACTIONS(1672), + [anon_sym_ATif] = ACTIONS(1674), + [anon_sym_ATifdef] = ACTIONS(1672), + [anon_sym_ATifndef] = ACTIONS(1672), + [anon_sym_ATendif] = ACTIONS(1672), + [anon_sym_ATelse] = ACTIONS(1672), + [anon_sym_ATpragma] = ACTIONS(1672), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [403] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [368] = { + [ts_builtin_sym_end] = ACTIONS(1640), + [anon_sym_module] = ACTIONS(1642), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_export] = ACTIONS(1642), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_global] = ACTIONS(1642), + [anon_sym_option] = ACTIONS(1642), + [anon_sym_const] = ACTIONS(1642), + [anon_sym_redef] = ACTIONS(1642), + [anon_sym_record] = ACTIONS(1642), + [anon_sym_type] = ACTIONS(1642), + [anon_sym_print] = ACTIONS(1642), + [anon_sym_event] = ACTIONS(1642), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_switch] = ACTIONS(1642), + [anon_sym_for] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_while] = ACTIONS(1642), + [anon_sym_next] = ACTIONS(1642), + [anon_sym_break] = ACTIONS(1642), + [anon_sym_fallthrough] = ACTIONS(1642), + [anon_sym_return] = ACTIONS(1642), + [anon_sym_add] = ACTIONS(1642), + [anon_sym_delete] = ACTIONS(1642), + [anon_sym_local] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(1642), + [anon_sym_assert] = ACTIONS(1642), + [anon_sym_table] = ACTIONS(1642), + [anon_sym_set] = ACTIONS(1642), + [anon_sym_vector] = ACTIONS(1642), + [anon_sym_function] = ACTIONS(1642), + [anon_sym_hook] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_PLUS_PLUS] = ACTIONS(1640), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_BANG] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_copy] = ACTIONS(1642), + [anon_sym_schedule] = ACTIONS(1642), + [aux_sym_constant_token1] = ACTIONS(1642), + [anon_sym_T] = ACTIONS(1642), + [anon_sym_F] = ACTIONS(1642), + [anon_sym_ATdeprecated] = ACTIONS(1640), + [anon_sym_ATload] = ACTIONS(1642), + [anon_sym_ATload_DASHsigs] = ACTIONS(1640), + [anon_sym_ATload_DASHplugin] = ACTIONS(1640), + [anon_sym_ATunload] = ACTIONS(1640), + [anon_sym_ATprefixes] = ACTIONS(1640), + [anon_sym_ATif] = ACTIONS(1642), + [anon_sym_ATifdef] = ACTIONS(1640), + [anon_sym_ATifndef] = ACTIONS(1640), + [anon_sym_ATendif] = ACTIONS(1640), + [anon_sym_ATelse] = ACTIONS(1640), + [anon_sym_ATpragma] = ACTIONS(1640), + [anon_sym_ATDIR] = ACTIONS(1640), + [anon_sym_ATFILENAME] = ACTIONS(1640), + [sym_id] = ACTIONS(1642), + [sym_pattern] = ACTIONS(1640), + [sym_ipv6] = ACTIONS(1642), + [sym_ipv4] = ACTIONS(1642), + [sym_port] = ACTIONS(1640), + [sym_floatp] = ACTIONS(1642), + [sym_hex] = ACTIONS(1642), + [sym_hostname] = ACTIONS(1642), + [aux_sym_string_token1] = ACTIONS(1640), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [404] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [369] = { + [anon_sym_SEMI] = ACTIONS(750), + [anon_sym_LBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_COLON] = ACTIONS(750), + [anon_sym_PLUS_EQ] = ACTIONS(750), + [anon_sym_DASH_EQ] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_COMMA] = ACTIONS(750), + [anon_sym_in] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(750), + [anon_sym_RBRACK] = ACTIONS(750), + [anon_sym_EQ] = ACTIONS(752), + [anon_sym_as] = ACTIONS(750), + [anon_sym_AMPdeprecated] = ACTIONS(750), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(750), + [anon_sym_AMPerror_handler] = ACTIONS(750), + [anon_sym_AMPis_assigned] = ACTIONS(750), + [anon_sym_AMPis_used] = ACTIONS(750), + [anon_sym_AMPlog] = ACTIONS(750), + [anon_sym_AMPoptional] = ACTIONS(750), + [anon_sym_AMPraw_output] = ACTIONS(750), + [anon_sym_AMPredef] = ACTIONS(750), + [anon_sym_AMPadd_func] = ACTIONS(750), + [anon_sym_AMPbackend] = ACTIONS(750), + [anon_sym_AMPbroker_store] = ACTIONS(750), + [anon_sym_AMPcreate_expire] = ACTIONS(750), + [anon_sym_AMPdefault] = ACTIONS(750), + [anon_sym_AMPdelete_func] = ACTIONS(750), + [anon_sym_AMPexpire_func] = ACTIONS(750), + [anon_sym_AMPgroup] = ACTIONS(750), + [anon_sym_AMPon_change] = ACTIONS(750), + [anon_sym_AMPpriority] = ACTIONS(750), + [anon_sym_AMPread_expire] = ACTIONS(750), + [anon_sym_AMPtype_column] = ACTIONS(750), + [anon_sym_AMPwrite_expire] = ACTIONS(750), + [anon_sym_DOLLAR] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_BANG] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_is] = ACTIONS(750), + [anon_sym_STAR] = ACTIONS(750), + [anon_sym_SLASH] = ACTIONS(750), + [anon_sym_PERCENT] = ACTIONS(750), + [anon_sym_LT] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(750), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(750), + [anon_sym_AMP] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(750), + [anon_sym_QMARK] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(750), + [anon_sym_BANG_EQ] = ACTIONS(750), + [anon_sym_AMP_AMP] = ACTIONS(750), + [anon_sym_PIPE_PIPE] = ACTIONS(750), + [anon_sym_QMARK_DOLLAR] = ACTIONS(750), + [anon_sym_ATdeprecated] = ACTIONS(750), + [anon_sym_ATload] = ACTIONS(752), + [anon_sym_ATload_DASHsigs] = ACTIONS(750), + [anon_sym_ATload_DASHplugin] = ACTIONS(750), + [anon_sym_ATunload] = ACTIONS(750), + [anon_sym_ATprefixes] = ACTIONS(750), + [anon_sym_ATif] = ACTIONS(752), + [anon_sym_ATifdef] = ACTIONS(750), + [anon_sym_ATifndef] = ACTIONS(750), + [anon_sym_ATendif] = ACTIONS(750), + [anon_sym_ATelse] = ACTIONS(750), + [anon_sym_ATpragma] = ACTIONS(750), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [405] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [370] = { + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_RPAREN] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_in] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACK] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_as] = ACTIONS(1482), + [anon_sym_AMPdeprecated] = ACTIONS(1482), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1482), + [anon_sym_AMPerror_handler] = ACTIONS(1482), + [anon_sym_AMPis_assigned] = ACTIONS(1482), + [anon_sym_AMPis_used] = ACTIONS(1482), + [anon_sym_AMPlog] = ACTIONS(1482), + [anon_sym_AMPoptional] = ACTIONS(1482), + [anon_sym_AMPraw_output] = ACTIONS(1482), + [anon_sym_AMPredef] = ACTIONS(1482), + [anon_sym_AMPadd_func] = ACTIONS(1482), + [anon_sym_AMPbackend] = ACTIONS(1482), + [anon_sym_AMPbroker_store] = ACTIONS(1482), + [anon_sym_AMPcreate_expire] = ACTIONS(1482), + [anon_sym_AMPdefault] = ACTIONS(1482), + [anon_sym_AMPdelete_func] = ACTIONS(1482), + [anon_sym_AMPexpire_func] = ACTIONS(1482), + [anon_sym_AMPgroup] = ACTIONS(1482), + [anon_sym_AMPon_change] = ACTIONS(1482), + [anon_sym_AMPpriority] = ACTIONS(1482), + [anon_sym_AMPread_expire] = ACTIONS(1482), + [anon_sym_AMPtype_column] = ACTIONS(1482), + [anon_sym_AMPwrite_expire] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_is] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym_PERCENT] = ACTIONS(1482), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1482), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1482), + [anon_sym_ATdeprecated] = ACTIONS(1482), + [anon_sym_ATload] = ACTIONS(1484), + [anon_sym_ATload_DASHsigs] = ACTIONS(1482), + [anon_sym_ATload_DASHplugin] = ACTIONS(1482), + [anon_sym_ATunload] = ACTIONS(1482), + [anon_sym_ATprefixes] = ACTIONS(1482), + [anon_sym_ATif] = ACTIONS(1484), + [anon_sym_ATifdef] = ACTIONS(1482), + [anon_sym_ATifndef] = ACTIONS(1482), + [anon_sym_ATendif] = ACTIONS(1482), + [anon_sym_ATelse] = ACTIONS(1482), + [anon_sym_ATpragma] = ACTIONS(1482), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [406] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [371] = { + [anon_sym_SEMI] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_COLON] = ACTIONS(1676), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1676), + [anon_sym_RPAREN] = ACTIONS(1676), + [anon_sym_COMMA] = ACTIONS(1676), + [anon_sym_in] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_RBRACK] = ACTIONS(1676), + [anon_sym_EQ] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1676), + [anon_sym_AMPdeprecated] = ACTIONS(1676), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1676), + [anon_sym_AMPerror_handler] = ACTIONS(1676), + [anon_sym_AMPis_assigned] = ACTIONS(1676), + [anon_sym_AMPis_used] = ACTIONS(1676), + [anon_sym_AMPlog] = ACTIONS(1676), + [anon_sym_AMPoptional] = ACTIONS(1676), + [anon_sym_AMPraw_output] = ACTIONS(1676), + [anon_sym_AMPredef] = ACTIONS(1676), + [anon_sym_AMPadd_func] = ACTIONS(1676), + [anon_sym_AMPbackend] = ACTIONS(1676), + [anon_sym_AMPbroker_store] = ACTIONS(1676), + [anon_sym_AMPcreate_expire] = ACTIONS(1676), + [anon_sym_AMPdefault] = ACTIONS(1676), + [anon_sym_AMPdelete_func] = ACTIONS(1676), + [anon_sym_AMPexpire_func] = ACTIONS(1676), + [anon_sym_AMPgroup] = ACTIONS(1676), + [anon_sym_AMPon_change] = ACTIONS(1676), + [anon_sym_AMPpriority] = ACTIONS(1676), + [anon_sym_AMPread_expire] = ACTIONS(1676), + [anon_sym_AMPtype_column] = ACTIONS(1676), + [anon_sym_AMPwrite_expire] = ACTIONS(1676), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_PIPE] = ACTIONS(1678), + [anon_sym_BANG] = ACTIONS(1678), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1678), + [anon_sym_is] = ACTIONS(1676), + [anon_sym_STAR] = ACTIONS(1676), + [anon_sym_SLASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1676), + [anon_sym_LT] = ACTIONS(1678), + [anon_sym_LT_EQ] = ACTIONS(1676), + [anon_sym_GT] = ACTIONS(1678), + [anon_sym_GT_EQ] = ACTIONS(1676), + [anon_sym_AMP] = ACTIONS(1678), + [anon_sym_CARET] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_EQ_EQ] = ACTIONS(1676), + [anon_sym_BANG_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP] = ACTIONS(1676), + [anon_sym_PIPE_PIPE] = ACTIONS(1676), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1676), + [anon_sym_ATdeprecated] = ACTIONS(1676), + [anon_sym_ATload] = ACTIONS(1678), + [anon_sym_ATload_DASHsigs] = ACTIONS(1676), + [anon_sym_ATload_DASHplugin] = ACTIONS(1676), + [anon_sym_ATunload] = ACTIONS(1676), + [anon_sym_ATprefixes] = ACTIONS(1676), + [anon_sym_ATif] = ACTIONS(1678), + [anon_sym_ATifdef] = ACTIONS(1676), + [anon_sym_ATifndef] = ACTIONS(1676), + [anon_sym_ATendif] = ACTIONS(1676), + [anon_sym_ATelse] = ACTIONS(1676), + [anon_sym_ATpragma] = ACTIONS(1676), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [407] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [372] = { + [anon_sym_SEMI] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(334), + [anon_sym_RBRACE] = ACTIONS(334), + [anon_sym_COLON] = ACTIONS(334), + [anon_sym_PLUS_EQ] = ACTIONS(334), + [anon_sym_DASH_EQ] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_RPAREN] = ACTIONS(334), + [anon_sym_COMMA] = ACTIONS(334), + [anon_sym_in] = ACTIONS(334), + [anon_sym_LBRACK] = ACTIONS(334), + [anon_sym_RBRACK] = ACTIONS(334), + [anon_sym_EQ] = ACTIONS(336), + [anon_sym_as] = ACTIONS(334), + [anon_sym_AMPdeprecated] = ACTIONS(334), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(334), + [anon_sym_AMPerror_handler] = ACTIONS(334), + [anon_sym_AMPis_assigned] = ACTIONS(334), + [anon_sym_AMPis_used] = ACTIONS(334), + [anon_sym_AMPlog] = ACTIONS(334), + [anon_sym_AMPoptional] = ACTIONS(334), + [anon_sym_AMPraw_output] = ACTIONS(334), + [anon_sym_AMPredef] = ACTIONS(334), + [anon_sym_AMPadd_func] = ACTIONS(334), + [anon_sym_AMPbackend] = ACTIONS(334), + [anon_sym_AMPbroker_store] = ACTIONS(334), + [anon_sym_AMPcreate_expire] = ACTIONS(334), + [anon_sym_AMPdefault] = ACTIONS(334), + [anon_sym_AMPdelete_func] = ACTIONS(334), + [anon_sym_AMPexpire_func] = ACTIONS(334), + [anon_sym_AMPgroup] = ACTIONS(334), + [anon_sym_AMPon_change] = ACTIONS(334), + [anon_sym_AMPpriority] = ACTIONS(334), + [anon_sym_AMPread_expire] = ACTIONS(334), + [anon_sym_AMPtype_column] = ACTIONS(334), + [anon_sym_AMPwrite_expire] = ACTIONS(334), + [anon_sym_DOLLAR] = ACTIONS(334), + [anon_sym_PIPE] = ACTIONS(336), + [anon_sym_BANG] = ACTIONS(336), + [anon_sym_DASH] = ACTIONS(336), + [anon_sym_PLUS] = ACTIONS(336), + [anon_sym_is] = ACTIONS(334), + [anon_sym_STAR] = ACTIONS(334), + [anon_sym_SLASH] = ACTIONS(334), + [anon_sym_PERCENT] = ACTIONS(334), + [anon_sym_LT] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(334), + [anon_sym_GT] = ACTIONS(336), + [anon_sym_GT_EQ] = ACTIONS(334), + [anon_sym_AMP] = ACTIONS(336), + [anon_sym_CARET] = ACTIONS(334), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_EQ_EQ] = ACTIONS(334), + [anon_sym_BANG_EQ] = ACTIONS(334), + [anon_sym_AMP_AMP] = ACTIONS(334), + [anon_sym_PIPE_PIPE] = ACTIONS(334), + [anon_sym_QMARK_DOLLAR] = ACTIONS(334), + [anon_sym_ATdeprecated] = ACTIONS(334), + [anon_sym_ATload] = ACTIONS(336), + [anon_sym_ATload_DASHsigs] = ACTIONS(334), + [anon_sym_ATload_DASHplugin] = ACTIONS(334), + [anon_sym_ATunload] = ACTIONS(334), + [anon_sym_ATprefixes] = ACTIONS(334), + [anon_sym_ATif] = ACTIONS(336), + [anon_sym_ATifdef] = ACTIONS(334), + [anon_sym_ATifndef] = ACTIONS(334), + [anon_sym_ATendif] = ACTIONS(334), + [anon_sym_ATelse] = ACTIONS(334), + [anon_sym_ATpragma] = ACTIONS(334), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [408] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [373] = { + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(576), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(576), + [anon_sym_RPAREN] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_in] = ACTIONS(576), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_RBRACK] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(578), + [anon_sym_as] = ACTIONS(576), + [anon_sym_AMPdeprecated] = ACTIONS(576), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(576), + [anon_sym_AMPerror_handler] = ACTIONS(576), + [anon_sym_AMPis_assigned] = ACTIONS(576), + [anon_sym_AMPis_used] = ACTIONS(576), + [anon_sym_AMPlog] = ACTIONS(576), + [anon_sym_AMPoptional] = ACTIONS(576), + [anon_sym_AMPraw_output] = ACTIONS(576), + [anon_sym_AMPredef] = ACTIONS(576), + [anon_sym_AMPadd_func] = ACTIONS(576), + [anon_sym_AMPbackend] = ACTIONS(576), + [anon_sym_AMPbroker_store] = ACTIONS(576), + [anon_sym_AMPcreate_expire] = ACTIONS(576), + [anon_sym_AMPdefault] = ACTIONS(576), + [anon_sym_AMPdelete_func] = ACTIONS(576), + [anon_sym_AMPexpire_func] = ACTIONS(576), + [anon_sym_AMPgroup] = ACTIONS(576), + [anon_sym_AMPon_change] = ACTIONS(576), + [anon_sym_AMPpriority] = ACTIONS(576), + [anon_sym_AMPread_expire] = ACTIONS(576), + [anon_sym_AMPtype_column] = ACTIONS(576), + [anon_sym_AMPwrite_expire] = ACTIONS(576), + [anon_sym_DOLLAR] = ACTIONS(576), + [anon_sym_PIPE] = ACTIONS(578), + [anon_sym_BANG] = ACTIONS(578), + [anon_sym_DASH] = ACTIONS(578), + [anon_sym_PLUS] = ACTIONS(578), + [anon_sym_is] = ACTIONS(576), + [anon_sym_STAR] = ACTIONS(576), + [anon_sym_SLASH] = ACTIONS(576), + [anon_sym_PERCENT] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(578), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(578), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_CARET] = ACTIONS(576), + [anon_sym_QMARK] = ACTIONS(578), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_QMARK_DOLLAR] = ACTIONS(576), + [anon_sym_ATdeprecated] = ACTIONS(576), + [anon_sym_ATload] = ACTIONS(578), + [anon_sym_ATload_DASHsigs] = ACTIONS(576), + [anon_sym_ATload_DASHplugin] = ACTIONS(576), + [anon_sym_ATunload] = ACTIONS(576), + [anon_sym_ATprefixes] = ACTIONS(576), + [anon_sym_ATif] = ACTIONS(578), + [anon_sym_ATifdef] = ACTIONS(576), + [anon_sym_ATifndef] = ACTIONS(576), + [anon_sym_ATendif] = ACTIONS(576), + [anon_sym_ATelse] = ACTIONS(576), + [anon_sym_ATpragma] = ACTIONS(576), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [409] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [374] = { + [ts_builtin_sym_end] = ACTIONS(1680), + [anon_sym_module] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1680), + [anon_sym_global] = ACTIONS(1682), + [anon_sym_option] = ACTIONS(1682), + [anon_sym_const] = ACTIONS(1682), + [anon_sym_redef] = ACTIONS(1682), + [anon_sym_record] = ACTIONS(1682), + [anon_sym_type] = ACTIONS(1682), + [anon_sym_print] = ACTIONS(1682), + [anon_sym_event] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_LPAREN] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1682), + [anon_sym_LBRACK] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_next] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_fallthrough] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_add] = ACTIONS(1682), + [anon_sym_delete] = ACTIONS(1682), + [anon_sym_local] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_assert] = ACTIONS(1682), + [anon_sym_table] = ACTIONS(1682), + [anon_sym_set] = ACTIONS(1682), + [anon_sym_vector] = ACTIONS(1682), + [anon_sym_function] = ACTIONS(1682), + [anon_sym_hook] = ACTIONS(1682), + [anon_sym_DOLLAR] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1680), + [anon_sym_PLUS_PLUS] = ACTIONS(1680), + [anon_sym_DASH_DASH] = ACTIONS(1680), + [anon_sym_BANG] = ACTIONS(1680), + [anon_sym_TILDE] = ACTIONS(1680), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_copy] = ACTIONS(1682), + [anon_sym_schedule] = ACTIONS(1682), + [aux_sym_constant_token1] = ACTIONS(1682), + [anon_sym_T] = ACTIONS(1682), + [anon_sym_F] = ACTIONS(1682), + [anon_sym_ATdeprecated] = ACTIONS(1680), + [anon_sym_ATload] = ACTIONS(1682), + [anon_sym_ATload_DASHsigs] = ACTIONS(1680), + [anon_sym_ATload_DASHplugin] = ACTIONS(1680), + [anon_sym_ATunload] = ACTIONS(1680), + [anon_sym_ATprefixes] = ACTIONS(1680), + [anon_sym_ATif] = ACTIONS(1682), + [anon_sym_ATifdef] = ACTIONS(1680), + [anon_sym_ATifndef] = ACTIONS(1680), + [anon_sym_ATendif] = ACTIONS(1680), + [anon_sym_ATelse] = ACTIONS(1680), + [anon_sym_ATpragma] = ACTIONS(1680), + [anon_sym_ATDIR] = ACTIONS(1680), + [anon_sym_ATFILENAME] = ACTIONS(1680), + [sym_id] = ACTIONS(1682), + [sym_pattern] = ACTIONS(1680), + [sym_ipv6] = ACTIONS(1682), + [sym_ipv4] = ACTIONS(1682), + [sym_port] = ACTIONS(1680), + [sym_floatp] = ACTIONS(1682), + [sym_hex] = ACTIONS(1682), + [sym_hostname] = ACTIONS(1682), + [aux_sym_string_token1] = ACTIONS(1680), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [410] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [375] = { + [anon_sym_SEMI] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_COLON] = ACTIONS(338), + [anon_sym_PLUS_EQ] = ACTIONS(338), + [anon_sym_DASH_EQ] = ACTIONS(338), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_RPAREN] = ACTIONS(338), + [anon_sym_COMMA] = ACTIONS(338), + [anon_sym_in] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(338), + [anon_sym_RBRACK] = ACTIONS(338), + [anon_sym_EQ] = ACTIONS(340), + [anon_sym_as] = ACTIONS(338), + [anon_sym_AMPdeprecated] = ACTIONS(338), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(338), + [anon_sym_AMPerror_handler] = ACTIONS(338), + [anon_sym_AMPis_assigned] = ACTIONS(338), + [anon_sym_AMPis_used] = ACTIONS(338), + [anon_sym_AMPlog] = ACTIONS(338), + [anon_sym_AMPoptional] = ACTIONS(338), + [anon_sym_AMPraw_output] = ACTIONS(338), + [anon_sym_AMPredef] = ACTIONS(338), + [anon_sym_AMPadd_func] = ACTIONS(338), + [anon_sym_AMPbackend] = ACTIONS(338), + [anon_sym_AMPbroker_store] = ACTIONS(338), + [anon_sym_AMPcreate_expire] = ACTIONS(338), + [anon_sym_AMPdefault] = ACTIONS(338), + [anon_sym_AMPdelete_func] = ACTIONS(338), + [anon_sym_AMPexpire_func] = ACTIONS(338), + [anon_sym_AMPgroup] = ACTIONS(338), + [anon_sym_AMPon_change] = ACTIONS(338), + [anon_sym_AMPpriority] = ACTIONS(338), + [anon_sym_AMPread_expire] = ACTIONS(338), + [anon_sym_AMPtype_column] = ACTIONS(338), + [anon_sym_AMPwrite_expire] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(340), + [anon_sym_BANG] = ACTIONS(340), + [anon_sym_DASH] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(340), + [anon_sym_is] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(338), + [anon_sym_SLASH] = ACTIONS(338), + [anon_sym_PERCENT] = ACTIONS(338), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_LT_EQ] = ACTIONS(338), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_EQ] = ACTIONS(338), + [anon_sym_AMP] = ACTIONS(340), + [anon_sym_CARET] = ACTIONS(338), + [anon_sym_QMARK] = ACTIONS(340), + [anon_sym_EQ_EQ] = ACTIONS(338), + [anon_sym_BANG_EQ] = ACTIONS(338), + [anon_sym_AMP_AMP] = ACTIONS(338), + [anon_sym_PIPE_PIPE] = ACTIONS(338), + [anon_sym_QMARK_DOLLAR] = ACTIONS(338), + [anon_sym_ATdeprecated] = ACTIONS(338), + [anon_sym_ATload] = ACTIONS(340), + [anon_sym_ATload_DASHsigs] = ACTIONS(338), + [anon_sym_ATload_DASHplugin] = ACTIONS(338), + [anon_sym_ATunload] = ACTIONS(338), + [anon_sym_ATprefixes] = ACTIONS(338), + [anon_sym_ATif] = ACTIONS(340), + [anon_sym_ATifdef] = ACTIONS(338), + [anon_sym_ATifndef] = ACTIONS(338), + [anon_sym_ATendif] = ACTIONS(338), + [anon_sym_ATelse] = ACTIONS(338), + [anon_sym_ATpragma] = ACTIONS(338), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [411] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [376] = { + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_COLON] = ACTIONS(746), + [anon_sym_PLUS_EQ] = ACTIONS(746), + [anon_sym_DASH_EQ] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_in] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_EQ] = ACTIONS(748), + [anon_sym_as] = ACTIONS(746), + [anon_sym_AMPdeprecated] = ACTIONS(746), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(746), + [anon_sym_AMPerror_handler] = ACTIONS(746), + [anon_sym_AMPis_assigned] = ACTIONS(746), + [anon_sym_AMPis_used] = ACTIONS(746), + [anon_sym_AMPlog] = ACTIONS(746), + [anon_sym_AMPoptional] = ACTIONS(746), + [anon_sym_AMPraw_output] = ACTIONS(746), + [anon_sym_AMPredef] = ACTIONS(746), + [anon_sym_AMPadd_func] = ACTIONS(746), + [anon_sym_AMPbackend] = ACTIONS(746), + [anon_sym_AMPbroker_store] = ACTIONS(746), + [anon_sym_AMPcreate_expire] = ACTIONS(746), + [anon_sym_AMPdefault] = ACTIONS(746), + [anon_sym_AMPdelete_func] = ACTIONS(746), + [anon_sym_AMPexpire_func] = ACTIONS(746), + [anon_sym_AMPgroup] = ACTIONS(746), + [anon_sym_AMPon_change] = ACTIONS(746), + [anon_sym_AMPpriority] = ACTIONS(746), + [anon_sym_AMPread_expire] = ACTIONS(746), + [anon_sym_AMPtype_column] = ACTIONS(746), + [anon_sym_AMPwrite_expire] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(746), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_is] = ACTIONS(746), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(746), + [anon_sym_PERCENT] = ACTIONS(746), + [anon_sym_LT] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(746), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(746), + [anon_sym_AMP] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(746), + [anon_sym_QMARK] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_AMP_AMP] = ACTIONS(746), + [anon_sym_PIPE_PIPE] = ACTIONS(746), + [anon_sym_QMARK_DOLLAR] = ACTIONS(746), + [anon_sym_ATdeprecated] = ACTIONS(746), + [anon_sym_ATload] = ACTIONS(748), + [anon_sym_ATload_DASHsigs] = ACTIONS(746), + [anon_sym_ATload_DASHplugin] = ACTIONS(746), + [anon_sym_ATunload] = ACTIONS(746), + [anon_sym_ATprefixes] = ACTIONS(746), + [anon_sym_ATif] = ACTIONS(748), + [anon_sym_ATifdef] = ACTIONS(746), + [anon_sym_ATifndef] = ACTIONS(746), + [anon_sym_ATendif] = ACTIONS(746), + [anon_sym_ATelse] = ACTIONS(746), + [anon_sym_ATpragma] = ACTIONS(746), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [412] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [377] = { + [anon_sym_SEMI] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_COLON] = ACTIONS(756), + [anon_sym_PLUS_EQ] = ACTIONS(756), + [anon_sym_DASH_EQ] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_in] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(756), + [anon_sym_RBRACK] = ACTIONS(756), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_as] = ACTIONS(756), + [anon_sym_AMPdeprecated] = ACTIONS(756), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(756), + [anon_sym_AMPerror_handler] = ACTIONS(756), + [anon_sym_AMPis_assigned] = ACTIONS(756), + [anon_sym_AMPis_used] = ACTIONS(756), + [anon_sym_AMPlog] = ACTIONS(756), + [anon_sym_AMPoptional] = ACTIONS(756), + [anon_sym_AMPraw_output] = ACTIONS(756), + [anon_sym_AMPredef] = ACTIONS(756), + [anon_sym_AMPadd_func] = ACTIONS(756), + [anon_sym_AMPbackend] = ACTIONS(756), + [anon_sym_AMPbroker_store] = ACTIONS(756), + [anon_sym_AMPcreate_expire] = ACTIONS(756), + [anon_sym_AMPdefault] = ACTIONS(756), + [anon_sym_AMPdelete_func] = ACTIONS(756), + [anon_sym_AMPexpire_func] = ACTIONS(756), + [anon_sym_AMPgroup] = ACTIONS(756), + [anon_sym_AMPon_change] = ACTIONS(756), + [anon_sym_AMPpriority] = ACTIONS(756), + [anon_sym_AMPread_expire] = ACTIONS(756), + [anon_sym_AMPtype_column] = ACTIONS(756), + [anon_sym_AMPwrite_expire] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(756), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_is] = ACTIONS(756), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_SLASH] = ACTIONS(756), + [anon_sym_PERCENT] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(756), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(756), + [anon_sym_QMARK] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_QMARK_DOLLAR] = ACTIONS(756), + [anon_sym_ATdeprecated] = ACTIONS(756), + [anon_sym_ATload] = ACTIONS(758), + [anon_sym_ATload_DASHsigs] = ACTIONS(756), + [anon_sym_ATload_DASHplugin] = ACTIONS(756), + [anon_sym_ATunload] = ACTIONS(756), + [anon_sym_ATprefixes] = ACTIONS(756), + [anon_sym_ATif] = ACTIONS(758), + [anon_sym_ATifdef] = ACTIONS(756), + [anon_sym_ATifndef] = ACTIONS(756), + [anon_sym_ATendif] = ACTIONS(756), + [anon_sym_ATelse] = ACTIONS(756), + [anon_sym_ATpragma] = ACTIONS(756), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [413] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1688), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [378] = { + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(760), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_in] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(762), + [anon_sym_as] = ACTIONS(760), + [anon_sym_AMPdeprecated] = ACTIONS(760), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(760), + [anon_sym_AMPerror_handler] = ACTIONS(760), + [anon_sym_AMPis_assigned] = ACTIONS(760), + [anon_sym_AMPis_used] = ACTIONS(760), + [anon_sym_AMPlog] = ACTIONS(760), + [anon_sym_AMPoptional] = ACTIONS(760), + [anon_sym_AMPraw_output] = ACTIONS(760), + [anon_sym_AMPredef] = ACTIONS(760), + [anon_sym_AMPadd_func] = ACTIONS(760), + [anon_sym_AMPbackend] = ACTIONS(760), + [anon_sym_AMPbroker_store] = ACTIONS(760), + [anon_sym_AMPcreate_expire] = ACTIONS(760), + [anon_sym_AMPdefault] = ACTIONS(760), + [anon_sym_AMPdelete_func] = ACTIONS(760), + [anon_sym_AMPexpire_func] = ACTIONS(760), + [anon_sym_AMPgroup] = ACTIONS(760), + [anon_sym_AMPon_change] = ACTIONS(760), + [anon_sym_AMPpriority] = ACTIONS(760), + [anon_sym_AMPread_expire] = ACTIONS(760), + [anon_sym_AMPtype_column] = ACTIONS(760), + [anon_sym_AMPwrite_expire] = ACTIONS(760), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(762), + [anon_sym_PLUS] = ACTIONS(762), + [anon_sym_is] = ACTIONS(760), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_SLASH] = ACTIONS(760), + [anon_sym_PERCENT] = ACTIONS(760), + [anon_sym_LT] = ACTIONS(762), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(762), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_AMP] = ACTIONS(762), + [anon_sym_CARET] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(762), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_QMARK_DOLLAR] = ACTIONS(760), + [anon_sym_ATdeprecated] = ACTIONS(760), + [anon_sym_ATload] = ACTIONS(762), + [anon_sym_ATload_DASHsigs] = ACTIONS(760), + [anon_sym_ATload_DASHplugin] = ACTIONS(760), + [anon_sym_ATunload] = ACTIONS(760), + [anon_sym_ATprefixes] = ACTIONS(760), + [anon_sym_ATif] = ACTIONS(762), + [anon_sym_ATifdef] = ACTIONS(760), + [anon_sym_ATifndef] = ACTIONS(760), + [anon_sym_ATendif] = ACTIONS(760), + [anon_sym_ATelse] = ACTIONS(760), + [anon_sym_ATpragma] = ACTIONS(760), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [414] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [379] = { + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_COLON] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(568), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_in] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_as] = ACTIONS(568), + [anon_sym_AMPdeprecated] = ACTIONS(568), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(568), + [anon_sym_AMPerror_handler] = ACTIONS(568), + [anon_sym_AMPis_assigned] = ACTIONS(568), + [anon_sym_AMPis_used] = ACTIONS(568), + [anon_sym_AMPlog] = ACTIONS(568), + [anon_sym_AMPoptional] = ACTIONS(568), + [anon_sym_AMPraw_output] = ACTIONS(568), + [anon_sym_AMPredef] = ACTIONS(568), + [anon_sym_AMPadd_func] = ACTIONS(568), + [anon_sym_AMPbackend] = ACTIONS(568), + [anon_sym_AMPbroker_store] = ACTIONS(568), + [anon_sym_AMPcreate_expire] = ACTIONS(568), + [anon_sym_AMPdefault] = ACTIONS(568), + [anon_sym_AMPdelete_func] = ACTIONS(568), + [anon_sym_AMPexpire_func] = ACTIONS(568), + [anon_sym_AMPgroup] = ACTIONS(568), + [anon_sym_AMPon_change] = ACTIONS(568), + [anon_sym_AMPpriority] = ACTIONS(568), + [anon_sym_AMPread_expire] = ACTIONS(568), + [anon_sym_AMPtype_column] = ACTIONS(568), + [anon_sym_AMPwrite_expire] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_is] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(568), + [anon_sym_PERCENT] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(568), + [anon_sym_QMARK] = ACTIONS(570), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_AMP_AMP] = ACTIONS(568), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_QMARK_DOLLAR] = ACTIONS(568), + [anon_sym_ATdeprecated] = ACTIONS(568), + [anon_sym_ATload] = ACTIONS(570), + [anon_sym_ATload_DASHsigs] = ACTIONS(568), + [anon_sym_ATload_DASHplugin] = ACTIONS(568), + [anon_sym_ATunload] = ACTIONS(568), + [anon_sym_ATprefixes] = ACTIONS(568), + [anon_sym_ATif] = ACTIONS(570), + [anon_sym_ATifdef] = ACTIONS(568), + [anon_sym_ATifndef] = ACTIONS(568), + [anon_sym_ATendif] = ACTIONS(568), + [anon_sym_ATelse] = ACTIONS(568), + [anon_sym_ATpragma] = ACTIONS(568), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [415] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [380] = { + [ts_builtin_sym_end] = ACTIONS(1632), + [anon_sym_module] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_export] = ACTIONS(1634), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_global] = ACTIONS(1634), + [anon_sym_option] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_redef] = ACTIONS(1634), + [anon_sym_record] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_print] = ACTIONS(1634), + [anon_sym_event] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_switch] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_next] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_fallthrough] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_add] = ACTIONS(1634), + [anon_sym_delete] = ACTIONS(1634), + [anon_sym_local] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(1634), + [anon_sym_assert] = ACTIONS(1634), + [anon_sym_table] = ACTIONS(1634), + [anon_sym_set] = ACTIONS(1634), + [anon_sym_vector] = ACTIONS(1634), + [anon_sym_function] = ACTIONS(1634), + [anon_sym_hook] = ACTIONS(1634), + [anon_sym_DOLLAR] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_PLUS_PLUS] = ACTIONS(1632), + [anon_sym_DASH_DASH] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_TILDE] = ACTIONS(1632), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_copy] = ACTIONS(1634), + [anon_sym_schedule] = ACTIONS(1634), + [aux_sym_constant_token1] = ACTIONS(1634), + [anon_sym_T] = ACTIONS(1634), + [anon_sym_F] = ACTIONS(1634), + [anon_sym_ATdeprecated] = ACTIONS(1632), + [anon_sym_ATload] = ACTIONS(1634), + [anon_sym_ATload_DASHsigs] = ACTIONS(1632), + [anon_sym_ATload_DASHplugin] = ACTIONS(1632), + [anon_sym_ATunload] = ACTIONS(1632), + [anon_sym_ATprefixes] = ACTIONS(1632), + [anon_sym_ATif] = ACTIONS(1634), + [anon_sym_ATifdef] = ACTIONS(1632), + [anon_sym_ATifndef] = ACTIONS(1632), + [anon_sym_ATendif] = ACTIONS(1632), + [anon_sym_ATelse] = ACTIONS(1632), + [anon_sym_ATpragma] = ACTIONS(1632), + [anon_sym_ATDIR] = ACTIONS(1632), + [anon_sym_ATFILENAME] = ACTIONS(1632), + [sym_id] = ACTIONS(1634), + [sym_pattern] = ACTIONS(1632), + [sym_ipv6] = ACTIONS(1634), + [sym_ipv4] = ACTIONS(1634), + [sym_port] = ACTIONS(1632), + [sym_floatp] = ACTIONS(1634), + [sym_hex] = ACTIONS(1634), + [sym_hostname] = ACTIONS(1634), + [aux_sym_string_token1] = ACTIONS(1632), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [416] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [381] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [417] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [382] = { + [sym_attr_list] = STATE(2492), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(1298), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_attr_list_repeat1] = STATE(1597), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_record] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_local] = ACTIONS(119), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [418] = { - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), + [383] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1688), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [384] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1690), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [385] = { + [sym_attr_list] = STATE(2314), + [sym_attr] = STATE(1597), + [sym_expr] = STATE(1298), + [sym_expr_list] = STATE(2369), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [aux_sym_attr_list_repeat1] = STATE(1597), + [aux_sym_expr_list_repeat1] = STATE(876), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_record] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_local] = ACTIONS(119), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_AMPdeprecated] = ACTIONS(884), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(886), + [anon_sym_AMPerror_handler] = ACTIONS(886), + [anon_sym_AMPis_assigned] = ACTIONS(886), + [anon_sym_AMPis_used] = ACTIONS(886), + [anon_sym_AMPlog] = ACTIONS(886), + [anon_sym_AMPoptional] = ACTIONS(886), + [anon_sym_AMPraw_output] = ACTIONS(886), + [anon_sym_AMPredef] = ACTIONS(886), + [anon_sym_AMPadd_func] = ACTIONS(888), + [anon_sym_AMPbackend] = ACTIONS(888), + [anon_sym_AMPbroker_store] = ACTIONS(888), + [anon_sym_AMPcreate_expire] = ACTIONS(888), + [anon_sym_AMPdefault] = ACTIONS(888), + [anon_sym_AMPdelete_func] = ACTIONS(888), + [anon_sym_AMPexpire_func] = ACTIONS(888), + [anon_sym_AMPgroup] = ACTIONS(888), + [anon_sym_AMPon_change] = ACTIONS(888), + [anon_sym_AMPpriority] = ACTIONS(888), + [anon_sym_AMPread_expire] = ACTIONS(888), + [anon_sym_AMPtype_column] = ACTIONS(888), + [anon_sym_AMPwrite_expire] = ACTIONS(888), + [anon_sym_DOLLAR] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(67), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [386] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [387] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [388] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), [anon_sym_return] = ACTIONS(1698), [anon_sym_add] = ACTIONS(1698), [anon_sym_delete] = ACTIONS(1698), @@ -49292,6 +47154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -49309,7 +47172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [419] = { + [389] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -49365,6 +47228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -49382,1886 +47246,2375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [420] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [390] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [421] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1700), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [391] = { + [sym_expr] = STATE(1303), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(133), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_COLON] = ACTIONS(117), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_record] = ACTIONS(25), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_local] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(117), + [anon_sym_table] = ACTIONS(57), + [anon_sym_set] = ACTIONS(57), + [anon_sym_vector] = ACTIONS(59), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_PLUS_PLUS] = ACTIONS(69), + [anon_sym_DASH_DASH] = ACTIONS(69), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_copy] = ACTIONS(73), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_schedule] = ACTIONS(75), + [aux_sym_constant_token1] = ACTIONS(77), + [anon_sym_T] = ACTIONS(79), + [anon_sym_F] = ACTIONS(79), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), + [sym_hex] = ACTIONS(79), + [sym_hostname] = ACTIONS(79), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [422] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), + [392] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), [anon_sym_timeout] = ACTIONS(1702), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [423] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1704), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [393] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [424] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), + [394] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [425] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [395] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [426] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [396] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1714), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [427] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [397] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [428] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [398] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1716), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [429] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [399] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [430] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [400] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [431] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1712), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [401] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [432] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [402] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [433] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [403] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [434] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [404] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [435] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [405] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [436] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [406] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [437] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1714), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [407] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [438] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1716), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [408] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1736), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [439] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [409] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1738), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [440] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [410] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [441] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [411] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [442] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [412] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [443] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [413] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [444] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [414] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [445] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [415] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [446] = { + [416] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [417] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [418] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_case] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [419] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [420] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1746), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [421] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1748), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [422] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -51284,6 +49637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1750), [anon_sym_assert] = ACTIONS(1698), [anon_sym_case] = ACTIONS(1698), [anon_sym_default] = ACTIONS(1698), @@ -51316,6 +49670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -51333,7 +49688,599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [447] = { + [423] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1752), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [424] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [425] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [426] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [427] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [428] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [429] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [430] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [431] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -51343,7 +50290,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_event] = ACTIONS(1698), [anon_sym_if] = ACTIONS(1698), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1698), [anon_sym_switch] = ACTIONS(1698), [anon_sym_for] = ACTIONS(1698), [anon_sym_LBRACK] = ACTIONS(1696), @@ -51356,6 +50302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), [anon_sym_assert] = ACTIONS(1698), [anon_sym_case] = ACTIONS(1698), [anon_sym_default] = ACTIONS(1698), @@ -51388,6 +50335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -51405,3894 +50353,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [448] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [449] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [450] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [451] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [452] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [453] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [454] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [455] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [456] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [457] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1720), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [458] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [459] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [460] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [461] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [462] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1724), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [463] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [464] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [465] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [466] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [467] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [468] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [469] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_case] = ACTIONS(129), - [anon_sym_default] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [470] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_case] = ACTIONS(125), - [anon_sym_default] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [471] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [472] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [473] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [474] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1726), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [475] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1728), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [476] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1730), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [478] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [480] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1732), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [482] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [483] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [484] = { - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_case] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [485] = { - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_case] = ACTIONS(1698), - [anon_sym_default] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [486] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [487] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [488] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [489] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [490] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [491] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [492] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [493] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [494] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [432] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [495] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [433] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [496] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [434] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [497] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1736), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [435] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [498] = { - [sym_attr_list] = STATE(359), - [sym_attr] = STATE(587), - [aux_sym_attr_list_repeat1] = STATE(587), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [436] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [499] = { - [sym_attr_list] = STATE(366), - [sym_attr] = STATE(587), - [aux_sym_attr_list_repeat1] = STATE(587), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1602), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1602), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_is] = ACTIONS(1602), - [anon_sym_STAR] = ACTIONS(1602), - [anon_sym_SLASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [437] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [500] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [438] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [439] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [502] = { + [440] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -55315,8 +50960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), [anon_sym_vector] = ACTIONS(1698), @@ -55346,6 +50992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -55363,7 +51010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [503] = { + [441] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -55386,8 +51033,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), [anon_sym_vector] = ACTIONS(1698), @@ -55417,6 +51065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -55434,3486 +51083,5184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [504] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [442] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [505] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [443] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [506] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [444] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [507] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [445] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [508] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [446] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [447] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [510] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [448] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [449] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [450] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [513] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1740), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [451] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [514] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1742), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [452] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [453] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [454] = { + [ts_builtin_sym_end] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [455] = { + [ts_builtin_sym_end] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [456] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [457] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [458] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1760), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [459] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [460] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1762), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [461] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [462] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [463] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [464] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [465] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [466] = { + [sym_attr_list] = STATE(349), + [sym_attr] = STATE(507), + [aux_sym_attr_list_repeat1] = STATE(507), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_SLASH] = ACTIONS(1628), + [anon_sym_PERCENT] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_LT_EQ] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_EQ_EQ] = ACTIONS(1628), + [anon_sym_BANG_EQ] = ACTIONS(1628), + [anon_sym_AMP_AMP] = ACTIONS(1628), + [anon_sym_PIPE_PIPE] = ACTIONS(1628), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [467] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [515] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [468] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [516] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1744), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [469] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [517] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [470] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [518] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [471] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [519] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [472] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [520] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [473] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [521] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1748), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [474] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [522] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1750), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [475] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [523] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1752), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [476] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [524] = { - [anon_sym_SEMI] = ACTIONS(111), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1754), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(111), - [anon_sym_AMPdeprecated] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1472), - [anon_sym_AMPerror_handler] = ACTIONS(1472), - [anon_sym_AMPis_assigned] = ACTIONS(1472), - [anon_sym_AMPis_used] = ACTIONS(1472), - [anon_sym_AMPlog] = ACTIONS(1472), - [anon_sym_AMPoptional] = ACTIONS(1472), - [anon_sym_AMPraw_output] = ACTIONS(1472), - [anon_sym_AMPredef] = ACTIONS(1472), - [anon_sym_AMPadd_func] = ACTIONS(1472), - [anon_sym_AMPbackend] = ACTIONS(1472), - [anon_sym_AMPbroker_store] = ACTIONS(1472), - [anon_sym_AMPcreate_expire] = ACTIONS(1472), - [anon_sym_AMPdefault] = ACTIONS(1472), - [anon_sym_AMPdelete_func] = ACTIONS(1472), - [anon_sym_AMPexpire_func] = ACTIONS(1472), - [anon_sym_AMPgroup] = ACTIONS(1472), - [anon_sym_AMPon_change] = ACTIONS(1472), - [anon_sym_AMPpriority] = ACTIONS(1472), - [anon_sym_AMPread_expire] = ACTIONS(1472), - [anon_sym_AMPtype_column] = ACTIONS(1472), - [anon_sym_AMPwrite_expire] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(111), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(1472), - [anon_sym_ATload] = ACTIONS(1476), - [anon_sym_ATload_DASHsigs] = ACTIONS(1472), - [anon_sym_ATload_DASHplugin] = ACTIONS(1472), - [anon_sym_ATunload] = ACTIONS(1472), - [anon_sym_ATprefixes] = ACTIONS(1472), - [anon_sym_ATif] = ACTIONS(1476), - [anon_sym_ATifdef] = ACTIONS(1472), - [anon_sym_ATifndef] = ACTIONS(1472), - [anon_sym_ATendif] = ACTIONS(1472), - [anon_sym_ATelse] = ACTIONS(1472), + [477] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [525] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1756), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [478] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [526] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1758), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [479] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [527] = { - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [480] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [481] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [529] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1760), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [482] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [530] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [483] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [531] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1764), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [484] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_case] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [532] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [485] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [533] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [486] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [487] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [534] = { - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [488] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [535] = { - [ts_builtin_sym_end] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [489] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_case] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [536] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [490] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [537] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_case] = ACTIONS(137), - [anon_sym_default] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [491] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [538] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1768), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [492] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [539] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [493] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1768), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [540] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), + [494] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), [anon_sym_RPAREN] = ACTIONS(1770), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [541] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1650), - [anon_sym_default] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [542] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [495] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [543] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [496] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [544] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [497] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1774), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [545] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [498] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1776), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [546] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [499] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1778), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [547] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1670), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [500] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1780), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_case] = ACTIONS(1698), + [anon_sym_default] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [548] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [501] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [549] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [502] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_case] = ACTIONS(127), + [anon_sym_default] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [550] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1658), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [503] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_case] = ACTIONS(131), + [anon_sym_default] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [551] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [504] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1782), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [552] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [505] = { + [sym_attr_list] = STATE(345), + [sym_attr] = STATE(507), + [aux_sym_attr_list_repeat1] = STATE(507), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [553] = { + [506] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [507] = { + [sym_attr] = STATE(599), + [aux_sym_attr_list_repeat1] = STATE(599), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_PLUS_EQ] = ACTIONS(1784), + [anon_sym_DASH_EQ] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1784), + [anon_sym_in] = ACTIONS(1784), + [anon_sym_LBRACK] = ACTIONS(1784), + [anon_sym_EQ] = ACTIONS(1786), + [anon_sym_as] = ACTIONS(1784), + [anon_sym_AMPdeprecated] = ACTIONS(1784), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1784), + [anon_sym_AMPerror_handler] = ACTIONS(1784), + [anon_sym_AMPis_assigned] = ACTIONS(1784), + [anon_sym_AMPis_used] = ACTIONS(1784), + [anon_sym_AMPlog] = ACTIONS(1784), + [anon_sym_AMPoptional] = ACTIONS(1784), + [anon_sym_AMPraw_output] = ACTIONS(1784), + [anon_sym_AMPredef] = ACTIONS(1784), + [anon_sym_AMPadd_func] = ACTIONS(1784), + [anon_sym_AMPbackend] = ACTIONS(1784), + [anon_sym_AMPbroker_store] = ACTIONS(1784), + [anon_sym_AMPcreate_expire] = ACTIONS(1784), + [anon_sym_AMPdefault] = ACTIONS(1784), + [anon_sym_AMPdelete_func] = ACTIONS(1784), + [anon_sym_AMPexpire_func] = ACTIONS(1784), + [anon_sym_AMPgroup] = ACTIONS(1784), + [anon_sym_AMPon_change] = ACTIONS(1784), + [anon_sym_AMPpriority] = ACTIONS(1784), + [anon_sym_AMPread_expire] = ACTIONS(1784), + [anon_sym_AMPtype_column] = ACTIONS(1784), + [anon_sym_AMPwrite_expire] = ACTIONS(1784), + [anon_sym_DOLLAR] = ACTIONS(1784), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_PLUS] = ACTIONS(1786), + [anon_sym_is] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1784), + [anon_sym_SLASH] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1784), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_LT_EQ] = ACTIONS(1784), + [anon_sym_GT] = ACTIONS(1786), + [anon_sym_GT_EQ] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_CARET] = ACTIONS(1784), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_EQ_EQ] = ACTIONS(1784), + [anon_sym_BANG_EQ] = ACTIONS(1784), + [anon_sym_AMP_AMP] = ACTIONS(1784), + [anon_sym_PIPE_PIPE] = ACTIONS(1784), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1784), + [anon_sym_ATdeprecated] = ACTIONS(1784), + [anon_sym_ATload] = ACTIONS(1786), + [anon_sym_ATload_DASHsigs] = ACTIONS(1784), + [anon_sym_ATload_DASHplugin] = ACTIONS(1784), + [anon_sym_ATunload] = ACTIONS(1784), + [anon_sym_ATprefixes] = ACTIONS(1784), + [anon_sym_ATif] = ACTIONS(1786), + [anon_sym_ATifdef] = ACTIONS(1784), + [anon_sym_ATifndef] = ACTIONS(1784), + [anon_sym_ATendif] = ACTIONS(1784), + [anon_sym_ATelse] = ACTIONS(1784), + [anon_sym_ATpragma] = ACTIONS(1784), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [508] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [509] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [510] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_case] = ACTIONS(1706), + [anon_sym_default] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [511] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [513] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -58967,6 +56314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -58984,7 +56332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [554] = { + [514] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -59038,6 +56386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -59055,1711 +56404,2239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [555] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [515] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [556] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [516] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [557] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [517] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_case] = ACTIONS(1702), + [anon_sym_default] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [558] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1666), - [anon_sym_default] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [518] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [559] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [519] = { + [ts_builtin_sym_end] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [560] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_else] = ACTIONS(129), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [520] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_case] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [561] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [521] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [522] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_case] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [563] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [523] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [564] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1772), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [524] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_case] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [525] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [526] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_case] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [528] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [529] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_else] = ACTIONS(127), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [566] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [530] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_else] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [567] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [531] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [532] = { + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [569] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [533] = { + [ts_builtin_sym_end] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [534] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1790), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [535] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [536] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [573] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [537] = { + [ts_builtin_sym_end] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [538] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [539] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1792), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [540] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [541] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [542] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [543] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [544] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1794), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [579] = { + [546] = { [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), @@ -60813,6 +58690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -60830,7 +58708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [580] = { + [547] = { [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), @@ -60884,6 +58762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -60901,3750 +58780,4111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [581] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [548] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [549] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [583] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [550] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [584] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [551] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [585] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_case] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [552] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [586] = { - [sym_attr] = STATE(586), - [aux_sym_attr_list_repeat1] = STATE(586), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_PLUS_EQ] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1776), - [anon_sym_in] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1776), - [anon_sym_EQ] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1776), - [anon_sym_AMPdeprecated] = ACTIONS(1780), - [anon_sym_DASH_EQ] = ACTIONS(1776), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1783), - [anon_sym_AMPerror_handler] = ACTIONS(1783), - [anon_sym_AMPis_assigned] = ACTIONS(1783), - [anon_sym_AMPis_used] = ACTIONS(1783), - [anon_sym_AMPlog] = ACTIONS(1783), - [anon_sym_AMPoptional] = ACTIONS(1783), - [anon_sym_AMPraw_output] = ACTIONS(1783), - [anon_sym_AMPredef] = ACTIONS(1783), - [anon_sym_AMPadd_func] = ACTIONS(1786), - [anon_sym_AMPbackend] = ACTIONS(1786), - [anon_sym_AMPbroker_store] = ACTIONS(1786), - [anon_sym_AMPcreate_expire] = ACTIONS(1786), - [anon_sym_AMPdefault] = ACTIONS(1786), - [anon_sym_AMPdelete_func] = ACTIONS(1786), - [anon_sym_AMPexpire_func] = ACTIONS(1786), - [anon_sym_AMPgroup] = ACTIONS(1786), - [anon_sym_AMPon_change] = ACTIONS(1786), - [anon_sym_AMPpriority] = ACTIONS(1786), - [anon_sym_AMPread_expire] = ACTIONS(1786), - [anon_sym_AMPtype_column] = ACTIONS(1786), - [anon_sym_AMPwrite_expire] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_is] = ACTIONS(1776), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PERCENT] = ACTIONS(1776), - [anon_sym_LT] = ACTIONS(1778), - [anon_sym_LT_EQ] = ACTIONS(1776), - [anon_sym_GT] = ACTIONS(1778), - [anon_sym_GT_EQ] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(1778), - [anon_sym_CARET] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1776), - [anon_sym_BANG_EQ] = ACTIONS(1776), - [anon_sym_AMP_AMP] = ACTIONS(1776), - [anon_sym_PIPE_PIPE] = ACTIONS(1776), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1776), - [anon_sym_ATdeprecated] = ACTIONS(1776), - [anon_sym_ATload] = ACTIONS(1778), - [anon_sym_ATload_DASHsigs] = ACTIONS(1776), - [anon_sym_ATload_DASHplugin] = ACTIONS(1776), - [anon_sym_ATunload] = ACTIONS(1776), - [anon_sym_ATprefixes] = ACTIONS(1776), - [anon_sym_ATif] = ACTIONS(1778), - [anon_sym_ATifdef] = ACTIONS(1776), - [anon_sym_ATifndef] = ACTIONS(1776), - [anon_sym_ATendif] = ACTIONS(1776), - [anon_sym_ATelse] = ACTIONS(1776), + [553] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [587] = { - [sym_attr] = STATE(586), - [aux_sym_attr_list_repeat1] = STATE(586), - [anon_sym_LBRACE] = ACTIONS(1789), - [anon_sym_PLUS_EQ] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1789), - [anon_sym_in] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1789), - [anon_sym_EQ] = ACTIONS(1791), - [anon_sym_as] = ACTIONS(1789), - [anon_sym_AMPdeprecated] = ACTIONS(1789), - [anon_sym_DASH_EQ] = ACTIONS(1789), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1789), - [anon_sym_AMPerror_handler] = ACTIONS(1789), - [anon_sym_AMPis_assigned] = ACTIONS(1789), - [anon_sym_AMPis_used] = ACTIONS(1789), - [anon_sym_AMPlog] = ACTIONS(1789), - [anon_sym_AMPoptional] = ACTIONS(1789), - [anon_sym_AMPraw_output] = ACTIONS(1789), - [anon_sym_AMPredef] = ACTIONS(1789), - [anon_sym_AMPadd_func] = ACTIONS(1789), - [anon_sym_AMPbackend] = ACTIONS(1789), - [anon_sym_AMPbroker_store] = ACTIONS(1789), - [anon_sym_AMPcreate_expire] = ACTIONS(1789), - [anon_sym_AMPdefault] = ACTIONS(1789), - [anon_sym_AMPdelete_func] = ACTIONS(1789), - [anon_sym_AMPexpire_func] = ACTIONS(1789), - [anon_sym_AMPgroup] = ACTIONS(1789), - [anon_sym_AMPon_change] = ACTIONS(1789), - [anon_sym_AMPpriority] = ACTIONS(1789), - [anon_sym_AMPread_expire] = ACTIONS(1789), - [anon_sym_AMPtype_column] = ACTIONS(1789), - [anon_sym_AMPwrite_expire] = ACTIONS(1789), - [anon_sym_DOLLAR] = ACTIONS(1789), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1791), - [anon_sym_is] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_SLASH] = ACTIONS(1789), - [anon_sym_PERCENT] = ACTIONS(1789), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_LT_EQ] = ACTIONS(1789), - [anon_sym_GT] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(1789), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_CARET] = ACTIONS(1789), - [anon_sym_QMARK] = ACTIONS(1791), - [anon_sym_EQ_EQ] = ACTIONS(1789), - [anon_sym_BANG_EQ] = ACTIONS(1789), - [anon_sym_AMP_AMP] = ACTIONS(1789), - [anon_sym_PIPE_PIPE] = ACTIONS(1789), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1789), - [anon_sym_ATdeprecated] = ACTIONS(1789), - [anon_sym_ATload] = ACTIONS(1791), - [anon_sym_ATload_DASHsigs] = ACTIONS(1789), - [anon_sym_ATload_DASHplugin] = ACTIONS(1789), - [anon_sym_ATunload] = ACTIONS(1789), - [anon_sym_ATprefixes] = ACTIONS(1789), - [anon_sym_ATif] = ACTIONS(1791), - [anon_sym_ATifdef] = ACTIONS(1789), - [anon_sym_ATifndef] = ACTIONS(1789), - [anon_sym_ATendif] = ACTIONS(1789), - [anon_sym_ATelse] = ACTIONS(1789), + [554] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [588] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1793), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [555] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1800), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1795), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [556] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1797), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [557] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [591] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1799), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [558] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1802), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [592] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1801), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [559] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1804), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [593] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1803), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [560] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [594] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_timeout] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [561] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [595] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_timeout] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [562] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [596] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [563] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [597] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [564] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [598] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [565] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [599] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [566] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [567] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [600] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [568] = { + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_timeout] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [601] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [569] = { + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_timeout] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [602] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [570] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [603] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [571] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [604] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [572] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [605] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [573] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1806), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [606] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [574] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [607] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [575] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [608] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [576] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_case] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [609] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [577] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_case] = ACTIONS(1464), + [anon_sym_default] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [610] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [578] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_case] = ACTIONS(1646), + [anon_sym_default] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [611] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [579] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [612] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [580] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [613] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_else] = ACTIONS(125), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [581] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_case] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [614] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [582] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [615] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [583] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [616] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [584] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [617] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [585] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [618] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [586] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [587] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [620] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [588] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [621] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [589] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [590] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [623] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [591] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1808), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [624] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [592] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [625] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [593] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1810), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [626] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [594] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1812), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [627] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [595] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1814), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [628] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [596] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [597] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [598] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [629] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [599] = { + [sym_attr] = STATE(599), + [aux_sym_attr_list_repeat1] = STATE(599), + [anon_sym_LBRACE] = ACTIONS(1816), + [anon_sym_PLUS_EQ] = ACTIONS(1816), + [anon_sym_DASH_EQ] = ACTIONS(1816), + [anon_sym_LPAREN] = ACTIONS(1816), + [anon_sym_in] = ACTIONS(1816), + [anon_sym_LBRACK] = ACTIONS(1816), + [anon_sym_EQ] = ACTIONS(1818), + [anon_sym_as] = ACTIONS(1816), + [anon_sym_AMPdeprecated] = ACTIONS(1820), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1823), + [anon_sym_AMPerror_handler] = ACTIONS(1823), + [anon_sym_AMPis_assigned] = ACTIONS(1823), + [anon_sym_AMPis_used] = ACTIONS(1823), + [anon_sym_AMPlog] = ACTIONS(1823), + [anon_sym_AMPoptional] = ACTIONS(1823), + [anon_sym_AMPraw_output] = ACTIONS(1823), + [anon_sym_AMPredef] = ACTIONS(1823), + [anon_sym_AMPadd_func] = ACTIONS(1826), + [anon_sym_AMPbackend] = ACTIONS(1826), + [anon_sym_AMPbroker_store] = ACTIONS(1826), + [anon_sym_AMPcreate_expire] = ACTIONS(1826), + [anon_sym_AMPdefault] = ACTIONS(1826), + [anon_sym_AMPdelete_func] = ACTIONS(1826), + [anon_sym_AMPexpire_func] = ACTIONS(1826), + [anon_sym_AMPgroup] = ACTIONS(1826), + [anon_sym_AMPon_change] = ACTIONS(1826), + [anon_sym_AMPpriority] = ACTIONS(1826), + [anon_sym_AMPread_expire] = ACTIONS(1826), + [anon_sym_AMPtype_column] = ACTIONS(1826), + [anon_sym_AMPwrite_expire] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1816), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_is] = ACTIONS(1816), + [anon_sym_STAR] = ACTIONS(1816), + [anon_sym_SLASH] = ACTIONS(1816), + [anon_sym_PERCENT] = ACTIONS(1816), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1816), + [anon_sym_GT] = ACTIONS(1818), + [anon_sym_GT_EQ] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_CARET] = ACTIONS(1816), + [anon_sym_QMARK] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_AMP_AMP] = ACTIONS(1816), + [anon_sym_PIPE_PIPE] = ACTIONS(1816), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1816), + [anon_sym_ATdeprecated] = ACTIONS(1816), + [anon_sym_ATload] = ACTIONS(1818), + [anon_sym_ATload_DASHsigs] = ACTIONS(1816), + [anon_sym_ATload_DASHplugin] = ACTIONS(1816), + [anon_sym_ATunload] = ACTIONS(1816), + [anon_sym_ATprefixes] = ACTIONS(1816), + [anon_sym_ATif] = ACTIONS(1818), + [anon_sym_ATifdef] = ACTIONS(1816), + [anon_sym_ATifndef] = ACTIONS(1816), + [anon_sym_ATendif] = ACTIONS(1816), + [anon_sym_ATelse] = ACTIONS(1816), + [anon_sym_ATpragma] = ACTIONS(1816), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [630] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [600] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_case] = ACTIONS(139), + [anon_sym_default] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [631] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [601] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1829), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [632] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1807), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [602] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1831), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [633] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [603] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1833), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [634] = { + [604] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1835), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [605] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -64667,6 +62907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1837), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -64697,6 +62938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -64714,10 +62956,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [635] = { + [606] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1839), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [607] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [609] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [610] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [611] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [612] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [613] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [614] = { + [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_const] = ACTIONS(1698), [anon_sym_record] = ACTIONS(1698), [anon_sym_print] = ACTIONS(1698), @@ -64737,6 +63555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1845), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -64767,6 +63586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -64784,2177 +63604,2713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [636] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [615] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [637] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1809), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [616] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [638] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [617] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1847), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [639] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [618] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [640] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [619] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1734), + [anon_sym_default] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [641] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [620] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [642] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [621] = { + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(115), + [anon_sym_AMPdeprecated] = ACTIONS(1510), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1510), + [anon_sym_AMPerror_handler] = ACTIONS(1510), + [anon_sym_AMPis_assigned] = ACTIONS(1510), + [anon_sym_AMPis_used] = ACTIONS(1510), + [anon_sym_AMPlog] = ACTIONS(1510), + [anon_sym_AMPoptional] = ACTIONS(1510), + [anon_sym_AMPraw_output] = ACTIONS(1510), + [anon_sym_AMPredef] = ACTIONS(1510), + [anon_sym_AMPadd_func] = ACTIONS(1510), + [anon_sym_AMPbackend] = ACTIONS(1510), + [anon_sym_AMPbroker_store] = ACTIONS(1510), + [anon_sym_AMPcreate_expire] = ACTIONS(1510), + [anon_sym_AMPdefault] = ACTIONS(1510), + [anon_sym_AMPdelete_func] = ACTIONS(1510), + [anon_sym_AMPexpire_func] = ACTIONS(1510), + [anon_sym_AMPgroup] = ACTIONS(1510), + [anon_sym_AMPon_change] = ACTIONS(1510), + [anon_sym_AMPpriority] = ACTIONS(1510), + [anon_sym_AMPread_expire] = ACTIONS(1510), + [anon_sym_AMPtype_column] = ACTIONS(1510), + [anon_sym_AMPwrite_expire] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(115), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(1510), + [anon_sym_ATload] = ACTIONS(1514), + [anon_sym_ATload_DASHsigs] = ACTIONS(1510), + [anon_sym_ATload_DASHplugin] = ACTIONS(1510), + [anon_sym_ATunload] = ACTIONS(1510), + [anon_sym_ATprefixes] = ACTIONS(1510), + [anon_sym_ATif] = ACTIONS(1514), + [anon_sym_ATifdef] = ACTIONS(1510), + [anon_sym_ATifndef] = ACTIONS(1510), + [anon_sym_ATendif] = ACTIONS(1510), + [anon_sym_ATelse] = ACTIONS(1510), + [anon_sym_ATpragma] = ACTIONS(1510), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [643] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [622] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_case] = ACTIONS(1548), + [anon_sym_default] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [623] = { + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [645] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [624] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1869), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [646] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [625] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [647] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1811), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [626] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [648] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [627] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [649] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [628] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [629] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [651] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1813), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [630] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [652] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [631] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [632] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [633] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [634] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [635] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [653] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [636] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [637] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [655] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [638] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [656] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [639] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [657] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [640] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [658] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1815), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [641] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [659] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [642] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [660] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [643] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [661] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [644] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [662] = { - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [645] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [663] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1817), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [646] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [664] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [647] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [665] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [648] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [666] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [649] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [667] = { + [650] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1871), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [651] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [652] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1873), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [653] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -67007,6 +66363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -67024,70 +66381,1065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, + [654] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [655] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [656] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [657] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [658] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [659] = { + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [660] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [661] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [662] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [663] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [664] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [665] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [666] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [667] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, [668] = { - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_timeout] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67095,69 +67447,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [669] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67165,69 +67518,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [670] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_timeout] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67235,69 +67589,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [671] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67305,69 +67660,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [672] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67375,69 +67731,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [673] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_timeout] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67445,69 +67802,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [674] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_else] = ACTIONS(1676), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67515,69 +67873,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_else] = ACTIONS(137), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67585,69 +67944,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_timeout] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67655,69 +68015,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67725,69 +68086,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [678] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_else] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67795,69 +68157,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [679] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_else] = ACTIONS(1422), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67865,69 +68228,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1680), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -67935,69 +68299,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [681] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_timeout] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68005,69 +68370,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [682] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_else] = ACTIONS(1512), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68075,69 +68441,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [683] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_else] = ACTIONS(1548), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68145,69 +68512,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [684] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1823), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68215,69 +68583,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_else] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68285,69 +68654,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [686] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(125), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68355,69 +68725,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(129), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68425,69 +68796,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_else] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_timeout] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68495,69 +68867,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_else] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68565,69 +68938,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [690] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68635,69 +69009,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [691] = { - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_RBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68705,69 +69080,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [692] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_timeout] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_else] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68775,209 +69151,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1825), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), - }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1827), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + }, + [694] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1885), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [695] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -68985,69 +69364,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [696] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_timeout] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_else] = ACTIONS(1464), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69055,16 +69435,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_const] = ACTIONS(1698), [anon_sym_record] = ACTIONS(1698), [anon_sym_print] = ACTIONS(1698), [anon_sym_event] = ACTIONS(1698), [anon_sym_if] = ACTIONS(1698), [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1698), [anon_sym_switch] = ACTIONS(1698), [anon_sym_for] = ACTIONS(1698), [anon_sym_LBRACK] = ACTIONS(1696), @@ -69077,6 +69456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1887), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -69107,6 +69487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -69125,69 +69506,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_else] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_else] = ACTIONS(1646), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69195,69 +69577,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [699] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_timeout] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1889), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69265,69 +69648,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [700] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69335,69 +69719,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [701] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_timeout] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69405,69 +69790,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_else] = ACTIONS(1684), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69475,69 +69861,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [703] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_const] = ACTIONS(127), + [anon_sym_record] = ACTIONS(127), + [anon_sym_print] = ACTIONS(127), + [anon_sym_event] = ACTIONS(127), + [anon_sym_if] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_for] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_while] = ACTIONS(127), + [anon_sym_next] = ACTIONS(127), + [anon_sym_break] = ACTIONS(127), + [anon_sym_fallthrough] = ACTIONS(127), + [anon_sym_return] = ACTIONS(127), + [anon_sym_add] = ACTIONS(127), + [anon_sym_delete] = ACTIONS(127), + [anon_sym_local] = ACTIONS(127), + [anon_sym_when] = ACTIONS(127), + [anon_sym_assert] = ACTIONS(127), + [anon_sym_table] = ACTIONS(127), + [anon_sym_set] = ACTIONS(127), + [anon_sym_vector] = ACTIONS(127), + [anon_sym_function] = ACTIONS(127), + [anon_sym_hook] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(125), + [anon_sym_PIPE] = ACTIONS(125), + [anon_sym_PLUS_PLUS] = ACTIONS(125), + [anon_sym_DASH_DASH] = ACTIONS(125), + [anon_sym_BANG] = ACTIONS(125), + [anon_sym_TILDE] = ACTIONS(125), + [anon_sym_DASH] = ACTIONS(127), + [anon_sym_PLUS] = ACTIONS(127), + [anon_sym_copy] = ACTIONS(127), + [anon_sym_schedule] = ACTIONS(127), + [aux_sym_constant_token1] = ACTIONS(127), + [anon_sym_T] = ACTIONS(127), + [anon_sym_F] = ACTIONS(127), + [anon_sym_ATdeprecated] = ACTIONS(125), + [anon_sym_ATload] = ACTIONS(127), + [anon_sym_ATload_DASHsigs] = ACTIONS(125), + [anon_sym_ATload_DASHplugin] = ACTIONS(125), + [anon_sym_ATunload] = ACTIONS(125), + [anon_sym_ATprefixes] = ACTIONS(125), + [anon_sym_ATif] = ACTIONS(127), + [anon_sym_ATifdef] = ACTIONS(125), + [anon_sym_ATifndef] = ACTIONS(125), + [anon_sym_ATendif] = ACTIONS(125), + [anon_sym_ATelse] = ACTIONS(125), + [anon_sym_ATpragma] = ACTIONS(125), + [anon_sym_ATDIR] = ACTIONS(125), + [anon_sym_ATFILENAME] = ACTIONS(125), + [sym_id] = ACTIONS(127), + [sym_pattern] = ACTIONS(125), + [sym_ipv6] = ACTIONS(127), + [sym_ipv4] = ACTIONS(127), + [sym_port] = ACTIONS(125), + [sym_floatp] = ACTIONS(127), + [sym_hex] = ACTIONS(127), + [sym_hostname] = ACTIONS(127), + [aux_sym_string_token1] = ACTIONS(125), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69545,69 +69932,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [704] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_else] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_const] = ACTIONS(131), + [anon_sym_record] = ACTIONS(131), + [anon_sym_print] = ACTIONS(131), + [anon_sym_event] = ACTIONS(131), + [anon_sym_if] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(129), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_switch] = ACTIONS(131), + [anon_sym_for] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_next] = ACTIONS(131), + [anon_sym_break] = ACTIONS(131), + [anon_sym_fallthrough] = ACTIONS(131), + [anon_sym_return] = ACTIONS(131), + [anon_sym_add] = ACTIONS(131), + [anon_sym_delete] = ACTIONS(131), + [anon_sym_local] = ACTIONS(131), + [anon_sym_when] = ACTIONS(131), + [anon_sym_assert] = ACTIONS(131), + [anon_sym_table] = ACTIONS(131), + [anon_sym_set] = ACTIONS(131), + [anon_sym_vector] = ACTIONS(131), + [anon_sym_function] = ACTIONS(131), + [anon_sym_hook] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PLUS_PLUS] = ACTIONS(129), + [anon_sym_DASH_DASH] = ACTIONS(129), + [anon_sym_BANG] = ACTIONS(129), + [anon_sym_TILDE] = ACTIONS(129), + [anon_sym_DASH] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(131), + [anon_sym_copy] = ACTIONS(131), + [anon_sym_schedule] = ACTIONS(131), + [aux_sym_constant_token1] = ACTIONS(131), + [anon_sym_T] = ACTIONS(131), + [anon_sym_F] = ACTIONS(131), + [anon_sym_ATdeprecated] = ACTIONS(129), + [anon_sym_ATload] = ACTIONS(131), + [anon_sym_ATload_DASHsigs] = ACTIONS(129), + [anon_sym_ATload_DASHplugin] = ACTIONS(129), + [anon_sym_ATunload] = ACTIONS(129), + [anon_sym_ATprefixes] = ACTIONS(129), + [anon_sym_ATif] = ACTIONS(131), + [anon_sym_ATifdef] = ACTIONS(129), + [anon_sym_ATifndef] = ACTIONS(129), + [anon_sym_ATendif] = ACTIONS(129), + [anon_sym_ATelse] = ACTIONS(129), + [anon_sym_ATpragma] = ACTIONS(129), + [anon_sym_ATDIR] = ACTIONS(129), + [anon_sym_ATFILENAME] = ACTIONS(129), + [sym_id] = ACTIONS(131), + [sym_pattern] = ACTIONS(129), + [sym_ipv6] = ACTIONS(131), + [sym_ipv4] = ACTIONS(131), + [sym_port] = ACTIONS(129), + [sym_floatp] = ACTIONS(131), + [sym_hex] = ACTIONS(131), + [sym_hostname] = ACTIONS(131), + [aux_sym_string_token1] = ACTIONS(129), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69615,69 +70003,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_else] = ACTIONS(1480), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69685,69 +70074,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_timeout] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_else] = ACTIONS(1728), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69755,69 +70145,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [707] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_timeout] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_else] = ACTIONS(139), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69825,69 +70216,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69895,69 +70287,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_timeout] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -69965,69 +70358,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70035,69 +70429,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [711] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1829), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1893), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70105,69 +70500,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_timeout] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70175,69 +70571,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [713] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_else] = ACTIONS(1734), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70245,69 +70642,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [714] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(111), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_BANG] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70315,69 +70713,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [715] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70385,69 +70784,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [716] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(111), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(111), - [anon_sym_AMPerror_handler] = ACTIONS(111), - [anon_sym_AMPis_assigned] = ACTIONS(111), - [anon_sym_AMPis_used] = ACTIONS(111), - [anon_sym_AMPlog] = ACTIONS(111), - [anon_sym_AMPoptional] = ACTIONS(111), - [anon_sym_AMPraw_output] = ACTIONS(111), - [anon_sym_AMPredef] = ACTIONS(111), - [anon_sym_AMPadd_func] = ACTIONS(111), - [anon_sym_AMPbackend] = ACTIONS(111), - [anon_sym_AMPbroker_store] = ACTIONS(111), - [anon_sym_AMPcreate_expire] = ACTIONS(111), - [anon_sym_AMPdefault] = ACTIONS(111), - [anon_sym_AMPdelete_func] = ACTIONS(111), - [anon_sym_AMPexpire_func] = ACTIONS(111), - [anon_sym_AMPgroup] = ACTIONS(111), - [anon_sym_AMPon_change] = ACTIONS(111), - [anon_sym_AMPpriority] = ACTIONS(111), - [anon_sym_AMPread_expire] = ACTIONS(111), - [anon_sym_AMPtype_column] = ACTIONS(111), - [anon_sym_AMPwrite_expire] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), - [anon_sym_ATdeprecated] = ACTIONS(111), - [anon_sym_ATload] = ACTIONS(113), - [anon_sym_ATload_DASHsigs] = ACTIONS(111), - [anon_sym_ATload_DASHplugin] = ACTIONS(111), - [anon_sym_ATunload] = ACTIONS(111), - [anon_sym_ATprefixes] = ACTIONS(111), - [anon_sym_ATif] = ACTIONS(113), - [anon_sym_ATifdef] = ACTIONS(111), - [anon_sym_ATifndef] = ACTIONS(111), - [anon_sym_ATendif] = ACTIONS(111), - [anon_sym_ATelse] = ACTIONS(111), + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_timeout] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70455,69 +70855,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [717] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1849), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70525,69 +70926,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [718] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_timeout] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70595,69 +70997,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [719] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1602), - [anon_sym_PLUS_EQ] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1602), - [anon_sym_DASH_EQ] = ACTIONS(1602), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1602), - [anon_sym_AMPerror_handler] = ACTIONS(1602), - [anon_sym_AMPis_assigned] = ACTIONS(1602), - [anon_sym_AMPis_used] = ACTIONS(1602), - [anon_sym_AMPlog] = ACTIONS(1602), - [anon_sym_AMPoptional] = ACTIONS(1602), - [anon_sym_AMPraw_output] = ACTIONS(1602), - [anon_sym_AMPredef] = ACTIONS(1602), - [anon_sym_AMPadd_func] = ACTIONS(1602), - [anon_sym_AMPbackend] = ACTIONS(1602), - [anon_sym_AMPbroker_store] = ACTIONS(1602), - [anon_sym_AMPcreate_expire] = ACTIONS(1602), - [anon_sym_AMPdefault] = ACTIONS(1602), - [anon_sym_AMPdelete_func] = ACTIONS(1602), - [anon_sym_AMPexpire_func] = ACTIONS(1602), - [anon_sym_AMPgroup] = ACTIONS(1602), - [anon_sym_AMPon_change] = ACTIONS(1602), - [anon_sym_AMPpriority] = ACTIONS(1602), - [anon_sym_AMPread_expire] = ACTIONS(1602), - [anon_sym_AMPtype_column] = ACTIONS(1602), - [anon_sym_AMPwrite_expire] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_LT_EQ] = ACTIONS(1602), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1602), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1602), - [anon_sym_QMARK] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1602), - [anon_sym_BANG_EQ] = ACTIONS(1602), - [anon_sym_AMP_AMP] = ACTIONS(1602), - [anon_sym_PIPE_PIPE] = ACTIONS(1602), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1602), - [anon_sym_ATdeprecated] = ACTIONS(1602), - [anon_sym_ATload] = ACTIONS(1604), - [anon_sym_ATload_DASHsigs] = ACTIONS(1602), - [anon_sym_ATload_DASHplugin] = ACTIONS(1602), - [anon_sym_ATunload] = ACTIONS(1602), - [anon_sym_ATprefixes] = ACTIONS(1602), - [anon_sym_ATif] = ACTIONS(1604), - [anon_sym_ATifdef] = ACTIONS(1602), - [anon_sym_ATifndef] = ACTIONS(1602), - [anon_sym_ATendif] = ACTIONS(1602), - [anon_sym_ATelse] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70665,69 +71068,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [720] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1448), - [anon_sym_AMPerror_handler] = ACTIONS(1448), - [anon_sym_AMPis_assigned] = ACTIONS(1448), - [anon_sym_AMPis_used] = ACTIONS(1448), - [anon_sym_AMPlog] = ACTIONS(1448), - [anon_sym_AMPoptional] = ACTIONS(1448), - [anon_sym_AMPraw_output] = ACTIONS(1448), - [anon_sym_AMPredef] = ACTIONS(1448), - [anon_sym_AMPadd_func] = ACTIONS(1448), - [anon_sym_AMPbackend] = ACTIONS(1448), - [anon_sym_AMPbroker_store] = ACTIONS(1448), - [anon_sym_AMPcreate_expire] = ACTIONS(1448), - [anon_sym_AMPdefault] = ACTIONS(1448), - [anon_sym_AMPdelete_func] = ACTIONS(1448), - [anon_sym_AMPexpire_func] = ACTIONS(1448), - [anon_sym_AMPgroup] = ACTIONS(1448), - [anon_sym_AMPon_change] = ACTIONS(1448), - [anon_sym_AMPpriority] = ACTIONS(1448), - [anon_sym_AMPread_expire] = ACTIONS(1448), - [anon_sym_AMPtype_column] = ACTIONS(1448), - [anon_sym_AMPwrite_expire] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1448), - [anon_sym_ATdeprecated] = ACTIONS(1448), - [anon_sym_ATload] = ACTIONS(1450), - [anon_sym_ATload_DASHsigs] = ACTIONS(1448), - [anon_sym_ATload_DASHplugin] = ACTIONS(1448), - [anon_sym_ATunload] = ACTIONS(1448), - [anon_sym_ATprefixes] = ACTIONS(1448), - [anon_sym_ATif] = ACTIONS(1450), - [anon_sym_ATifdef] = ACTIONS(1448), - [anon_sym_ATifndef] = ACTIONS(1448), - [anon_sym_ATendif] = ACTIONS(1448), - [anon_sym_ATelse] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70735,69 +71139,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [721] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_PLUS_EQ] = ACTIONS(1610), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1612), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1610), - [anon_sym_DASH_EQ] = ACTIONS(1610), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1610), - [anon_sym_AMPerror_handler] = ACTIONS(1610), - [anon_sym_AMPis_assigned] = ACTIONS(1610), - [anon_sym_AMPis_used] = ACTIONS(1610), - [anon_sym_AMPlog] = ACTIONS(1610), - [anon_sym_AMPoptional] = ACTIONS(1610), - [anon_sym_AMPraw_output] = ACTIONS(1610), - [anon_sym_AMPredef] = ACTIONS(1610), - [anon_sym_AMPadd_func] = ACTIONS(1610), - [anon_sym_AMPbackend] = ACTIONS(1610), - [anon_sym_AMPbroker_store] = ACTIONS(1610), - [anon_sym_AMPcreate_expire] = ACTIONS(1610), - [anon_sym_AMPdefault] = ACTIONS(1610), - [anon_sym_AMPdelete_func] = ACTIONS(1610), - [anon_sym_AMPexpire_func] = ACTIONS(1610), - [anon_sym_AMPgroup] = ACTIONS(1610), - [anon_sym_AMPon_change] = ACTIONS(1610), - [anon_sym_AMPpriority] = ACTIONS(1610), - [anon_sym_AMPread_expire] = ACTIONS(1610), - [anon_sym_AMPtype_column] = ACTIONS(1610), - [anon_sym_AMPwrite_expire] = ACTIONS(1610), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1610), - [anon_sym_BANG_EQ] = ACTIONS(1610), - [anon_sym_AMP_AMP] = ACTIONS(1610), - [anon_sym_PIPE_PIPE] = ACTIONS(1610), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1610), - [anon_sym_ATdeprecated] = ACTIONS(1610), - [anon_sym_ATload] = ACTIONS(1612), - [anon_sym_ATload_DASHsigs] = ACTIONS(1610), - [anon_sym_ATload_DASHplugin] = ACTIONS(1610), - [anon_sym_ATunload] = ACTIONS(1610), - [anon_sym_ATprefixes] = ACTIONS(1610), - [anon_sym_ATif] = ACTIONS(1612), - [anon_sym_ATifdef] = ACTIONS(1610), - [anon_sym_ATifndef] = ACTIONS(1610), - [anon_sym_ATendif] = ACTIONS(1610), - [anon_sym_ATelse] = ACTIONS(1610), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70805,69 +71210,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70875,69 +71281,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [723] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(1448), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1448), - [anon_sym_AMPerror_handler] = ACTIONS(1448), - [anon_sym_AMPis_assigned] = ACTIONS(1448), - [anon_sym_AMPis_used] = ACTIONS(1448), - [anon_sym_AMPlog] = ACTIONS(1448), - [anon_sym_AMPoptional] = ACTIONS(1448), - [anon_sym_AMPraw_output] = ACTIONS(1448), - [anon_sym_AMPredef] = ACTIONS(1448), - [anon_sym_AMPadd_func] = ACTIONS(1448), - [anon_sym_AMPbackend] = ACTIONS(1448), - [anon_sym_AMPbroker_store] = ACTIONS(1448), - [anon_sym_AMPcreate_expire] = ACTIONS(1448), - [anon_sym_AMPdefault] = ACTIONS(1448), - [anon_sym_AMPdelete_func] = ACTIONS(1448), - [anon_sym_AMPexpire_func] = ACTIONS(1448), - [anon_sym_AMPgroup] = ACTIONS(1448), - [anon_sym_AMPon_change] = ACTIONS(1448), - [anon_sym_AMPpriority] = ACTIONS(1448), - [anon_sym_AMPread_expire] = ACTIONS(1448), - [anon_sym_AMPtype_column] = ACTIONS(1448), - [anon_sym_AMPwrite_expire] = ACTIONS(1448), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1849), - [anon_sym_ATdeprecated] = ACTIONS(1448), - [anon_sym_ATload] = ACTIONS(1450), - [anon_sym_ATload_DASHsigs] = ACTIONS(1448), - [anon_sym_ATload_DASHplugin] = ACTIONS(1448), - [anon_sym_ATunload] = ACTIONS(1448), - [anon_sym_ATprefixes] = ACTIONS(1448), - [anon_sym_ATif] = ACTIONS(1450), - [anon_sym_ATifdef] = ACTIONS(1448), - [anon_sym_ATifndef] = ACTIONS(1448), - [anon_sym_ATendif] = ACTIONS(1448), - [anon_sym_ATelse] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_else] = ACTIONS(1706), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -70945,69 +71352,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1851), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71015,69 +71423,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1853), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(117), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71085,69 +71494,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1855), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71155,69 +71565,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [727] = { - [sym_index_slice] = STATE(349), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_PLUS_EQ] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_in] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_AMPdeprecated] = ACTIONS(133), - [anon_sym_DASH_EQ] = ACTIONS(1831), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(133), - [anon_sym_AMPerror_handler] = ACTIONS(133), - [anon_sym_AMPis_assigned] = ACTIONS(133), - [anon_sym_AMPis_used] = ACTIONS(133), - [anon_sym_AMPlog] = ACTIONS(133), - [anon_sym_AMPoptional] = ACTIONS(133), - [anon_sym_AMPraw_output] = ACTIONS(133), - [anon_sym_AMPredef] = ACTIONS(133), - [anon_sym_AMPadd_func] = ACTIONS(133), - [anon_sym_AMPbackend] = ACTIONS(133), - [anon_sym_AMPbroker_store] = ACTIONS(133), - [anon_sym_AMPcreate_expire] = ACTIONS(133), - [anon_sym_AMPdefault] = ACTIONS(133), - [anon_sym_AMPdelete_func] = ACTIONS(133), - [anon_sym_AMPexpire_func] = ACTIONS(133), - [anon_sym_AMPgroup] = ACTIONS(133), - [anon_sym_AMPon_change] = ACTIONS(133), - [anon_sym_AMPpriority] = ACTIONS(133), - [anon_sym_AMPread_expire] = ACTIONS(133), - [anon_sym_AMPtype_column] = ACTIONS(133), - [anon_sym_AMPwrite_expire] = ACTIONS(133), - [anon_sym_DOLLAR] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_PLUS] = ACTIONS(1837), - [anon_sym_is] = ACTIONS(1586), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_SLASH] = ACTIONS(1841), - [anon_sym_PERCENT] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_LT_EQ] = ACTIONS(1833), - [anon_sym_GT] = ACTIONS(1837), - [anon_sym_GT_EQ] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(1843), - [anon_sym_EQ_EQ] = ACTIONS(1845), - [anon_sym_BANG_EQ] = ACTIONS(1845), - [anon_sym_AMP_AMP] = ACTIONS(1847), - [anon_sym_PIPE_PIPE] = ACTIONS(1847), - [anon_sym_QMARK_DOLLAR] = ACTIONS(1849), - [anon_sym_ATdeprecated] = ACTIONS(133), - [anon_sym_ATload] = ACTIONS(139), - [anon_sym_ATload_DASHsigs] = ACTIONS(133), - [anon_sym_ATload_DASHplugin] = ACTIONS(133), - [anon_sym_ATunload] = ACTIONS(133), - [anon_sym_ATprefixes] = ACTIONS(133), - [anon_sym_ATif] = ACTIONS(139), - [anon_sym_ATifdef] = ACTIONS(133), - [anon_sym_ATifndef] = ACTIONS(133), - [anon_sym_ATendif] = ACTIONS(133), - [anon_sym_ATelse] = ACTIONS(133), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(115), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(115), + [anon_sym_AMPerror_handler] = ACTIONS(115), + [anon_sym_AMPis_assigned] = ACTIONS(115), + [anon_sym_AMPis_used] = ACTIONS(115), + [anon_sym_AMPlog] = ACTIONS(115), + [anon_sym_AMPoptional] = ACTIONS(115), + [anon_sym_AMPraw_output] = ACTIONS(115), + [anon_sym_AMPredef] = ACTIONS(115), + [anon_sym_AMPadd_func] = ACTIONS(115), + [anon_sym_AMPbackend] = ACTIONS(115), + [anon_sym_AMPbroker_store] = ACTIONS(115), + [anon_sym_AMPcreate_expire] = ACTIONS(115), + [anon_sym_AMPdefault] = ACTIONS(115), + [anon_sym_AMPdelete_func] = ACTIONS(115), + [anon_sym_AMPexpire_func] = ACTIONS(115), + [anon_sym_AMPgroup] = ACTIONS(115), + [anon_sym_AMPon_change] = ACTIONS(115), + [anon_sym_AMPpriority] = ACTIONS(115), + [anon_sym_AMPread_expire] = ACTIONS(115), + [anon_sym_AMPtype_column] = ACTIONS(115), + [anon_sym_AMPwrite_expire] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), + [anon_sym_ATdeprecated] = ACTIONS(115), + [anon_sym_ATload] = ACTIONS(117), + [anon_sym_ATload_DASHsigs] = ACTIONS(115), + [anon_sym_ATload_DASHplugin] = ACTIONS(115), + [anon_sym_ATunload] = ACTIONS(115), + [anon_sym_ATprefixes] = ACTIONS(115), + [anon_sym_ATif] = ACTIONS(117), + [anon_sym_ATifdef] = ACTIONS(115), + [anon_sym_ATifndef] = ACTIONS(115), + [anon_sym_ATendif] = ACTIONS(115), + [anon_sym_ATelse] = ACTIONS(115), + [anon_sym_ATpragma] = ACTIONS(115), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71225,69 +71636,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [728] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1897), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71295,69 +71707,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [729] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1857), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71365,69 +71778,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [730] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1859), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_PLUS_EQ] = ACTIONS(1628), + [anon_sym_DASH_EQ] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1630), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1628), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1628), + [anon_sym_AMPerror_handler] = ACTIONS(1628), + [anon_sym_AMPis_assigned] = ACTIONS(1628), + [anon_sym_AMPis_used] = ACTIONS(1628), + [anon_sym_AMPlog] = ACTIONS(1628), + [anon_sym_AMPoptional] = ACTIONS(1628), + [anon_sym_AMPraw_output] = ACTIONS(1628), + [anon_sym_AMPredef] = ACTIONS(1628), + [anon_sym_AMPadd_func] = ACTIONS(1628), + [anon_sym_AMPbackend] = ACTIONS(1628), + [anon_sym_AMPbroker_store] = ACTIONS(1628), + [anon_sym_AMPcreate_expire] = ACTIONS(1628), + [anon_sym_AMPdefault] = ACTIONS(1628), + [anon_sym_AMPdelete_func] = ACTIONS(1628), + [anon_sym_AMPexpire_func] = ACTIONS(1628), + [anon_sym_AMPgroup] = ACTIONS(1628), + [anon_sym_AMPon_change] = ACTIONS(1628), + [anon_sym_AMPpriority] = ACTIONS(1628), + [anon_sym_AMPread_expire] = ACTIONS(1628), + [anon_sym_AMPtype_column] = ACTIONS(1628), + [anon_sym_AMPwrite_expire] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1630), + [anon_sym_BANG] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1630), + [anon_sym_PLUS] = ACTIONS(1630), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1630), + [anon_sym_LT_EQ] = ACTIONS(1628), + [anon_sym_GT] = ACTIONS(1630), + [anon_sym_GT_EQ] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1630), + [anon_sym_CARET] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1630), + [anon_sym_EQ_EQ] = ACTIONS(1628), + [anon_sym_BANG_EQ] = ACTIONS(1628), + [anon_sym_AMP_AMP] = ACTIONS(1628), + [anon_sym_PIPE_PIPE] = ACTIONS(1628), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1628), + [anon_sym_ATdeprecated] = ACTIONS(1628), + [anon_sym_ATload] = ACTIONS(1630), + [anon_sym_ATload_DASHsigs] = ACTIONS(1628), + [anon_sym_ATload_DASHplugin] = ACTIONS(1628), + [anon_sym_ATunload] = ACTIONS(1628), + [anon_sym_ATprefixes] = ACTIONS(1628), + [anon_sym_ATif] = ACTIONS(1630), + [anon_sym_ATifdef] = ACTIONS(1628), + [anon_sym_ATifndef] = ACTIONS(1628), + [anon_sym_ATendif] = ACTIONS(1628), + [anon_sym_ATelse] = ACTIONS(1628), + [anon_sym_ATpragma] = ACTIONS(1628), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71435,69 +71849,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [731] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1861), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1490), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1490), + [anon_sym_AMPerror_handler] = ACTIONS(1490), + [anon_sym_AMPis_assigned] = ACTIONS(1490), + [anon_sym_AMPis_used] = ACTIONS(1490), + [anon_sym_AMPlog] = ACTIONS(1490), + [anon_sym_AMPoptional] = ACTIONS(1490), + [anon_sym_AMPraw_output] = ACTIONS(1490), + [anon_sym_AMPredef] = ACTIONS(1490), + [anon_sym_AMPadd_func] = ACTIONS(1490), + [anon_sym_AMPbackend] = ACTIONS(1490), + [anon_sym_AMPbroker_store] = ACTIONS(1490), + [anon_sym_AMPcreate_expire] = ACTIONS(1490), + [anon_sym_AMPdefault] = ACTIONS(1490), + [anon_sym_AMPdelete_func] = ACTIONS(1490), + [anon_sym_AMPexpire_func] = ACTIONS(1490), + [anon_sym_AMPgroup] = ACTIONS(1490), + [anon_sym_AMPon_change] = ACTIONS(1490), + [anon_sym_AMPpriority] = ACTIONS(1490), + [anon_sym_AMPread_expire] = ACTIONS(1490), + [anon_sym_AMPtype_column] = ACTIONS(1490), + [anon_sym_AMPwrite_expire] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1490), + [anon_sym_ATdeprecated] = ACTIONS(1490), + [anon_sym_ATload] = ACTIONS(1492), + [anon_sym_ATload_DASHsigs] = ACTIONS(1490), + [anon_sym_ATload_DASHplugin] = ACTIONS(1490), + [anon_sym_ATunload] = ACTIONS(1490), + [anon_sym_ATprefixes] = ACTIONS(1490), + [anon_sym_ATif] = ACTIONS(1492), + [anon_sym_ATifdef] = ACTIONS(1490), + [anon_sym_ATifndef] = ACTIONS(1490), + [anon_sym_ATendif] = ACTIONS(1490), + [anon_sym_ATelse] = ACTIONS(1490), + [anon_sym_ATpragma] = ACTIONS(1490), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71505,69 +71920,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [732] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_timeout] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_PLUS_EQ] = ACTIONS(1636), + [anon_sym_DASH_EQ] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1636), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1636), + [anon_sym_AMPerror_handler] = ACTIONS(1636), + [anon_sym_AMPis_assigned] = ACTIONS(1636), + [anon_sym_AMPis_used] = ACTIONS(1636), + [anon_sym_AMPlog] = ACTIONS(1636), + [anon_sym_AMPoptional] = ACTIONS(1636), + [anon_sym_AMPraw_output] = ACTIONS(1636), + [anon_sym_AMPredef] = ACTIONS(1636), + [anon_sym_AMPadd_func] = ACTIONS(1636), + [anon_sym_AMPbackend] = ACTIONS(1636), + [anon_sym_AMPbroker_store] = ACTIONS(1636), + [anon_sym_AMPcreate_expire] = ACTIONS(1636), + [anon_sym_AMPdefault] = ACTIONS(1636), + [anon_sym_AMPdelete_func] = ACTIONS(1636), + [anon_sym_AMPexpire_func] = ACTIONS(1636), + [anon_sym_AMPgroup] = ACTIONS(1636), + [anon_sym_AMPon_change] = ACTIONS(1636), + [anon_sym_AMPpriority] = ACTIONS(1636), + [anon_sym_AMPread_expire] = ACTIONS(1636), + [anon_sym_AMPtype_column] = ACTIONS(1636), + [anon_sym_AMPwrite_expire] = ACTIONS(1636), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1636), + [anon_sym_ATdeprecated] = ACTIONS(1636), + [anon_sym_ATload] = ACTIONS(1638), + [anon_sym_ATload_DASHsigs] = ACTIONS(1636), + [anon_sym_ATload_DASHplugin] = ACTIONS(1636), + [anon_sym_ATunload] = ACTIONS(1636), + [anon_sym_ATprefixes] = ACTIONS(1636), + [anon_sym_ATif] = ACTIONS(1638), + [anon_sym_ATifdef] = ACTIONS(1636), + [anon_sym_ATifndef] = ACTIONS(1636), + [anon_sym_ATendif] = ACTIONS(1636), + [anon_sym_ATelse] = ACTIONS(1636), + [anon_sym_ATpragma] = ACTIONS(1636), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -71575,575 +71991,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_timeout] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(1490), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1490), + [anon_sym_AMPerror_handler] = ACTIONS(1490), + [anon_sym_AMPis_assigned] = ACTIONS(1490), + [anon_sym_AMPis_used] = ACTIONS(1490), + [anon_sym_AMPlog] = ACTIONS(1490), + [anon_sym_AMPoptional] = ACTIONS(1490), + [anon_sym_AMPraw_output] = ACTIONS(1490), + [anon_sym_AMPredef] = ACTIONS(1490), + [anon_sym_AMPadd_func] = ACTIONS(1490), + [anon_sym_AMPbackend] = ACTIONS(1490), + [anon_sym_AMPbroker_store] = ACTIONS(1490), + [anon_sym_AMPcreate_expire] = ACTIONS(1490), + [anon_sym_AMPdefault] = ACTIONS(1490), + [anon_sym_AMPdelete_func] = ACTIONS(1490), + [anon_sym_AMPexpire_func] = ACTIONS(1490), + [anon_sym_AMPgroup] = ACTIONS(1490), + [anon_sym_AMPon_change] = ACTIONS(1490), + [anon_sym_AMPpriority] = ACTIONS(1490), + [anon_sym_AMPread_expire] = ACTIONS(1490), + [anon_sym_AMPtype_column] = ACTIONS(1490), + [anon_sym_AMPwrite_expire] = ACTIONS(1490), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1897), + [anon_sym_ATdeprecated] = ACTIONS(1490), + [anon_sym_ATload] = ACTIONS(1492), + [anon_sym_ATload_DASHsigs] = ACTIONS(1490), + [anon_sym_ATload_DASHplugin] = ACTIONS(1490), + [anon_sym_ATunload] = ACTIONS(1490), + [anon_sym_ATprefixes] = ACTIONS(1490), + [anon_sym_ATif] = ACTIONS(1492), + [anon_sym_ATifdef] = ACTIONS(1490), + [anon_sym_ATifndef] = ACTIONS(1490), + [anon_sym_ATendif] = ACTIONS(1490), + [anon_sym_ATelse] = ACTIONS(1490), + [anon_sym_ATpragma] = ACTIONS(1490), [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1899), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_timeout] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [735] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1901), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [736] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1903), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_timeout] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [737] = { + [sym_index_slice] = STATE(336), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_PLUS_EQ] = ACTIONS(1851), + [anon_sym_DASH_EQ] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1614), + [anon_sym_AMPdeprecated] = ACTIONS(135), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(135), + [anon_sym_AMPerror_handler] = ACTIONS(135), + [anon_sym_AMPis_assigned] = ACTIONS(135), + [anon_sym_AMPis_used] = ACTIONS(135), + [anon_sym_AMPlog] = ACTIONS(135), + [anon_sym_AMPoptional] = ACTIONS(135), + [anon_sym_AMPraw_output] = ACTIONS(135), + [anon_sym_AMPredef] = ACTIONS(135), + [anon_sym_AMPadd_func] = ACTIONS(135), + [anon_sym_AMPbackend] = ACTIONS(135), + [anon_sym_AMPbroker_store] = ACTIONS(135), + [anon_sym_AMPcreate_expire] = ACTIONS(135), + [anon_sym_AMPdefault] = ACTIONS(135), + [anon_sym_AMPdelete_func] = ACTIONS(135), + [anon_sym_AMPexpire_func] = ACTIONS(135), + [anon_sym_AMPgroup] = ACTIONS(135), + [anon_sym_AMPon_change] = ACTIONS(135), + [anon_sym_AMPpriority] = ACTIONS(135), + [anon_sym_AMPread_expire] = ACTIONS(135), + [anon_sym_AMPtype_column] = ACTIONS(135), + [anon_sym_AMPwrite_expire] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1857), + [anon_sym_PLUS] = ACTIONS(1857), + [anon_sym_is] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1857), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1857), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1857), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_QMARK_DOLLAR] = ACTIONS(1897), + [anon_sym_ATdeprecated] = ACTIONS(135), + [anon_sym_ATload] = ACTIONS(141), + [anon_sym_ATload_DASHsigs] = ACTIONS(135), + [anon_sym_ATload_DASHplugin] = ACTIONS(135), + [anon_sym_ATunload] = ACTIONS(135), + [anon_sym_ATprefixes] = ACTIONS(135), + [anon_sym_ATif] = ACTIONS(141), + [anon_sym_ATifdef] = ACTIONS(135), + [anon_sym_ATifndef] = ACTIONS(135), + [anon_sym_ATendif] = ACTIONS(135), + [anon_sym_ATelse] = ACTIONS(135), + [anon_sym_ATpragma] = ACTIONS(135), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(1696), + [738] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_const] = ACTIONS(1698), [anon_sym_record] = ACTIONS(1698), [anon_sym_print] = ACTIONS(1698), [anon_sym_event] = ACTIONS(1698), [anon_sym_if] = ACTIONS(1698), [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), [anon_sym_switch] = ACTIONS(1698), [anon_sym_for] = ACTIONS(1698), [anon_sym_LBRACK] = ACTIONS(1696), @@ -72156,7 +72368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -72187,6 +72398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -72204,10 +72416,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(1696), + [739] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1905), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [740] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_const] = ACTIONS(1698), [anon_sym_record] = ACTIONS(1698), [anon_sym_print] = ACTIONS(1698), @@ -72226,7 +72509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), - [anon_sym_timeout] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1907), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -72257,6 +72540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -72274,70 +72558,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, + [741] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_timeout] = ACTIONS(1909), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [742] = { + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_timeout] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, [743] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72345,69 +72772,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [744] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_timeout] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72415,69 +72843,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_timeout] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72485,69 +72914,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_timeout] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72555,69 +72985,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_timeout] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_timeout] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72625,69 +73056,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [748] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_else] = ACTIONS(1708), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72695,69 +73127,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_else] = ACTIONS(1608), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_timeout] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72765,69 +73198,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(127), - [anon_sym_const] = ACTIONS(129), - [anon_sym_record] = ACTIONS(129), - [anon_sym_print] = ACTIONS(129), - [anon_sym_event] = ACTIONS(129), - [anon_sym_if] = ACTIONS(129), - [anon_sym_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_switch] = ACTIONS(129), - [anon_sym_for] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(127), - [anon_sym_while] = ACTIONS(129), - [anon_sym_next] = ACTIONS(129), - [anon_sym_break] = ACTIONS(129), - [anon_sym_fallthrough] = ACTIONS(129), - [anon_sym_return] = ACTIONS(129), - [anon_sym_add] = ACTIONS(129), - [anon_sym_delete] = ACTIONS(129), - [anon_sym_local] = ACTIONS(129), - [anon_sym_when] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(129), - [anon_sym_table] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [anon_sym_vector] = ACTIONS(129), - [anon_sym_function] = ACTIONS(129), - [anon_sym_hook] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(127), - [anon_sym_PLUS_PLUS] = ACTIONS(127), - [anon_sym_DASH_DASH] = ACTIONS(127), - [anon_sym_BANG] = ACTIONS(127), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_DASH] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(129), - [anon_sym_copy] = ACTIONS(129), - [anon_sym_schedule] = ACTIONS(129), - [aux_sym_constant_token1] = ACTIONS(129), - [anon_sym_T] = ACTIONS(129), - [anon_sym_F] = ACTIONS(129), - [anon_sym_ATdeprecated] = ACTIONS(127), - [anon_sym_ATload] = ACTIONS(129), - [anon_sym_ATload_DASHsigs] = ACTIONS(127), - [anon_sym_ATload_DASHplugin] = ACTIONS(127), - [anon_sym_ATunload] = ACTIONS(127), - [anon_sym_ATprefixes] = ACTIONS(127), - [anon_sym_ATif] = ACTIONS(129), - [anon_sym_ATifdef] = ACTIONS(127), - [anon_sym_ATifndef] = ACTIONS(127), - [anon_sym_ATendif] = ACTIONS(127), - [anon_sym_ATelse] = ACTIONS(127), - [anon_sym_ATDIR] = ACTIONS(127), - [anon_sym_ATFILENAME] = ACTIONS(127), - [sym_id] = ACTIONS(129), - [sym_pattern] = ACTIONS(127), - [sym_ipv6] = ACTIONS(129), - [sym_ipv4] = ACTIONS(129), - [sym_port] = ACTIONS(127), - [sym_floatp] = ACTIONS(129), - [sym_hex] = ACTIONS(129), - [sym_hostname] = ACTIONS(129), - [aux_sym_string_token1] = ACTIONS(127), + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72835,69 +73269,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(123), - [anon_sym_SEMI] = ACTIONS(123), - [anon_sym_LBRACE] = ACTIONS(123), - [anon_sym_const] = ACTIONS(125), - [anon_sym_record] = ACTIONS(125), - [anon_sym_print] = ACTIONS(125), - [anon_sym_event] = ACTIONS(125), - [anon_sym_if] = ACTIONS(125), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_RPAREN] = ACTIONS(123), - [anon_sym_switch] = ACTIONS(125), - [anon_sym_for] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_next] = ACTIONS(125), - [anon_sym_break] = ACTIONS(125), - [anon_sym_fallthrough] = ACTIONS(125), - [anon_sym_return] = ACTIONS(125), - [anon_sym_add] = ACTIONS(125), - [anon_sym_delete] = ACTIONS(125), - [anon_sym_local] = ACTIONS(125), - [anon_sym_when] = ACTIONS(125), - [anon_sym_assert] = ACTIONS(125), - [anon_sym_table] = ACTIONS(125), - [anon_sym_set] = ACTIONS(125), - [anon_sym_vector] = ACTIONS(125), - [anon_sym_function] = ACTIONS(125), - [anon_sym_hook] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(123), - [anon_sym_PIPE] = ACTIONS(123), - [anon_sym_PLUS_PLUS] = ACTIONS(123), - [anon_sym_DASH_DASH] = ACTIONS(123), - [anon_sym_BANG] = ACTIONS(123), - [anon_sym_TILDE] = ACTIONS(123), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_copy] = ACTIONS(125), - [anon_sym_schedule] = ACTIONS(125), - [aux_sym_constant_token1] = ACTIONS(125), - [anon_sym_T] = ACTIONS(125), - [anon_sym_F] = ACTIONS(125), - [anon_sym_ATdeprecated] = ACTIONS(123), - [anon_sym_ATload] = ACTIONS(125), - [anon_sym_ATload_DASHsigs] = ACTIONS(123), - [anon_sym_ATload_DASHplugin] = ACTIONS(123), - [anon_sym_ATunload] = ACTIONS(123), - [anon_sym_ATprefixes] = ACTIONS(123), - [anon_sym_ATif] = ACTIONS(125), - [anon_sym_ATifdef] = ACTIONS(123), - [anon_sym_ATifndef] = ACTIONS(123), - [anon_sym_ATendif] = ACTIONS(123), - [anon_sym_ATelse] = ACTIONS(123), - [anon_sym_ATDIR] = ACTIONS(123), - [anon_sym_ATFILENAME] = ACTIONS(123), - [sym_id] = ACTIONS(125), - [sym_pattern] = ACTIONS(123), - [sym_ipv6] = ACTIONS(125), - [sym_ipv4] = ACTIONS(125), - [sym_port] = ACTIONS(123), - [sym_floatp] = ACTIONS(125), - [sym_hex] = ACTIONS(125), - [sym_hostname] = ACTIONS(125), - [aux_sym_string_token1] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -72905,138 +73340,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [752] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_else] = ACTIONS(1692), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [753] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_timeout] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73044,68 +73482,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [754] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73113,68 +73553,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [755] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_else] = ACTIONS(1698), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73182,68 +73624,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [756] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73251,68 +73695,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [757] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73320,68 +73766,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [758] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1702), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73389,68 +73837,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_else] = ACTIONS(1694), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73458,68 +73908,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [760] = { - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73527,68 +73979,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [761] = { - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_else] = ACTIONS(1712), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73596,68 +74050,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -73665,9 +74121,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [763] = { + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_else] = ACTIONS(1720), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [764] = { + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_else] = ACTIONS(1724), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(1696), [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_RBRACE] = ACTIONS(1696), [anon_sym_const] = ACTIONS(1698), [anon_sym_record] = ACTIONS(1698), [anon_sym_print] = ACTIONS(1698), @@ -73686,6 +74284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1698), [anon_sym_local] = ACTIONS(1698), [anon_sym_when] = ACTIONS(1698), + [anon_sym_timeout] = ACTIONS(1698), [anon_sym_assert] = ACTIONS(1698), [anon_sym_table] = ACTIONS(1698), [anon_sym_set] = ACTIONS(1698), @@ -73716,6 +74315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -73733,76 +74333,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_const] = ACTIONS(137), - [anon_sym_record] = ACTIONS(137), - [anon_sym_print] = ACTIONS(137), - [anon_sym_event] = ACTIONS(137), - [anon_sym_if] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_switch] = ACTIONS(137), - [anon_sym_for] = ACTIONS(137), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_while] = ACTIONS(137), - [anon_sym_next] = ACTIONS(137), - [anon_sym_break] = ACTIONS(137), - [anon_sym_fallthrough] = ACTIONS(137), - [anon_sym_return] = ACTIONS(137), - [anon_sym_add] = ACTIONS(137), - [anon_sym_delete] = ACTIONS(137), - [anon_sym_local] = ACTIONS(137), - [anon_sym_when] = ACTIONS(137), - [anon_sym_assert] = ACTIONS(137), - [anon_sym_table] = ACTIONS(137), - [anon_sym_set] = ACTIONS(137), - [anon_sym_vector] = ACTIONS(137), - [anon_sym_function] = ACTIONS(137), - [anon_sym_hook] = ACTIONS(137), - [anon_sym_DOLLAR] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(135), - [anon_sym_PLUS_PLUS] = ACTIONS(135), - [anon_sym_DASH_DASH] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_copy] = ACTIONS(137), - [anon_sym_schedule] = ACTIONS(137), - [aux_sym_constant_token1] = ACTIONS(137), - [anon_sym_T] = ACTIONS(137), - [anon_sym_F] = ACTIONS(137), - [anon_sym_ATdeprecated] = ACTIONS(135), - [anon_sym_ATload] = ACTIONS(137), - [anon_sym_ATload_DASHsigs] = ACTIONS(135), - [anon_sym_ATload_DASHplugin] = ACTIONS(135), - [anon_sym_ATunload] = ACTIONS(135), - [anon_sym_ATprefixes] = ACTIONS(135), - [anon_sym_ATif] = ACTIONS(137), - [anon_sym_ATifdef] = ACTIONS(135), - [anon_sym_ATifndef] = ACTIONS(135), - [anon_sym_ATendif] = ACTIONS(135), - [anon_sym_ATelse] = ACTIONS(135), - [anon_sym_ATDIR] = ACTIONS(135), - [anon_sym_ATFILENAME] = ACTIONS(135), - [sym_id] = ACTIONS(137), - [sym_pattern] = ACTIONS(135), - [sym_ipv6] = ACTIONS(137), - [sym_ipv4] = ACTIONS(137), - [sym_port] = ACTIONS(135), - [sym_floatp] = ACTIONS(137), - [sym_hex] = ACTIONS(137), - [sym_hostname] = ACTIONS(137), - [aux_sym_string_token1] = ACTIONS(135), + [766] = { + [ts_builtin_sym_end] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [765] = { + [767] = { [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(1696), [anon_sym_RBRACE] = ACTIONS(1696), @@ -73854,6 +74455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATifndef] = ACTIONS(1696), [anon_sym_ATendif] = ACTIONS(1696), [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), [anon_sym_ATDIR] = ACTIONS(1696), [anon_sym_ATFILENAME] = ACTIONS(1696), [sym_id] = ACTIONS(1698), @@ -73871,207 +74473,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [766] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [767] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, [768] = { - [ts_builtin_sym_end] = ACTIONS(1648), - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74079,68 +74544,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [769] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74148,68 +74614,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [770] = { - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_RBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74217,68 +74684,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [771] = { - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74286,68 +74754,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74355,68 +74824,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74424,68 +74894,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [774] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74493,68 +74964,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [775] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74562,68 +75034,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [776] = { - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_record] = ACTIONS(1432), - [anon_sym_print] = ACTIONS(1432), - [anon_sym_event] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_next] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_fallthrough] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_add] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_local] = ACTIONS(1432), - [anon_sym_when] = ACTIONS(1432), - [anon_sym_assert] = ACTIONS(1432), - [anon_sym_table] = ACTIONS(1432), - [anon_sym_set] = ACTIONS(1432), - [anon_sym_vector] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1432), - [anon_sym_hook] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_copy] = ACTIONS(1432), - [anon_sym_schedule] = ACTIONS(1432), - [aux_sym_constant_token1] = ACTIONS(1432), - [anon_sym_T] = ACTIONS(1432), - [anon_sym_F] = ACTIONS(1432), - [anon_sym_ATdeprecated] = ACTIONS(1430), - [anon_sym_ATload] = ACTIONS(1432), - [anon_sym_ATload_DASHsigs] = ACTIONS(1430), - [anon_sym_ATload_DASHplugin] = ACTIONS(1430), - [anon_sym_ATunload] = ACTIONS(1430), - [anon_sym_ATprefixes] = ACTIONS(1430), - [anon_sym_ATif] = ACTIONS(1432), - [anon_sym_ATifdef] = ACTIONS(1430), - [anon_sym_ATifndef] = ACTIONS(1430), - [anon_sym_ATendif] = ACTIONS(1430), - [anon_sym_ATelse] = ACTIONS(1430), - [anon_sym_ATDIR] = ACTIONS(1430), - [anon_sym_ATFILENAME] = ACTIONS(1430), - [sym_id] = ACTIONS(1432), - [sym_pattern] = ACTIONS(1430), - [sym_ipv6] = ACTIONS(1432), - [sym_ipv4] = ACTIONS(1432), - [sym_port] = ACTIONS(1430), - [sym_floatp] = ACTIONS(1432), - [sym_hex] = ACTIONS(1432), - [sym_hostname] = ACTIONS(1432), - [aux_sym_string_token1] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74631,68 +75104,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74700,68 +75174,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [778] = { - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74769,68 +75244,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [779] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74838,68 +75314,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [780] = { - [ts_builtin_sym_end] = ACTIONS(1664), - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74907,68 +75384,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [781] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -74976,1858 +75454,2931 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nl] = ACTIONS(3), }, [782] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [783] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [784] = { + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_RBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [785] = { + [ts_builtin_sym_end] = ACTIONS(1546), + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [783] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [786] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [787] = { + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [785] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [788] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [789] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_record] = ACTIONS(1470), + [anon_sym_print] = ACTIONS(1470), + [anon_sym_event] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_next] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_fallthrough] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_add] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_local] = ACTIONS(1470), + [anon_sym_when] = ACTIONS(1470), + [anon_sym_assert] = ACTIONS(1470), + [anon_sym_table] = ACTIONS(1470), + [anon_sym_set] = ACTIONS(1470), + [anon_sym_vector] = ACTIONS(1470), + [anon_sym_function] = ACTIONS(1470), + [anon_sym_hook] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_copy] = ACTIONS(1470), + [anon_sym_schedule] = ACTIONS(1470), + [aux_sym_constant_token1] = ACTIONS(1470), + [anon_sym_T] = ACTIONS(1470), + [anon_sym_F] = ACTIONS(1470), + [anon_sym_ATdeprecated] = ACTIONS(1468), + [anon_sym_ATload] = ACTIONS(1470), + [anon_sym_ATload_DASHsigs] = ACTIONS(1468), + [anon_sym_ATload_DASHplugin] = ACTIONS(1468), + [anon_sym_ATunload] = ACTIONS(1468), + [anon_sym_ATprefixes] = ACTIONS(1468), + [anon_sym_ATif] = ACTIONS(1470), + [anon_sym_ATifdef] = ACTIONS(1468), + [anon_sym_ATifndef] = ACTIONS(1468), + [anon_sym_ATendif] = ACTIONS(1468), + [anon_sym_ATelse] = ACTIONS(1468), + [anon_sym_ATpragma] = ACTIONS(1468), + [anon_sym_ATDIR] = ACTIONS(1468), + [anon_sym_ATFILENAME] = ACTIONS(1468), + [sym_id] = ACTIONS(1470), + [sym_pattern] = ACTIONS(1468), + [sym_ipv6] = ACTIONS(1470), + [sym_ipv4] = ACTIONS(1470), + [sym_port] = ACTIONS(1468), + [sym_floatp] = ACTIONS(1470), + [sym_hex] = ACTIONS(1470), + [sym_hostname] = ACTIONS(1470), + [aux_sym_string_token1] = ACTIONS(1468), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [787] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [790] = { + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_RBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1422), - [anon_sym_record] = ACTIONS(1422), - [anon_sym_print] = ACTIONS(1422), - [anon_sym_event] = ACTIONS(1422), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_for] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1422), - [anon_sym_next] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_fallthrough] = ACTIONS(1422), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_add] = ACTIONS(1422), - [anon_sym_delete] = ACTIONS(1422), - [anon_sym_local] = ACTIONS(1422), - [anon_sym_when] = ACTIONS(1422), - [anon_sym_assert] = ACTIONS(1422), - [anon_sym_table] = ACTIONS(1422), - [anon_sym_set] = ACTIONS(1422), - [anon_sym_vector] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_hook] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_copy] = ACTIONS(1422), - [anon_sym_schedule] = ACTIONS(1422), - [aux_sym_constant_token1] = ACTIONS(1422), - [anon_sym_T] = ACTIONS(1422), - [anon_sym_F] = ACTIONS(1422), - [anon_sym_ATdeprecated] = ACTIONS(1420), - [anon_sym_ATload] = ACTIONS(1422), - [anon_sym_ATload_DASHsigs] = ACTIONS(1420), - [anon_sym_ATload_DASHplugin] = ACTIONS(1420), - [anon_sym_ATunload] = ACTIONS(1420), - [anon_sym_ATprefixes] = ACTIONS(1420), - [anon_sym_ATif] = ACTIONS(1422), - [anon_sym_ATifdef] = ACTIONS(1420), - [anon_sym_ATifndef] = ACTIONS(1420), - [anon_sym_ATendif] = ACTIONS(1420), - [anon_sym_ATelse] = ACTIONS(1420), - [anon_sym_ATDIR] = ACTIONS(1420), - [anon_sym_ATFILENAME] = ACTIONS(1420), - [sym_id] = ACTIONS(1422), - [sym_pattern] = ACTIONS(1420), - [sym_ipv6] = ACTIONS(1422), - [sym_ipv4] = ACTIONS(1422), - [sym_port] = ACTIONS(1420), - [sym_floatp] = ACTIONS(1422), - [sym_hex] = ACTIONS(1422), - [sym_hostname] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), + [791] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [789] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [792] = { + [ts_builtin_sym_end] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1512), - [anon_sym_record] = ACTIONS(1512), - [anon_sym_print] = ACTIONS(1512), - [anon_sym_event] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_next] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_fallthrough] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_add] = ACTIONS(1512), - [anon_sym_delete] = ACTIONS(1512), - [anon_sym_local] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1512), - [anon_sym_assert] = ACTIONS(1512), - [anon_sym_table] = ACTIONS(1512), - [anon_sym_set] = ACTIONS(1512), - [anon_sym_vector] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_hook] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_copy] = ACTIONS(1512), - [anon_sym_schedule] = ACTIONS(1512), - [aux_sym_constant_token1] = ACTIONS(1512), - [anon_sym_T] = ACTIONS(1512), - [anon_sym_F] = ACTIONS(1512), - [anon_sym_ATdeprecated] = ACTIONS(1510), - [anon_sym_ATload] = ACTIONS(1512), - [anon_sym_ATload_DASHsigs] = ACTIONS(1510), - [anon_sym_ATload_DASHplugin] = ACTIONS(1510), - [anon_sym_ATunload] = ACTIONS(1510), - [anon_sym_ATprefixes] = ACTIONS(1510), - [anon_sym_ATif] = ACTIONS(1512), - [anon_sym_ATifdef] = ACTIONS(1510), - [anon_sym_ATifndef] = ACTIONS(1510), - [anon_sym_ATendif] = ACTIONS(1510), - [anon_sym_ATelse] = ACTIONS(1510), - [anon_sym_ATDIR] = ACTIONS(1510), - [anon_sym_ATFILENAME] = ACTIONS(1510), - [sym_id] = ACTIONS(1512), - [sym_pattern] = ACTIONS(1510), - [sym_ipv6] = ACTIONS(1512), - [sym_ipv4] = ACTIONS(1512), - [sym_port] = ACTIONS(1510), - [sym_floatp] = ACTIONS(1512), - [sym_hex] = ACTIONS(1512), - [sym_hostname] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), + [793] = { + [ts_builtin_sym_end] = ACTIONS(1718), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_record] = ACTIONS(1720), + [anon_sym_print] = ACTIONS(1720), + [anon_sym_event] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_switch] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_next] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_fallthrough] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_add] = ACTIONS(1720), + [anon_sym_delete] = ACTIONS(1720), + [anon_sym_local] = ACTIONS(1720), + [anon_sym_when] = ACTIONS(1720), + [anon_sym_assert] = ACTIONS(1720), + [anon_sym_table] = ACTIONS(1720), + [anon_sym_set] = ACTIONS(1720), + [anon_sym_vector] = ACTIONS(1720), + [anon_sym_function] = ACTIONS(1720), + [anon_sym_hook] = ACTIONS(1720), + [anon_sym_DOLLAR] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_PLUS_PLUS] = ACTIONS(1718), + [anon_sym_DASH_DASH] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_TILDE] = ACTIONS(1718), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_copy] = ACTIONS(1720), + [anon_sym_schedule] = ACTIONS(1720), + [aux_sym_constant_token1] = ACTIONS(1720), + [anon_sym_T] = ACTIONS(1720), + [anon_sym_F] = ACTIONS(1720), + [anon_sym_ATdeprecated] = ACTIONS(1718), + [anon_sym_ATload] = ACTIONS(1720), + [anon_sym_ATload_DASHsigs] = ACTIONS(1718), + [anon_sym_ATload_DASHplugin] = ACTIONS(1718), + [anon_sym_ATunload] = ACTIONS(1718), + [anon_sym_ATprefixes] = ACTIONS(1718), + [anon_sym_ATif] = ACTIONS(1720), + [anon_sym_ATifdef] = ACTIONS(1718), + [anon_sym_ATifndef] = ACTIONS(1718), + [anon_sym_ATendif] = ACTIONS(1718), + [anon_sym_ATelse] = ACTIONS(1718), + [anon_sym_ATpragma] = ACTIONS(1718), + [anon_sym_ATDIR] = ACTIONS(1718), + [anon_sym_ATFILENAME] = ACTIONS(1718), + [sym_id] = ACTIONS(1720), + [sym_pattern] = ACTIONS(1718), + [sym_ipv6] = ACTIONS(1720), + [sym_ipv4] = ACTIONS(1720), + [sym_port] = ACTIONS(1718), + [sym_floatp] = ACTIONS(1720), + [sym_hex] = ACTIONS(1720), + [sym_hostname] = ACTIONS(1720), + [aux_sym_string_token1] = ACTIONS(1718), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [791] = { - [anon_sym_SEMI] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_const] = ACTIONS(1676), - [anon_sym_record] = ACTIONS(1676), - [anon_sym_print] = ACTIONS(1676), - [anon_sym_event] = ACTIONS(1676), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1676), - [anon_sym_next] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_fallthrough] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_add] = ACTIONS(1676), - [anon_sym_delete] = ACTIONS(1676), - [anon_sym_local] = ACTIONS(1676), - [anon_sym_when] = ACTIONS(1676), - [anon_sym_assert] = ACTIONS(1676), - [anon_sym_table] = ACTIONS(1676), - [anon_sym_set] = ACTIONS(1676), - [anon_sym_vector] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_hook] = ACTIONS(1676), - [anon_sym_DOLLAR] = ACTIONS(1674), - [anon_sym_PIPE] = ACTIONS(1674), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1674), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_copy] = ACTIONS(1676), - [anon_sym_schedule] = ACTIONS(1676), - [aux_sym_constant_token1] = ACTIONS(1676), - [anon_sym_T] = ACTIONS(1676), - [anon_sym_F] = ACTIONS(1676), - [anon_sym_ATdeprecated] = ACTIONS(1674), - [anon_sym_ATload] = ACTIONS(1676), - [anon_sym_ATload_DASHsigs] = ACTIONS(1674), - [anon_sym_ATload_DASHplugin] = ACTIONS(1674), - [anon_sym_ATunload] = ACTIONS(1674), - [anon_sym_ATprefixes] = ACTIONS(1674), - [anon_sym_ATif] = ACTIONS(1676), - [anon_sym_ATifdef] = ACTIONS(1674), - [anon_sym_ATifndef] = ACTIONS(1674), - [anon_sym_ATendif] = ACTIONS(1674), - [anon_sym_ATelse] = ACTIONS(1674), - [anon_sym_ATDIR] = ACTIONS(1674), - [anon_sym_ATFILENAME] = ACTIONS(1674), - [sym_id] = ACTIONS(1676), - [sym_pattern] = ACTIONS(1674), - [sym_ipv6] = ACTIONS(1676), - [sym_ipv4] = ACTIONS(1676), - [sym_port] = ACTIONS(1674), - [sym_floatp] = ACTIONS(1676), - [sym_hex] = ACTIONS(1676), - [sym_hostname] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1674), + [794] = { + [ts_builtin_sym_end] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [792] = { - [anon_sym_SEMI] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_record] = ACTIONS(1684), - [anon_sym_print] = ACTIONS(1684), - [anon_sym_event] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1684), - [anon_sym_next] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_fallthrough] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_add] = ACTIONS(1684), - [anon_sym_delete] = ACTIONS(1684), - [anon_sym_local] = ACTIONS(1684), - [anon_sym_when] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_table] = ACTIONS(1684), - [anon_sym_set] = ACTIONS(1684), - [anon_sym_vector] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_hook] = ACTIONS(1684), - [anon_sym_DOLLAR] = ACTIONS(1682), - [anon_sym_PIPE] = ACTIONS(1682), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1682), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_copy] = ACTIONS(1684), - [anon_sym_schedule] = ACTIONS(1684), - [aux_sym_constant_token1] = ACTIONS(1684), - [anon_sym_T] = ACTIONS(1684), - [anon_sym_F] = ACTIONS(1684), - [anon_sym_ATdeprecated] = ACTIONS(1682), - [anon_sym_ATload] = ACTIONS(1684), - [anon_sym_ATload_DASHsigs] = ACTIONS(1682), - [anon_sym_ATload_DASHplugin] = ACTIONS(1682), - [anon_sym_ATunload] = ACTIONS(1682), - [anon_sym_ATprefixes] = ACTIONS(1682), - [anon_sym_ATif] = ACTIONS(1684), - [anon_sym_ATifdef] = ACTIONS(1682), - [anon_sym_ATifndef] = ACTIONS(1682), - [anon_sym_ATendif] = ACTIONS(1682), - [anon_sym_ATelse] = ACTIONS(1682), - [anon_sym_ATDIR] = ACTIONS(1682), - [anon_sym_ATFILENAME] = ACTIONS(1682), - [sym_id] = ACTIONS(1684), - [sym_pattern] = ACTIONS(1682), - [sym_ipv6] = ACTIONS(1684), - [sym_ipv4] = ACTIONS(1684), - [sym_port] = ACTIONS(1682), - [sym_floatp] = ACTIONS(1684), - [sym_hex] = ACTIONS(1684), - [sym_hostname] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1682), + [795] = { + [anon_sym_SEMI] = ACTIONS(1546), + [anon_sym_LBRACE] = ACTIONS(1546), + [anon_sym_RBRACE] = ACTIONS(1546), + [anon_sym_const] = ACTIONS(1548), + [anon_sym_record] = ACTIONS(1548), + [anon_sym_print] = ACTIONS(1548), + [anon_sym_event] = ACTIONS(1548), + [anon_sym_if] = ACTIONS(1548), + [anon_sym_LPAREN] = ACTIONS(1546), + [anon_sym_switch] = ACTIONS(1548), + [anon_sym_for] = ACTIONS(1548), + [anon_sym_LBRACK] = ACTIONS(1546), + [anon_sym_while] = ACTIONS(1548), + [anon_sym_next] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1548), + [anon_sym_fallthrough] = ACTIONS(1548), + [anon_sym_return] = ACTIONS(1548), + [anon_sym_add] = ACTIONS(1548), + [anon_sym_delete] = ACTIONS(1548), + [anon_sym_local] = ACTIONS(1548), + [anon_sym_when] = ACTIONS(1548), + [anon_sym_assert] = ACTIONS(1548), + [anon_sym_table] = ACTIONS(1548), + [anon_sym_set] = ACTIONS(1548), + [anon_sym_vector] = ACTIONS(1548), + [anon_sym_function] = ACTIONS(1548), + [anon_sym_hook] = ACTIONS(1548), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_PIPE] = ACTIONS(1546), + [anon_sym_PLUS_PLUS] = ACTIONS(1546), + [anon_sym_DASH_DASH] = ACTIONS(1546), + [anon_sym_BANG] = ACTIONS(1546), + [anon_sym_TILDE] = ACTIONS(1546), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_copy] = ACTIONS(1548), + [anon_sym_schedule] = ACTIONS(1548), + [aux_sym_constant_token1] = ACTIONS(1548), + [anon_sym_T] = ACTIONS(1548), + [anon_sym_F] = ACTIONS(1548), + [anon_sym_ATdeprecated] = ACTIONS(1546), + [anon_sym_ATload] = ACTIONS(1548), + [anon_sym_ATload_DASHsigs] = ACTIONS(1546), + [anon_sym_ATload_DASHplugin] = ACTIONS(1546), + [anon_sym_ATunload] = ACTIONS(1546), + [anon_sym_ATprefixes] = ACTIONS(1546), + [anon_sym_ATif] = ACTIONS(1548), + [anon_sym_ATifdef] = ACTIONS(1546), + [anon_sym_ATifndef] = ACTIONS(1546), + [anon_sym_ATendif] = ACTIONS(1546), + [anon_sym_ATelse] = ACTIONS(1546), + [anon_sym_ATpragma] = ACTIONS(1546), + [anon_sym_ATDIR] = ACTIONS(1546), + [anon_sym_ATFILENAME] = ACTIONS(1546), + [sym_id] = ACTIONS(1548), + [sym_pattern] = ACTIONS(1546), + [sym_ipv6] = ACTIONS(1548), + [sym_ipv4] = ACTIONS(1548), + [sym_port] = ACTIONS(1546), + [sym_floatp] = ACTIONS(1548), + [sym_hex] = ACTIONS(1548), + [sym_hostname] = ACTIONS(1548), + [aux_sym_string_token1] = ACTIONS(1546), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [793] = { - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [796] = { + [ts_builtin_sym_end] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [anon_sym_SEMI] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1670), - [anon_sym_record] = ACTIONS(1670), - [anon_sym_print] = ACTIONS(1670), - [anon_sym_event] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1670), - [anon_sym_for] = ACTIONS(1670), - [anon_sym_LBRACK] = ACTIONS(1668), - [anon_sym_while] = ACTIONS(1670), - [anon_sym_next] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1670), - [anon_sym_fallthrough] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_add] = ACTIONS(1670), - [anon_sym_delete] = ACTIONS(1670), - [anon_sym_local] = ACTIONS(1670), - [anon_sym_when] = ACTIONS(1670), - [anon_sym_assert] = ACTIONS(1670), - [anon_sym_table] = ACTIONS(1670), - [anon_sym_set] = ACTIONS(1670), - [anon_sym_vector] = ACTIONS(1670), - [anon_sym_function] = ACTIONS(1670), - [anon_sym_hook] = ACTIONS(1670), - [anon_sym_DOLLAR] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1668), - [anon_sym_DASH_DASH] = ACTIONS(1668), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1670), - [anon_sym_PLUS] = ACTIONS(1670), - [anon_sym_copy] = ACTIONS(1670), - [anon_sym_schedule] = ACTIONS(1670), - [aux_sym_constant_token1] = ACTIONS(1670), - [anon_sym_T] = ACTIONS(1670), - [anon_sym_F] = ACTIONS(1670), - [anon_sym_ATdeprecated] = ACTIONS(1668), - [anon_sym_ATload] = ACTIONS(1670), - [anon_sym_ATload_DASHsigs] = ACTIONS(1668), - [anon_sym_ATload_DASHplugin] = ACTIONS(1668), - [anon_sym_ATunload] = ACTIONS(1668), - [anon_sym_ATprefixes] = ACTIONS(1668), - [anon_sym_ATif] = ACTIONS(1670), - [anon_sym_ATifdef] = ACTIONS(1668), - [anon_sym_ATifndef] = ACTIONS(1668), - [anon_sym_ATendif] = ACTIONS(1668), - [anon_sym_ATelse] = ACTIONS(1668), - [anon_sym_ATDIR] = ACTIONS(1668), - [anon_sym_ATFILENAME] = ACTIONS(1668), - [sym_id] = ACTIONS(1670), - [sym_pattern] = ACTIONS(1668), - [sym_ipv6] = ACTIONS(1670), - [sym_ipv4] = ACTIONS(1670), - [sym_port] = ACTIONS(1668), - [sym_floatp] = ACTIONS(1670), - [sym_hex] = ACTIONS(1670), - [sym_hostname] = ACTIONS(1670), - [aux_sym_string_token1] = ACTIONS(1668), + [797] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), + [798] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(1696), - [anon_sym_SEMI] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_const] = ACTIONS(1698), - [anon_sym_record] = ACTIONS(1698), - [anon_sym_print] = ACTIONS(1698), - [anon_sym_event] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1698), - [anon_sym_LPAREN] = ACTIONS(1696), - [anon_sym_switch] = ACTIONS(1698), - [anon_sym_for] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_while] = ACTIONS(1698), - [anon_sym_next] = ACTIONS(1698), - [anon_sym_break] = ACTIONS(1698), - [anon_sym_fallthrough] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_add] = ACTIONS(1698), - [anon_sym_delete] = ACTIONS(1698), - [anon_sym_local] = ACTIONS(1698), - [anon_sym_when] = ACTIONS(1698), - [anon_sym_assert] = ACTIONS(1698), - [anon_sym_table] = ACTIONS(1698), - [anon_sym_set] = ACTIONS(1698), - [anon_sym_vector] = ACTIONS(1698), - [anon_sym_function] = ACTIONS(1698), - [anon_sym_hook] = ACTIONS(1698), - [anon_sym_DOLLAR] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1696), - [anon_sym_DASH_DASH] = ACTIONS(1696), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1698), - [anon_sym_copy] = ACTIONS(1698), - [anon_sym_schedule] = ACTIONS(1698), - [aux_sym_constant_token1] = ACTIONS(1698), - [anon_sym_T] = ACTIONS(1698), - [anon_sym_F] = ACTIONS(1698), - [anon_sym_ATdeprecated] = ACTIONS(1696), - [anon_sym_ATload] = ACTIONS(1698), - [anon_sym_ATload_DASHsigs] = ACTIONS(1696), - [anon_sym_ATload_DASHplugin] = ACTIONS(1696), - [anon_sym_ATunload] = ACTIONS(1696), - [anon_sym_ATprefixes] = ACTIONS(1696), - [anon_sym_ATif] = ACTIONS(1698), - [anon_sym_ATifdef] = ACTIONS(1696), - [anon_sym_ATifndef] = ACTIONS(1696), - [anon_sym_ATendif] = ACTIONS(1696), - [anon_sym_ATelse] = ACTIONS(1696), - [anon_sym_ATDIR] = ACTIONS(1696), - [anon_sym_ATFILENAME] = ACTIONS(1696), - [sym_id] = ACTIONS(1698), - [sym_pattern] = ACTIONS(1696), - [sym_ipv6] = ACTIONS(1698), - [sym_ipv4] = ACTIONS(1698), - [sym_port] = ACTIONS(1696), - [sym_floatp] = ACTIONS(1698), - [sym_hex] = ACTIONS(1698), - [sym_hostname] = ACTIONS(1698), - [aux_sym_string_token1] = ACTIONS(1696), + [799] = { + [anon_sym_SEMI] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1462), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1464), + [anon_sym_record] = ACTIONS(1464), + [anon_sym_print] = ACTIONS(1464), + [anon_sym_event] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1464), + [anon_sym_for] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1464), + [anon_sym_next] = ACTIONS(1464), + [anon_sym_break] = ACTIONS(1464), + [anon_sym_fallthrough] = ACTIONS(1464), + [anon_sym_return] = ACTIONS(1464), + [anon_sym_add] = ACTIONS(1464), + [anon_sym_delete] = ACTIONS(1464), + [anon_sym_local] = ACTIONS(1464), + [anon_sym_when] = ACTIONS(1464), + [anon_sym_assert] = ACTIONS(1464), + [anon_sym_table] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_vector] = ACTIONS(1464), + [anon_sym_function] = ACTIONS(1464), + [anon_sym_hook] = ACTIONS(1464), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PIPE] = ACTIONS(1462), + [anon_sym_PLUS_PLUS] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1462), + [anon_sym_BANG] = ACTIONS(1462), + [anon_sym_TILDE] = ACTIONS(1462), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_copy] = ACTIONS(1464), + [anon_sym_schedule] = ACTIONS(1464), + [aux_sym_constant_token1] = ACTIONS(1464), + [anon_sym_T] = ACTIONS(1464), + [anon_sym_F] = ACTIONS(1464), + [anon_sym_ATdeprecated] = ACTIONS(1462), + [anon_sym_ATload] = ACTIONS(1464), + [anon_sym_ATload_DASHsigs] = ACTIONS(1462), + [anon_sym_ATload_DASHplugin] = ACTIONS(1462), + [anon_sym_ATunload] = ACTIONS(1462), + [anon_sym_ATprefixes] = ACTIONS(1462), + [anon_sym_ATif] = ACTIONS(1464), + [anon_sym_ATifdef] = ACTIONS(1462), + [anon_sym_ATifndef] = ACTIONS(1462), + [anon_sym_ATendif] = ACTIONS(1462), + [anon_sym_ATelse] = ACTIONS(1462), + [anon_sym_ATpragma] = ACTIONS(1462), + [anon_sym_ATDIR] = ACTIONS(1462), + [anon_sym_ATFILENAME] = ACTIONS(1462), + [sym_id] = ACTIONS(1464), + [sym_pattern] = ACTIONS(1462), + [sym_ipv6] = ACTIONS(1464), + [sym_ipv4] = ACTIONS(1464), + [sym_port] = ACTIONS(1462), + [sym_floatp] = ACTIONS(1464), + [sym_hex] = ACTIONS(1464), + [sym_hostname] = ACTIONS(1464), + [aux_sym_string_token1] = ACTIONS(1462), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [797] = { - [anon_sym_SEMI] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_RBRACE] = ACTIONS(1664), - [anon_sym_const] = ACTIONS(1666), - [anon_sym_record] = ACTIONS(1666), - [anon_sym_print] = ACTIONS(1666), - [anon_sym_event] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_for] = ACTIONS(1666), - [anon_sym_LBRACK] = ACTIONS(1664), - [anon_sym_while] = ACTIONS(1666), - [anon_sym_next] = ACTIONS(1666), - [anon_sym_break] = ACTIONS(1666), - [anon_sym_fallthrough] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1666), - [anon_sym_add] = ACTIONS(1666), - [anon_sym_delete] = ACTIONS(1666), - [anon_sym_local] = ACTIONS(1666), - [anon_sym_when] = ACTIONS(1666), - [anon_sym_assert] = ACTIONS(1666), - [anon_sym_table] = ACTIONS(1666), - [anon_sym_set] = ACTIONS(1666), - [anon_sym_vector] = ACTIONS(1666), - [anon_sym_function] = ACTIONS(1666), - [anon_sym_hook] = ACTIONS(1666), - [anon_sym_DOLLAR] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1664), - [anon_sym_DASH_DASH] = ACTIONS(1664), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1666), - [anon_sym_PLUS] = ACTIONS(1666), - [anon_sym_copy] = ACTIONS(1666), - [anon_sym_schedule] = ACTIONS(1666), - [aux_sym_constant_token1] = ACTIONS(1666), - [anon_sym_T] = ACTIONS(1666), - [anon_sym_F] = ACTIONS(1666), - [anon_sym_ATdeprecated] = ACTIONS(1664), - [anon_sym_ATload] = ACTIONS(1666), - [anon_sym_ATload_DASHsigs] = ACTIONS(1664), - [anon_sym_ATload_DASHplugin] = ACTIONS(1664), - [anon_sym_ATunload] = ACTIONS(1664), - [anon_sym_ATprefixes] = ACTIONS(1664), - [anon_sym_ATif] = ACTIONS(1666), - [anon_sym_ATifdef] = ACTIONS(1664), - [anon_sym_ATifndef] = ACTIONS(1664), - [anon_sym_ATendif] = ACTIONS(1664), - [anon_sym_ATelse] = ACTIONS(1664), - [anon_sym_ATDIR] = ACTIONS(1664), - [anon_sym_ATFILENAME] = ACTIONS(1664), - [sym_id] = ACTIONS(1666), - [sym_pattern] = ACTIONS(1664), - [sym_ipv6] = ACTIONS(1666), - [sym_ipv4] = ACTIONS(1666), - [sym_port] = ACTIONS(1664), - [sym_floatp] = ACTIONS(1666), - [sym_hex] = ACTIONS(1666), - [sym_hostname] = ACTIONS(1666), - [aux_sym_string_token1] = ACTIONS(1664), + [800] = { + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_RBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [anon_sym_SEMI] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_const] = ACTIONS(1680), - [anon_sym_record] = ACTIONS(1680), - [anon_sym_print] = ACTIONS(1680), - [anon_sym_event] = ACTIONS(1680), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_for] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_next] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_fallthrough] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_add] = ACTIONS(1680), - [anon_sym_delete] = ACTIONS(1680), - [anon_sym_local] = ACTIONS(1680), - [anon_sym_when] = ACTIONS(1680), - [anon_sym_assert] = ACTIONS(1680), - [anon_sym_table] = ACTIONS(1680), - [anon_sym_set] = ACTIONS(1680), - [anon_sym_vector] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_hook] = ACTIONS(1680), - [anon_sym_DOLLAR] = ACTIONS(1678), - [anon_sym_PIPE] = ACTIONS(1678), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1678), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_copy] = ACTIONS(1680), - [anon_sym_schedule] = ACTIONS(1680), - [aux_sym_constant_token1] = ACTIONS(1680), - [anon_sym_T] = ACTIONS(1680), - [anon_sym_F] = ACTIONS(1680), - [anon_sym_ATdeprecated] = ACTIONS(1678), - [anon_sym_ATload] = ACTIONS(1680), - [anon_sym_ATload_DASHsigs] = ACTIONS(1678), - [anon_sym_ATload_DASHplugin] = ACTIONS(1678), - [anon_sym_ATunload] = ACTIONS(1678), - [anon_sym_ATprefixes] = ACTIONS(1678), - [anon_sym_ATif] = ACTIONS(1680), - [anon_sym_ATifdef] = ACTIONS(1678), - [anon_sym_ATifndef] = ACTIONS(1678), - [anon_sym_ATendif] = ACTIONS(1678), - [anon_sym_ATelse] = ACTIONS(1678), - [anon_sym_ATDIR] = ACTIONS(1678), - [anon_sym_ATFILENAME] = ACTIONS(1678), - [sym_id] = ACTIONS(1680), - [sym_pattern] = ACTIONS(1678), - [sym_ipv6] = ACTIONS(1680), - [sym_ipv4] = ACTIONS(1680), - [sym_port] = ACTIONS(1678), - [sym_floatp] = ACTIONS(1680), - [sym_hex] = ACTIONS(1680), - [sym_hostname] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1678), + [801] = { + [ts_builtin_sym_end] = ACTIONS(1726), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [799] = { - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [802] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [800] = { - [anon_sym_SEMI] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1648), - [anon_sym_RBRACE] = ACTIONS(1648), - [anon_sym_const] = ACTIONS(1650), - [anon_sym_record] = ACTIONS(1650), - [anon_sym_print] = ACTIONS(1650), - [anon_sym_event] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1650), - [anon_sym_LPAREN] = ACTIONS(1648), - [anon_sym_switch] = ACTIONS(1650), - [anon_sym_for] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1648), - [anon_sym_while] = ACTIONS(1650), - [anon_sym_next] = ACTIONS(1650), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_fallthrough] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1650), - [anon_sym_add] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1650), - [anon_sym_local] = ACTIONS(1650), - [anon_sym_when] = ACTIONS(1650), - [anon_sym_assert] = ACTIONS(1650), - [anon_sym_table] = ACTIONS(1650), - [anon_sym_set] = ACTIONS(1650), - [anon_sym_vector] = ACTIONS(1650), - [anon_sym_function] = ACTIONS(1650), - [anon_sym_hook] = ACTIONS(1650), - [anon_sym_DOLLAR] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1648), - [anon_sym_DASH_DASH] = ACTIONS(1648), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1650), - [anon_sym_PLUS] = ACTIONS(1650), - [anon_sym_copy] = ACTIONS(1650), - [anon_sym_schedule] = ACTIONS(1650), - [aux_sym_constant_token1] = ACTIONS(1650), - [anon_sym_T] = ACTIONS(1650), - [anon_sym_F] = ACTIONS(1650), - [anon_sym_ATdeprecated] = ACTIONS(1648), - [anon_sym_ATload] = ACTIONS(1650), - [anon_sym_ATload_DASHsigs] = ACTIONS(1648), - [anon_sym_ATload_DASHplugin] = ACTIONS(1648), - [anon_sym_ATunload] = ACTIONS(1648), - [anon_sym_ATprefixes] = ACTIONS(1648), - [anon_sym_ATif] = ACTIONS(1650), - [anon_sym_ATifdef] = ACTIONS(1648), - [anon_sym_ATifndef] = ACTIONS(1648), - [anon_sym_ATendif] = ACTIONS(1648), - [anon_sym_ATelse] = ACTIONS(1648), - [anon_sym_ATDIR] = ACTIONS(1648), - [anon_sym_ATFILENAME] = ACTIONS(1648), - [sym_id] = ACTIONS(1650), - [sym_pattern] = ACTIONS(1648), - [sym_ipv6] = ACTIONS(1650), - [sym_ipv4] = ACTIONS(1650), - [sym_port] = ACTIONS(1648), - [sym_floatp] = ACTIONS(1650), - [sym_hex] = ACTIONS(1650), - [sym_hostname] = ACTIONS(1650), - [aux_sym_string_token1] = ACTIONS(1648), + [803] = { + [ts_builtin_sym_end] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_record] = ACTIONS(1734), + [anon_sym_print] = ACTIONS(1734), + [anon_sym_event] = ACTIONS(1734), + [anon_sym_if] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_for] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1734), + [anon_sym_next] = ACTIONS(1734), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_fallthrough] = ACTIONS(1734), + [anon_sym_return] = ACTIONS(1734), + [anon_sym_add] = ACTIONS(1734), + [anon_sym_delete] = ACTIONS(1734), + [anon_sym_local] = ACTIONS(1734), + [anon_sym_when] = ACTIONS(1734), + [anon_sym_assert] = ACTIONS(1734), + [anon_sym_table] = ACTIONS(1734), + [anon_sym_set] = ACTIONS(1734), + [anon_sym_vector] = ACTIONS(1734), + [anon_sym_function] = ACTIONS(1734), + [anon_sym_hook] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_copy] = ACTIONS(1734), + [anon_sym_schedule] = ACTIONS(1734), + [aux_sym_constant_token1] = ACTIONS(1734), + [anon_sym_T] = ACTIONS(1734), + [anon_sym_F] = ACTIONS(1734), + [anon_sym_ATdeprecated] = ACTIONS(1732), + [anon_sym_ATload] = ACTIONS(1734), + [anon_sym_ATload_DASHsigs] = ACTIONS(1732), + [anon_sym_ATload_DASHplugin] = ACTIONS(1732), + [anon_sym_ATunload] = ACTIONS(1732), + [anon_sym_ATprefixes] = ACTIONS(1732), + [anon_sym_ATif] = ACTIONS(1734), + [anon_sym_ATifdef] = ACTIONS(1732), + [anon_sym_ATifndef] = ACTIONS(1732), + [anon_sym_ATendif] = ACTIONS(1732), + [anon_sym_ATelse] = ACTIONS(1732), + [anon_sym_ATpragma] = ACTIONS(1732), + [anon_sym_ATDIR] = ACTIONS(1732), + [anon_sym_ATFILENAME] = ACTIONS(1732), + [sym_id] = ACTIONS(1734), + [sym_pattern] = ACTIONS(1732), + [sym_ipv6] = ACTIONS(1734), + [sym_ipv4] = ACTIONS(1734), + [sym_port] = ACTIONS(1732), + [sym_floatp] = ACTIONS(1734), + [sym_hex] = ACTIONS(1734), + [sym_hostname] = ACTIONS(1734), + [aux_sym_string_token1] = ACTIONS(1732), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [801] = { - [anon_sym_SEMI] = ACTIONS(1706), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_RBRACE] = ACTIONS(1706), - [anon_sym_const] = ACTIONS(1708), - [anon_sym_record] = ACTIONS(1708), - [anon_sym_print] = ACTIONS(1708), - [anon_sym_event] = ACTIONS(1708), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_for] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), - [anon_sym_next] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_fallthrough] = ACTIONS(1708), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_add] = ACTIONS(1708), - [anon_sym_delete] = ACTIONS(1708), - [anon_sym_local] = ACTIONS(1708), - [anon_sym_when] = ACTIONS(1708), - [anon_sym_assert] = ACTIONS(1708), - [anon_sym_table] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_vector] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_hook] = ACTIONS(1708), - [anon_sym_DOLLAR] = ACTIONS(1706), - [anon_sym_PIPE] = ACTIONS(1706), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1706), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_copy] = ACTIONS(1708), - [anon_sym_schedule] = ACTIONS(1708), - [aux_sym_constant_token1] = ACTIONS(1708), - [anon_sym_T] = ACTIONS(1708), - [anon_sym_F] = ACTIONS(1708), - [anon_sym_ATdeprecated] = ACTIONS(1706), - [anon_sym_ATload] = ACTIONS(1708), - [anon_sym_ATload_DASHsigs] = ACTIONS(1706), - [anon_sym_ATload_DASHplugin] = ACTIONS(1706), - [anon_sym_ATunload] = ACTIONS(1706), - [anon_sym_ATprefixes] = ACTIONS(1706), - [anon_sym_ATif] = ACTIONS(1708), - [anon_sym_ATifdef] = ACTIONS(1706), - [anon_sym_ATifndef] = ACTIONS(1706), - [anon_sym_ATendif] = ACTIONS(1706), - [anon_sym_ATelse] = ACTIONS(1706), - [anon_sym_ATDIR] = ACTIONS(1706), - [anon_sym_ATFILENAME] = ACTIONS(1706), - [sym_id] = ACTIONS(1708), - [sym_pattern] = ACTIONS(1706), - [sym_ipv6] = ACTIONS(1708), - [sym_ipv4] = ACTIONS(1708), - [sym_port] = ACTIONS(1706), - [sym_floatp] = ACTIONS(1708), - [sym_hex] = ACTIONS(1708), - [sym_hostname] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1706), + [804] = { + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [802] = { - [ts_builtin_sym_end] = ACTIONS(1606), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_record] = ACTIONS(1608), - [anon_sym_print] = ACTIONS(1608), - [anon_sym_event] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_switch] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_next] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_fallthrough] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_add] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(1608), - [anon_sym_local] = ACTIONS(1608), - [anon_sym_when] = ACTIONS(1608), - [anon_sym_assert] = ACTIONS(1608), - [anon_sym_table] = ACTIONS(1608), - [anon_sym_set] = ACTIONS(1608), - [anon_sym_vector] = ACTIONS(1608), - [anon_sym_function] = ACTIONS(1608), - [anon_sym_hook] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1606), - [anon_sym_PIPE] = ACTIONS(1606), - [anon_sym_PLUS_PLUS] = ACTIONS(1606), - [anon_sym_DASH_DASH] = ACTIONS(1606), - [anon_sym_BANG] = ACTIONS(1606), - [anon_sym_TILDE] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_PLUS] = ACTIONS(1608), - [anon_sym_copy] = ACTIONS(1608), - [anon_sym_schedule] = ACTIONS(1608), - [aux_sym_constant_token1] = ACTIONS(1608), - [anon_sym_T] = ACTIONS(1608), - [anon_sym_F] = ACTIONS(1608), - [anon_sym_ATdeprecated] = ACTIONS(1606), - [anon_sym_ATload] = ACTIONS(1608), - [anon_sym_ATload_DASHsigs] = ACTIONS(1606), - [anon_sym_ATload_DASHplugin] = ACTIONS(1606), - [anon_sym_ATunload] = ACTIONS(1606), - [anon_sym_ATprefixes] = ACTIONS(1606), - [anon_sym_ATif] = ACTIONS(1608), - [anon_sym_ATifdef] = ACTIONS(1606), - [anon_sym_ATifndef] = ACTIONS(1606), - [anon_sym_ATendif] = ACTIONS(1606), - [anon_sym_ATelse] = ACTIONS(1606), - [anon_sym_ATDIR] = ACTIONS(1606), - [anon_sym_ATFILENAME] = ACTIONS(1606), - [sym_id] = ACTIONS(1608), - [sym_pattern] = ACTIONS(1606), - [sym_ipv6] = ACTIONS(1608), - [sym_ipv4] = ACTIONS(1608), - [sym_port] = ACTIONS(1606), - [sym_floatp] = ACTIONS(1608), - [sym_hex] = ACTIONS(1608), - [sym_hostname] = ACTIONS(1608), - [aux_sym_string_token1] = ACTIONS(1606), + [805] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [803] = { - [anon_sym_SEMI] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_RBRACE] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1692), - [anon_sym_record] = ACTIONS(1692), - [anon_sym_print] = ACTIONS(1692), - [anon_sym_event] = ACTIONS(1692), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_for] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_while] = ACTIONS(1692), - [anon_sym_next] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_fallthrough] = ACTIONS(1692), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_add] = ACTIONS(1692), - [anon_sym_delete] = ACTIONS(1692), - [anon_sym_local] = ACTIONS(1692), - [anon_sym_when] = ACTIONS(1692), - [anon_sym_assert] = ACTIONS(1692), - [anon_sym_table] = ACTIONS(1692), - [anon_sym_set] = ACTIONS(1692), - [anon_sym_vector] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_hook] = ACTIONS(1692), - [anon_sym_DOLLAR] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_copy] = ACTIONS(1692), - [anon_sym_schedule] = ACTIONS(1692), - [aux_sym_constant_token1] = ACTIONS(1692), - [anon_sym_T] = ACTIONS(1692), - [anon_sym_F] = ACTIONS(1692), - [anon_sym_ATdeprecated] = ACTIONS(1690), - [anon_sym_ATload] = ACTIONS(1692), - [anon_sym_ATload_DASHsigs] = ACTIONS(1690), - [anon_sym_ATload_DASHplugin] = ACTIONS(1690), - [anon_sym_ATunload] = ACTIONS(1690), - [anon_sym_ATprefixes] = ACTIONS(1690), - [anon_sym_ATif] = ACTIONS(1692), - [anon_sym_ATifdef] = ACTIONS(1690), - [anon_sym_ATifndef] = ACTIONS(1690), - [anon_sym_ATendif] = ACTIONS(1690), - [anon_sym_ATelse] = ACTIONS(1690), - [anon_sym_ATDIR] = ACTIONS(1690), - [anon_sym_ATFILENAME] = ACTIONS(1690), - [sym_id] = ACTIONS(1692), - [sym_pattern] = ACTIONS(1690), - [sym_ipv6] = ACTIONS(1692), - [sym_ipv4] = ACTIONS(1692), - [sym_port] = ACTIONS(1690), - [sym_floatp] = ACTIONS(1692), - [sym_hex] = ACTIONS(1692), - [sym_hostname] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1690), + [806] = { + [ts_builtin_sym_end] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [804] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [anon_sym_SEMI] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1656), - [anon_sym_const] = ACTIONS(1658), - [anon_sym_record] = ACTIONS(1658), - [anon_sym_print] = ACTIONS(1658), - [anon_sym_event] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1656), - [anon_sym_switch] = ACTIONS(1658), - [anon_sym_for] = ACTIONS(1658), - [anon_sym_LBRACK] = ACTIONS(1656), - [anon_sym_while] = ACTIONS(1658), - [anon_sym_next] = ACTIONS(1658), - [anon_sym_break] = ACTIONS(1658), - [anon_sym_fallthrough] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1658), - [anon_sym_add] = ACTIONS(1658), - [anon_sym_delete] = ACTIONS(1658), - [anon_sym_local] = ACTIONS(1658), - [anon_sym_when] = ACTIONS(1658), - [anon_sym_assert] = ACTIONS(1658), - [anon_sym_table] = ACTIONS(1658), - [anon_sym_set] = ACTIONS(1658), - [anon_sym_vector] = ACTIONS(1658), - [anon_sym_function] = ACTIONS(1658), - [anon_sym_hook] = ACTIONS(1658), - [anon_sym_DOLLAR] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_copy] = ACTIONS(1658), - [anon_sym_schedule] = ACTIONS(1658), - [aux_sym_constant_token1] = ACTIONS(1658), - [anon_sym_T] = ACTIONS(1658), - [anon_sym_F] = ACTIONS(1658), - [anon_sym_ATdeprecated] = ACTIONS(1656), - [anon_sym_ATload] = ACTIONS(1658), - [anon_sym_ATload_DASHsigs] = ACTIONS(1656), - [anon_sym_ATload_DASHplugin] = ACTIONS(1656), - [anon_sym_ATunload] = ACTIONS(1656), - [anon_sym_ATprefixes] = ACTIONS(1656), - [anon_sym_ATif] = ACTIONS(1658), - [anon_sym_ATifdef] = ACTIONS(1656), - [anon_sym_ATifndef] = ACTIONS(1656), - [anon_sym_ATendif] = ACTIONS(1656), - [anon_sym_ATelse] = ACTIONS(1656), - [anon_sym_ATDIR] = ACTIONS(1656), - [anon_sym_ATFILENAME] = ACTIONS(1656), - [sym_id] = ACTIONS(1658), - [sym_pattern] = ACTIONS(1656), - [sym_ipv6] = ACTIONS(1658), - [sym_ipv4] = ACTIONS(1658), - [sym_port] = ACTIONS(1656), - [sym_floatp] = ACTIONS(1658), - [sym_hex] = ACTIONS(1658), - [sym_hostname] = ACTIONS(1658), - [aux_sym_string_token1] = ACTIONS(1656), + [807] = { + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_record] = ACTIONS(1480), + [anon_sym_print] = ACTIONS(1480), + [anon_sym_event] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_next] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_fallthrough] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_add] = ACTIONS(1480), + [anon_sym_delete] = ACTIONS(1480), + [anon_sym_local] = ACTIONS(1480), + [anon_sym_when] = ACTIONS(1480), + [anon_sym_assert] = ACTIONS(1480), + [anon_sym_table] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_vector] = ACTIONS(1480), + [anon_sym_function] = ACTIONS(1480), + [anon_sym_hook] = ACTIONS(1480), + [anon_sym_DOLLAR] = ACTIONS(1478), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_PLUS_PLUS] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1478), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_copy] = ACTIONS(1480), + [anon_sym_schedule] = ACTIONS(1480), + [aux_sym_constant_token1] = ACTIONS(1480), + [anon_sym_T] = ACTIONS(1480), + [anon_sym_F] = ACTIONS(1480), + [anon_sym_ATdeprecated] = ACTIONS(1478), + [anon_sym_ATload] = ACTIONS(1480), + [anon_sym_ATload_DASHsigs] = ACTIONS(1478), + [anon_sym_ATload_DASHplugin] = ACTIONS(1478), + [anon_sym_ATunload] = ACTIONS(1478), + [anon_sym_ATprefixes] = ACTIONS(1478), + [anon_sym_ATif] = ACTIONS(1480), + [anon_sym_ATifdef] = ACTIONS(1478), + [anon_sym_ATifndef] = ACTIONS(1478), + [anon_sym_ATendif] = ACTIONS(1478), + [anon_sym_ATelse] = ACTIONS(1478), + [anon_sym_ATpragma] = ACTIONS(1478), + [anon_sym_ATDIR] = ACTIONS(1478), + [anon_sym_ATFILENAME] = ACTIONS(1478), + [sym_id] = ACTIONS(1480), + [sym_pattern] = ACTIONS(1478), + [sym_ipv6] = ACTIONS(1480), + [sym_ipv4] = ACTIONS(1480), + [sym_port] = ACTIONS(1478), + [sym_floatp] = ACTIONS(1480), + [sym_hex] = ACTIONS(1480), + [sym_hostname] = ACTIONS(1480), + [aux_sym_string_token1] = ACTIONS(1478), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [805] = { - [sym_expr] = STATE(1279), - [sym_constant] = STATE(1269), - [sym_string_directive] = STATE(824), - [sym_integer] = STATE(1236), - [sym_interval] = STATE(1254), - [sym_string] = STATE(1254), - [anon_sym_LBRACE] = ACTIONS(111), - [anon_sym_PLUS_EQ] = ACTIONS(111), + [808] = { + [ts_builtin_sym_end] = ACTIONS(1722), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_record] = ACTIONS(1724), + [anon_sym_print] = ACTIONS(1724), + [anon_sym_event] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_switch] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_next] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_fallthrough] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_add] = ACTIONS(1724), + [anon_sym_delete] = ACTIONS(1724), + [anon_sym_local] = ACTIONS(1724), + [anon_sym_when] = ACTIONS(1724), + [anon_sym_assert] = ACTIONS(1724), + [anon_sym_table] = ACTIONS(1724), + [anon_sym_set] = ACTIONS(1724), + [anon_sym_vector] = ACTIONS(1724), + [anon_sym_function] = ACTIONS(1724), + [anon_sym_hook] = ACTIONS(1724), + [anon_sym_DOLLAR] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_PLUS_PLUS] = ACTIONS(1722), + [anon_sym_DASH_DASH] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_TILDE] = ACTIONS(1722), + [anon_sym_DASH] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1724), + [anon_sym_copy] = ACTIONS(1724), + [anon_sym_schedule] = ACTIONS(1724), + [aux_sym_constant_token1] = ACTIONS(1724), + [anon_sym_T] = ACTIONS(1724), + [anon_sym_F] = ACTIONS(1724), + [anon_sym_ATdeprecated] = ACTIONS(1722), + [anon_sym_ATload] = ACTIONS(1724), + [anon_sym_ATload_DASHsigs] = ACTIONS(1722), + [anon_sym_ATload_DASHplugin] = ACTIONS(1722), + [anon_sym_ATunload] = ACTIONS(1722), + [anon_sym_ATprefixes] = ACTIONS(1722), + [anon_sym_ATif] = ACTIONS(1724), + [anon_sym_ATifdef] = ACTIONS(1722), + [anon_sym_ATifndef] = ACTIONS(1722), + [anon_sym_ATendif] = ACTIONS(1722), + [anon_sym_ATelse] = ACTIONS(1722), + [anon_sym_ATpragma] = ACTIONS(1722), + [anon_sym_ATDIR] = ACTIONS(1722), + [anon_sym_ATFILENAME] = ACTIONS(1722), + [sym_id] = ACTIONS(1724), + [sym_pattern] = ACTIONS(1722), + [sym_ipv6] = ACTIONS(1724), + [sym_ipv4] = ACTIONS(1724), + [sym_port] = ACTIONS(1722), + [sym_floatp] = ACTIONS(1724), + [sym_hex] = ACTIONS(1724), + [sym_hostname] = ACTIONS(1724), + [aux_sym_string_token1] = ACTIONS(1722), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_LBRACE] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_record] = ACTIONS(1694), + [anon_sym_print] = ACTIONS(1694), + [anon_sym_event] = ACTIONS(1694), + [anon_sym_if] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1692), + [anon_sym_switch] = ACTIONS(1694), + [anon_sym_for] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1694), + [anon_sym_next] = ACTIONS(1694), + [anon_sym_break] = ACTIONS(1694), + [anon_sym_fallthrough] = ACTIONS(1694), + [anon_sym_return] = ACTIONS(1694), + [anon_sym_add] = ACTIONS(1694), + [anon_sym_delete] = ACTIONS(1694), + [anon_sym_local] = ACTIONS(1694), + [anon_sym_when] = ACTIONS(1694), + [anon_sym_assert] = ACTIONS(1694), + [anon_sym_table] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1694), + [anon_sym_vector] = ACTIONS(1694), + [anon_sym_function] = ACTIONS(1694), + [anon_sym_hook] = ACTIONS(1694), + [anon_sym_DOLLAR] = ACTIONS(1692), + [anon_sym_PIPE] = ACTIONS(1692), + [anon_sym_PLUS_PLUS] = ACTIONS(1692), + [anon_sym_DASH_DASH] = ACTIONS(1692), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1694), + [anon_sym_copy] = ACTIONS(1694), + [anon_sym_schedule] = ACTIONS(1694), + [aux_sym_constant_token1] = ACTIONS(1694), + [anon_sym_T] = ACTIONS(1694), + [anon_sym_F] = ACTIONS(1694), + [anon_sym_ATdeprecated] = ACTIONS(1692), + [anon_sym_ATload] = ACTIONS(1694), + [anon_sym_ATload_DASHsigs] = ACTIONS(1692), + [anon_sym_ATload_DASHplugin] = ACTIONS(1692), + [anon_sym_ATunload] = ACTIONS(1692), + [anon_sym_ATprefixes] = ACTIONS(1692), + [anon_sym_ATif] = ACTIONS(1694), + [anon_sym_ATifdef] = ACTIONS(1692), + [anon_sym_ATifndef] = ACTIONS(1692), + [anon_sym_ATendif] = ACTIONS(1692), + [anon_sym_ATelse] = ACTIONS(1692), + [anon_sym_ATpragma] = ACTIONS(1692), + [anon_sym_ATDIR] = ACTIONS(1692), + [anon_sym_ATFILENAME] = ACTIONS(1692), + [sym_id] = ACTIONS(1694), + [sym_pattern] = ACTIONS(1692), + [sym_ipv6] = ACTIONS(1694), + [sym_ipv4] = ACTIONS(1694), + [sym_port] = ACTIONS(1692), + [sym_floatp] = ACTIONS(1694), + [sym_hex] = ACTIONS(1694), + [sym_hostname] = ACTIONS(1694), + [aux_sym_string_token1] = ACTIONS(1692), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [811] = { + [ts_builtin_sym_end] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_LBRACE] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1702), + [anon_sym_record] = ACTIONS(1702), + [anon_sym_print] = ACTIONS(1702), + [anon_sym_event] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1700), + [anon_sym_switch] = ACTIONS(1702), + [anon_sym_for] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1702), + [anon_sym_next] = ACTIONS(1702), + [anon_sym_break] = ACTIONS(1702), + [anon_sym_fallthrough] = ACTIONS(1702), + [anon_sym_return] = ACTIONS(1702), + [anon_sym_add] = ACTIONS(1702), + [anon_sym_delete] = ACTIONS(1702), + [anon_sym_local] = ACTIONS(1702), + [anon_sym_when] = ACTIONS(1702), + [anon_sym_assert] = ACTIONS(1702), + [anon_sym_table] = ACTIONS(1702), + [anon_sym_set] = ACTIONS(1702), + [anon_sym_vector] = ACTIONS(1702), + [anon_sym_function] = ACTIONS(1702), + [anon_sym_hook] = ACTIONS(1702), + [anon_sym_DOLLAR] = ACTIONS(1700), + [anon_sym_PIPE] = ACTIONS(1700), + [anon_sym_PLUS_PLUS] = ACTIONS(1700), + [anon_sym_DASH_DASH] = ACTIONS(1700), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_copy] = ACTIONS(1702), + [anon_sym_schedule] = ACTIONS(1702), + [aux_sym_constant_token1] = ACTIONS(1702), + [anon_sym_T] = ACTIONS(1702), + [anon_sym_F] = ACTIONS(1702), + [anon_sym_ATdeprecated] = ACTIONS(1700), + [anon_sym_ATload] = ACTIONS(1702), + [anon_sym_ATload_DASHsigs] = ACTIONS(1700), + [anon_sym_ATload_DASHplugin] = ACTIONS(1700), + [anon_sym_ATunload] = ACTIONS(1700), + [anon_sym_ATprefixes] = ACTIONS(1700), + [anon_sym_ATif] = ACTIONS(1702), + [anon_sym_ATifdef] = ACTIONS(1700), + [anon_sym_ATifndef] = ACTIONS(1700), + [anon_sym_ATendif] = ACTIONS(1700), + [anon_sym_ATelse] = ACTIONS(1700), + [anon_sym_ATpragma] = ACTIONS(1700), + [anon_sym_ATDIR] = ACTIONS(1700), + [anon_sym_ATFILENAME] = ACTIONS(1700), + [sym_id] = ACTIONS(1702), + [sym_pattern] = ACTIONS(1700), + [sym_ipv6] = ACTIONS(1702), + [sym_ipv4] = ACTIONS(1702), + [sym_port] = ACTIONS(1700), + [sym_floatp] = ACTIONS(1702), + [sym_hex] = ACTIONS(1702), + [sym_hostname] = ACTIONS(1702), + [aux_sym_string_token1] = ACTIONS(1700), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [812] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [813] = { + [anon_sym_SEMI] = ACTIONS(1696), + [anon_sym_LBRACE] = ACTIONS(1696), + [anon_sym_RBRACE] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1698), + [anon_sym_record] = ACTIONS(1698), + [anon_sym_print] = ACTIONS(1698), + [anon_sym_event] = ACTIONS(1698), + [anon_sym_if] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1696), + [anon_sym_switch] = ACTIONS(1698), + [anon_sym_for] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1698), + [anon_sym_next] = ACTIONS(1698), + [anon_sym_break] = ACTIONS(1698), + [anon_sym_fallthrough] = ACTIONS(1698), + [anon_sym_return] = ACTIONS(1698), + [anon_sym_add] = ACTIONS(1698), + [anon_sym_delete] = ACTIONS(1698), + [anon_sym_local] = ACTIONS(1698), + [anon_sym_when] = ACTIONS(1698), + [anon_sym_assert] = ACTIONS(1698), + [anon_sym_table] = ACTIONS(1698), + [anon_sym_set] = ACTIONS(1698), + [anon_sym_vector] = ACTIONS(1698), + [anon_sym_function] = ACTIONS(1698), + [anon_sym_hook] = ACTIONS(1698), + [anon_sym_DOLLAR] = ACTIONS(1696), + [anon_sym_PIPE] = ACTIONS(1696), + [anon_sym_PLUS_PLUS] = ACTIONS(1696), + [anon_sym_DASH_DASH] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1696), + [anon_sym_TILDE] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_PLUS] = ACTIONS(1698), + [anon_sym_copy] = ACTIONS(1698), + [anon_sym_schedule] = ACTIONS(1698), + [aux_sym_constant_token1] = ACTIONS(1698), + [anon_sym_T] = ACTIONS(1698), + [anon_sym_F] = ACTIONS(1698), + [anon_sym_ATdeprecated] = ACTIONS(1696), + [anon_sym_ATload] = ACTIONS(1698), + [anon_sym_ATload_DASHsigs] = ACTIONS(1696), + [anon_sym_ATload_DASHplugin] = ACTIONS(1696), + [anon_sym_ATunload] = ACTIONS(1696), + [anon_sym_ATprefixes] = ACTIONS(1696), + [anon_sym_ATif] = ACTIONS(1698), + [anon_sym_ATifdef] = ACTIONS(1696), + [anon_sym_ATifndef] = ACTIONS(1696), + [anon_sym_ATendif] = ACTIONS(1696), + [anon_sym_ATelse] = ACTIONS(1696), + [anon_sym_ATpragma] = ACTIONS(1696), + [anon_sym_ATDIR] = ACTIONS(1696), + [anon_sym_ATFILENAME] = ACTIONS(1696), + [sym_id] = ACTIONS(1698), + [sym_pattern] = ACTIONS(1696), + [sym_ipv6] = ACTIONS(1698), + [sym_ipv4] = ACTIONS(1698), + [sym_port] = ACTIONS(1696), + [sym_floatp] = ACTIONS(1698), + [sym_hex] = ACTIONS(1698), + [sym_hostname] = ACTIONS(1698), + [aux_sym_string_token1] = ACTIONS(1696), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [814] = { + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_record] = ACTIONS(1728), + [anon_sym_print] = ACTIONS(1728), + [anon_sym_event] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_switch] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_next] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_fallthrough] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_add] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1728), + [anon_sym_local] = ACTIONS(1728), + [anon_sym_when] = ACTIONS(1728), + [anon_sym_assert] = ACTIONS(1728), + [anon_sym_table] = ACTIONS(1728), + [anon_sym_set] = ACTIONS(1728), + [anon_sym_vector] = ACTIONS(1728), + [anon_sym_function] = ACTIONS(1728), + [anon_sym_hook] = ACTIONS(1728), + [anon_sym_DOLLAR] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_PLUS_PLUS] = ACTIONS(1726), + [anon_sym_DASH_DASH] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_TILDE] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1728), + [anon_sym_copy] = ACTIONS(1728), + [anon_sym_schedule] = ACTIONS(1728), + [aux_sym_constant_token1] = ACTIONS(1728), + [anon_sym_T] = ACTIONS(1728), + [anon_sym_F] = ACTIONS(1728), + [anon_sym_ATdeprecated] = ACTIONS(1726), + [anon_sym_ATload] = ACTIONS(1728), + [anon_sym_ATload_DASHsigs] = ACTIONS(1726), + [anon_sym_ATload_DASHplugin] = ACTIONS(1726), + [anon_sym_ATunload] = ACTIONS(1726), + [anon_sym_ATprefixes] = ACTIONS(1726), + [anon_sym_ATif] = ACTIONS(1728), + [anon_sym_ATifdef] = ACTIONS(1726), + [anon_sym_ATifndef] = ACTIONS(1726), + [anon_sym_ATendif] = ACTIONS(1726), + [anon_sym_ATelse] = ACTIONS(1726), + [anon_sym_ATpragma] = ACTIONS(1726), + [anon_sym_ATDIR] = ACTIONS(1726), + [anon_sym_ATFILENAME] = ACTIONS(1726), + [sym_id] = ACTIONS(1728), + [sym_pattern] = ACTIONS(1726), + [sym_ipv6] = ACTIONS(1728), + [sym_ipv4] = ACTIONS(1728), + [sym_port] = ACTIONS(1726), + [sym_floatp] = ACTIONS(1728), + [sym_hex] = ACTIONS(1728), + [sym_hostname] = ACTIONS(1728), + [aux_sym_string_token1] = ACTIONS(1726), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [815] = { + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACE] = ACTIONS(1704), + [anon_sym_RBRACE] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1706), + [anon_sym_record] = ACTIONS(1706), + [anon_sym_print] = ACTIONS(1706), + [anon_sym_event] = ACTIONS(1706), + [anon_sym_if] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1704), + [anon_sym_switch] = ACTIONS(1706), + [anon_sym_for] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1706), + [anon_sym_next] = ACTIONS(1706), + [anon_sym_break] = ACTIONS(1706), + [anon_sym_fallthrough] = ACTIONS(1706), + [anon_sym_return] = ACTIONS(1706), + [anon_sym_add] = ACTIONS(1706), + [anon_sym_delete] = ACTIONS(1706), + [anon_sym_local] = ACTIONS(1706), + [anon_sym_when] = ACTIONS(1706), + [anon_sym_assert] = ACTIONS(1706), + [anon_sym_table] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_vector] = ACTIONS(1706), + [anon_sym_function] = ACTIONS(1706), + [anon_sym_hook] = ACTIONS(1706), + [anon_sym_DOLLAR] = ACTIONS(1704), + [anon_sym_PIPE] = ACTIONS(1704), + [anon_sym_PLUS_PLUS] = ACTIONS(1704), + [anon_sym_DASH_DASH] = ACTIONS(1704), + [anon_sym_BANG] = ACTIONS(1704), + [anon_sym_TILDE] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_copy] = ACTIONS(1706), + [anon_sym_schedule] = ACTIONS(1706), + [aux_sym_constant_token1] = ACTIONS(1706), + [anon_sym_T] = ACTIONS(1706), + [anon_sym_F] = ACTIONS(1706), + [anon_sym_ATdeprecated] = ACTIONS(1704), + [anon_sym_ATload] = ACTIONS(1706), + [anon_sym_ATload_DASHsigs] = ACTIONS(1704), + [anon_sym_ATload_DASHplugin] = ACTIONS(1704), + [anon_sym_ATunload] = ACTIONS(1704), + [anon_sym_ATprefixes] = ACTIONS(1704), + [anon_sym_ATif] = ACTIONS(1706), + [anon_sym_ATifdef] = ACTIONS(1704), + [anon_sym_ATifndef] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(1704), + [anon_sym_ATelse] = ACTIONS(1704), + [anon_sym_ATpragma] = ACTIONS(1704), + [anon_sym_ATDIR] = ACTIONS(1704), + [anon_sym_ATFILENAME] = ACTIONS(1704), + [sym_id] = ACTIONS(1706), + [sym_pattern] = ACTIONS(1704), + [sym_ipv6] = ACTIONS(1706), + [sym_ipv4] = ACTIONS(1706), + [sym_port] = ACTIONS(1704), + [sym_floatp] = ACTIONS(1706), + [sym_hex] = ACTIONS(1706), + [sym_hostname] = ACTIONS(1706), + [aux_sym_string_token1] = ACTIONS(1704), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(1742), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_record] = ACTIONS(1744), + [anon_sym_print] = ACTIONS(1744), + [anon_sym_event] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_next] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_fallthrough] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_add] = ACTIONS(1744), + [anon_sym_delete] = ACTIONS(1744), + [anon_sym_local] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_assert] = ACTIONS(1744), + [anon_sym_table] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_vector] = ACTIONS(1744), + [anon_sym_function] = ACTIONS(1744), + [anon_sym_hook] = ACTIONS(1744), + [anon_sym_DOLLAR] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_PLUS_PLUS] = ACTIONS(1742), + [anon_sym_DASH_DASH] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_TILDE] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_copy] = ACTIONS(1744), + [anon_sym_schedule] = ACTIONS(1744), + [aux_sym_constant_token1] = ACTIONS(1744), + [anon_sym_T] = ACTIONS(1744), + [anon_sym_F] = ACTIONS(1744), + [anon_sym_ATdeprecated] = ACTIONS(1742), + [anon_sym_ATload] = ACTIONS(1744), + [anon_sym_ATload_DASHsigs] = ACTIONS(1742), + [anon_sym_ATload_DASHplugin] = ACTIONS(1742), + [anon_sym_ATunload] = ACTIONS(1742), + [anon_sym_ATprefixes] = ACTIONS(1742), + [anon_sym_ATif] = ACTIONS(1744), + [anon_sym_ATifdef] = ACTIONS(1742), + [anon_sym_ATifndef] = ACTIONS(1742), + [anon_sym_ATendif] = ACTIONS(1742), + [anon_sym_ATelse] = ACTIONS(1742), + [anon_sym_ATpragma] = ACTIONS(1742), + [anon_sym_ATDIR] = ACTIONS(1742), + [anon_sym_ATFILENAME] = ACTIONS(1742), + [sym_id] = ACTIONS(1744), + [sym_pattern] = ACTIONS(1742), + [sym_ipv6] = ACTIONS(1744), + [sym_ipv4] = ACTIONS(1744), + [sym_port] = ACTIONS(1742), + [sym_floatp] = ACTIONS(1744), + [sym_hex] = ACTIONS(1744), + [sym_hostname] = ACTIONS(1744), + [aux_sym_string_token1] = ACTIONS(1742), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [817] = { + [anon_sym_SEMI] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_const] = ACTIONS(139), + [anon_sym_record] = ACTIONS(139), + [anon_sym_print] = ACTIONS(139), + [anon_sym_event] = ACTIONS(139), + [anon_sym_if] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_switch] = ACTIONS(139), + [anon_sym_for] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_next] = ACTIONS(139), + [anon_sym_break] = ACTIONS(139), + [anon_sym_fallthrough] = ACTIONS(139), + [anon_sym_return] = ACTIONS(139), + [anon_sym_add] = ACTIONS(139), + [anon_sym_delete] = ACTIONS(139), + [anon_sym_local] = ACTIONS(139), + [anon_sym_when] = ACTIONS(139), + [anon_sym_assert] = ACTIONS(139), + [anon_sym_table] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [anon_sym_vector] = ACTIONS(139), + [anon_sym_function] = ACTIONS(139), + [anon_sym_hook] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(137), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PLUS_PLUS] = ACTIONS(137), + [anon_sym_DASH_DASH] = ACTIONS(137), + [anon_sym_BANG] = ACTIONS(137), + [anon_sym_TILDE] = ACTIONS(137), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_copy] = ACTIONS(139), + [anon_sym_schedule] = ACTIONS(139), + [aux_sym_constant_token1] = ACTIONS(139), + [anon_sym_T] = ACTIONS(139), + [anon_sym_F] = ACTIONS(139), + [anon_sym_ATdeprecated] = ACTIONS(137), + [anon_sym_ATload] = ACTIONS(139), + [anon_sym_ATload_DASHsigs] = ACTIONS(137), + [anon_sym_ATload_DASHplugin] = ACTIONS(137), + [anon_sym_ATunload] = ACTIONS(137), + [anon_sym_ATprefixes] = ACTIONS(137), + [anon_sym_ATif] = ACTIONS(139), + [anon_sym_ATifdef] = ACTIONS(137), + [anon_sym_ATifndef] = ACTIONS(137), + [anon_sym_ATendif] = ACTIONS(137), + [anon_sym_ATelse] = ACTIONS(137), + [anon_sym_ATpragma] = ACTIONS(137), + [anon_sym_ATDIR] = ACTIONS(137), + [anon_sym_ATFILENAME] = ACTIONS(137), + [sym_id] = ACTIONS(139), + [sym_pattern] = ACTIONS(137), + [sym_ipv6] = ACTIONS(139), + [sym_ipv4] = ACTIONS(139), + [sym_port] = ACTIONS(137), + [sym_floatp] = ACTIONS(139), + [sym_hex] = ACTIONS(139), + [sym_hostname] = ACTIONS(139), + [aux_sym_string_token1] = ACTIONS(137), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [818] = { + [ts_builtin_sym_end] = ACTIONS(1710), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_record] = ACTIONS(1712), + [anon_sym_print] = ACTIONS(1712), + [anon_sym_event] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_next] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_fallthrough] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_add] = ACTIONS(1712), + [anon_sym_delete] = ACTIONS(1712), + [anon_sym_local] = ACTIONS(1712), + [anon_sym_when] = ACTIONS(1712), + [anon_sym_assert] = ACTIONS(1712), + [anon_sym_table] = ACTIONS(1712), + [anon_sym_set] = ACTIONS(1712), + [anon_sym_vector] = ACTIONS(1712), + [anon_sym_function] = ACTIONS(1712), + [anon_sym_hook] = ACTIONS(1712), + [anon_sym_DOLLAR] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_PLUS_PLUS] = ACTIONS(1710), + [anon_sym_DASH_DASH] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_TILDE] = ACTIONS(1710), + [anon_sym_DASH] = ACTIONS(1712), + [anon_sym_PLUS] = ACTIONS(1712), + [anon_sym_copy] = ACTIONS(1712), + [anon_sym_schedule] = ACTIONS(1712), + [aux_sym_constant_token1] = ACTIONS(1712), + [anon_sym_T] = ACTIONS(1712), + [anon_sym_F] = ACTIONS(1712), + [anon_sym_ATdeprecated] = ACTIONS(1710), + [anon_sym_ATload] = ACTIONS(1712), + [anon_sym_ATload_DASHsigs] = ACTIONS(1710), + [anon_sym_ATload_DASHplugin] = ACTIONS(1710), + [anon_sym_ATunload] = ACTIONS(1710), + [anon_sym_ATprefixes] = ACTIONS(1710), + [anon_sym_ATif] = ACTIONS(1712), + [anon_sym_ATifdef] = ACTIONS(1710), + [anon_sym_ATifndef] = ACTIONS(1710), + [anon_sym_ATendif] = ACTIONS(1710), + [anon_sym_ATelse] = ACTIONS(1710), + [anon_sym_ATpragma] = ACTIONS(1710), + [anon_sym_ATDIR] = ACTIONS(1710), + [anon_sym_ATFILENAME] = ACTIONS(1710), + [sym_id] = ACTIONS(1712), + [sym_pattern] = ACTIONS(1710), + [sym_ipv6] = ACTIONS(1712), + [sym_ipv4] = ACTIONS(1712), + [sym_port] = ACTIONS(1710), + [sym_floatp] = ACTIONS(1712), + [sym_hex] = ACTIONS(1712), + [sym_hostname] = ACTIONS(1712), + [aux_sym_string_token1] = ACTIONS(1710), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [819] = { + [ts_builtin_sym_end] = ACTIONS(1644), + [anon_sym_SEMI] = ACTIONS(1644), + [anon_sym_LBRACE] = ACTIONS(1644), + [anon_sym_const] = ACTIONS(1646), + [anon_sym_record] = ACTIONS(1646), + [anon_sym_print] = ACTIONS(1646), + [anon_sym_event] = ACTIONS(1646), + [anon_sym_if] = ACTIONS(1646), + [anon_sym_LPAREN] = ACTIONS(1644), + [anon_sym_switch] = ACTIONS(1646), + [anon_sym_for] = ACTIONS(1646), + [anon_sym_LBRACK] = ACTIONS(1644), + [anon_sym_while] = ACTIONS(1646), + [anon_sym_next] = ACTIONS(1646), + [anon_sym_break] = ACTIONS(1646), + [anon_sym_fallthrough] = ACTIONS(1646), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_add] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1646), + [anon_sym_local] = ACTIONS(1646), + [anon_sym_when] = ACTIONS(1646), + [anon_sym_assert] = ACTIONS(1646), + [anon_sym_table] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_vector] = ACTIONS(1646), + [anon_sym_function] = ACTIONS(1646), + [anon_sym_hook] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_PIPE] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_BANG] = ACTIONS(1644), + [anon_sym_TILDE] = ACTIONS(1644), + [anon_sym_DASH] = ACTIONS(1646), + [anon_sym_PLUS] = ACTIONS(1646), + [anon_sym_copy] = ACTIONS(1646), + [anon_sym_schedule] = ACTIONS(1646), + [aux_sym_constant_token1] = ACTIONS(1646), + [anon_sym_T] = ACTIONS(1646), + [anon_sym_F] = ACTIONS(1646), + [anon_sym_ATdeprecated] = ACTIONS(1644), + [anon_sym_ATload] = ACTIONS(1646), + [anon_sym_ATload_DASHsigs] = ACTIONS(1644), + [anon_sym_ATload_DASHplugin] = ACTIONS(1644), + [anon_sym_ATunload] = ACTIONS(1644), + [anon_sym_ATprefixes] = ACTIONS(1644), + [anon_sym_ATif] = ACTIONS(1646), + [anon_sym_ATifdef] = ACTIONS(1644), + [anon_sym_ATifndef] = ACTIONS(1644), + [anon_sym_ATendif] = ACTIONS(1644), + [anon_sym_ATelse] = ACTIONS(1644), + [anon_sym_ATpragma] = ACTIONS(1644), + [anon_sym_ATDIR] = ACTIONS(1644), + [anon_sym_ATFILENAME] = ACTIONS(1644), + [sym_id] = ACTIONS(1646), + [sym_pattern] = ACTIONS(1644), + [sym_ipv6] = ACTIONS(1646), + [sym_ipv4] = ACTIONS(1646), + [sym_port] = ACTIONS(1644), + [sym_floatp] = ACTIONS(1646), + [sym_hex] = ACTIONS(1646), + [sym_hostname] = ACTIONS(1646), + [aux_sym_string_token1] = ACTIONS(1644), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [820] = { + [anon_sym_SEMI] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1516), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_PLUS_EQ] = ACTIONS(1516), + [anon_sym_record] = ACTIONS(1520), + [anon_sym_DASH_EQ] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1516), + [anon_sym_local] = ACTIONS(1520), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_table] = ACTIONS(1520), + [anon_sym_set] = ACTIONS(1520), + [anon_sym_vector] = ACTIONS(1520), + [anon_sym_function] = ACTIONS(1520), + [anon_sym_hook] = ACTIONS(1520), + [anon_sym_AMPdeprecated] = ACTIONS(1516), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1516), + [anon_sym_AMPerror_handler] = ACTIONS(1516), + [anon_sym_AMPis_assigned] = ACTIONS(1516), + [anon_sym_AMPis_used] = ACTIONS(1516), + [anon_sym_AMPlog] = ACTIONS(1516), + [anon_sym_AMPoptional] = ACTIONS(1516), + [anon_sym_AMPraw_output] = ACTIONS(1516), + [anon_sym_AMPredef] = ACTIONS(1516), + [anon_sym_AMPadd_func] = ACTIONS(1516), + [anon_sym_AMPbackend] = ACTIONS(1516), + [anon_sym_AMPbroker_store] = ACTIONS(1516), + [anon_sym_AMPcreate_expire] = ACTIONS(1516), + [anon_sym_AMPdefault] = ACTIONS(1516), + [anon_sym_AMPdelete_func] = ACTIONS(1516), + [anon_sym_AMPexpire_func] = ACTIONS(1516), + [anon_sym_AMPgroup] = ACTIONS(1516), + [anon_sym_AMPon_change] = ACTIONS(1516), + [anon_sym_AMPpriority] = ACTIONS(1516), + [anon_sym_AMPread_expire] = ACTIONS(1516), + [anon_sym_AMPtype_column] = ACTIONS(1516), + [anon_sym_AMPwrite_expire] = ACTIONS(1516), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_PLUS_PLUS] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_TILDE] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_copy] = ACTIONS(1520), + [anon_sym_schedule] = ACTIONS(1520), + [aux_sym_constant_token1] = ACTIONS(1520), + [anon_sym_T] = ACTIONS(1520), + [anon_sym_F] = ACTIONS(1520), + [anon_sym_ATDIR] = ACTIONS(1516), + [anon_sym_ATFILENAME] = ACTIONS(1516), + [sym_id] = ACTIONS(1520), + [sym_pattern] = ACTIONS(1516), + [sym_ipv6] = ACTIONS(1520), + [sym_ipv4] = ACTIONS(1520), + [sym_port] = ACTIONS(1516), + [sym_floatp] = ACTIONS(1520), + [sym_hex] = ACTIONS(1520), + [sym_hostname] = ACTIONS(1520), + [aux_sym_string_token1] = ACTIONS(1516), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [821] = { + [anon_sym_SEMI] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_PLUS_EQ] = ACTIONS(572), + [anon_sym_record] = ACTIONS(574), + [anon_sym_DASH_EQ] = ACTIONS(572), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_local] = ACTIONS(574), + [anon_sym_EQ] = ACTIONS(572), + [anon_sym_table] = ACTIONS(574), + [anon_sym_of] = ACTIONS(1913), + [anon_sym_set] = ACTIONS(574), + [anon_sym_vector] = ACTIONS(574), + [anon_sym_function] = ACTIONS(574), + [anon_sym_hook] = ACTIONS(574), + [anon_sym_AMPdeprecated] = ACTIONS(572), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(572), + [anon_sym_AMPerror_handler] = ACTIONS(572), + [anon_sym_AMPis_assigned] = ACTIONS(572), + [anon_sym_AMPis_used] = ACTIONS(572), + [anon_sym_AMPlog] = ACTIONS(572), + [anon_sym_AMPoptional] = ACTIONS(572), + [anon_sym_AMPraw_output] = ACTIONS(572), + [anon_sym_AMPredef] = ACTIONS(572), + [anon_sym_AMPadd_func] = ACTIONS(572), + [anon_sym_AMPbackend] = ACTIONS(572), + [anon_sym_AMPbroker_store] = ACTIONS(572), + [anon_sym_AMPcreate_expire] = ACTIONS(572), + [anon_sym_AMPdefault] = ACTIONS(572), + [anon_sym_AMPdelete_func] = ACTIONS(572), + [anon_sym_AMPexpire_func] = ACTIONS(572), + [anon_sym_AMPgroup] = ACTIONS(572), + [anon_sym_AMPon_change] = ACTIONS(572), + [anon_sym_AMPpriority] = ACTIONS(572), + [anon_sym_AMPread_expire] = ACTIONS(572), + [anon_sym_AMPtype_column] = ACTIONS(572), + [anon_sym_AMPwrite_expire] = ACTIONS(572), + [anon_sym_DOLLAR] = ACTIONS(572), + [anon_sym_PIPE] = ACTIONS(572), + [anon_sym_PLUS_PLUS] = ACTIONS(572), + [anon_sym_DASH_DASH] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(572), + [anon_sym_TILDE] = ACTIONS(572), + [anon_sym_DASH] = ACTIONS(574), + [anon_sym_PLUS] = ACTIONS(574), + [anon_sym_copy] = ACTIONS(574), + [anon_sym_schedule] = ACTIONS(574), + [aux_sym_constant_token1] = ACTIONS(574), + [anon_sym_T] = ACTIONS(574), + [anon_sym_F] = ACTIONS(574), + [anon_sym_ATDIR] = ACTIONS(572), + [anon_sym_ATFILENAME] = ACTIONS(572), + [sym_id] = ACTIONS(574), + [sym_pattern] = ACTIONS(572), + [sym_ipv6] = ACTIONS(574), + [sym_ipv4] = ACTIONS(574), + [sym_port] = ACTIONS(572), + [sym_floatp] = ACTIONS(574), + [sym_hex] = ACTIONS(574), + [sym_hostname] = ACTIONS(574), + [aux_sym_string_token1] = ACTIONS(572), + [sym_zeekygen_head_comment] = ACTIONS(3), + [sym_zeekygen_prev_comment] = ACTIONS(3), + [sym_zeekygen_next_comment] = ACTIONS(5), + [sym_minor_comment] = ACTIONS(5), + [sym_nl] = ACTIONS(3), + }, + [822] = { + [sym_expr] = STATE(1303), + [sym_constant] = STATE(1279), + [sym_string_directive] = STATE(832), + [sym_integer] = STATE(1258), + [sym_interval] = STATE(1274), + [sym_string] = STATE(1274), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_PLUS_EQ] = ACTIONS(115), [anon_sym_record] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(111), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_local] = ACTIONS(115), - [anon_sym_EQ] = ACTIONS(113), - [anon_sym_as] = ACTIONS(113), + [anon_sym_DASH_EQ] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_in] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_local] = ACTIONS(119), + [anon_sym_EQ] = ACTIONS(117), + [anon_sym_as] = ACTIONS(117), [anon_sym_table] = ACTIONS(57), [anon_sym_set] = ACTIONS(57), [anon_sym_vector] = ACTIONS(59), - [anon_sym_function] = ACTIONS(117), - [anon_sym_hook] = ACTIONS(119), - [anon_sym_DASH_EQ] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_function] = ACTIONS(121), + [anon_sym_hook] = ACTIONS(123), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(117), [anon_sym_PLUS_PLUS] = ACTIONS(69), [anon_sym_DASH_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(113), + [anon_sym_BANG] = ACTIONS(117), [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_is] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_PERCENT] = ACTIONS(111), - [anon_sym_LT] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(111), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(111), - [anon_sym_AMP] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(111), - [anon_sym_BANG_EQ] = ACTIONS(111), - [anon_sym_AMP_AMP] = ACTIONS(111), - [anon_sym_PIPE_PIPE] = ACTIONS(111), + [anon_sym_DASH] = ACTIONS(117), + [anon_sym_PLUS] = ACTIONS(117), + [anon_sym_is] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(117), + [anon_sym_PERCENT] = ACTIONS(115), + [anon_sym_LT] = ACTIONS(117), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT] = ACTIONS(117), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_AMP] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(115), + [anon_sym_QMARK] = ACTIONS(117), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_AMP_AMP] = ACTIONS(115), + [anon_sym_PIPE_PIPE] = ACTIONS(115), [anon_sym_copy] = ACTIONS(73), - [anon_sym_QMARK_DOLLAR] = ACTIONS(111), + [anon_sym_QMARK_DOLLAR] = ACTIONS(115), [anon_sym_schedule] = ACTIONS(75), [aux_sym_constant_token1] = ACTIONS(77), [anon_sym_T] = ACTIONS(79), [anon_sym_F] = ACTIONS(79), - [anon_sym_ATDIR] = ACTIONS(97), - [anon_sym_ATFILENAME] = ACTIONS(97), - [sym_id] = ACTIONS(99), - [sym_pattern] = ACTIONS(101), - [sym_ipv6] = ACTIONS(103), - [sym_ipv4] = ACTIONS(103), - [sym_port] = ACTIONS(105), - [sym_floatp] = ACTIONS(107), + [anon_sym_ATDIR] = ACTIONS(99), + [anon_sym_ATFILENAME] = ACTIONS(99), + [sym_id] = ACTIONS(101), + [sym_pattern] = ACTIONS(103), + [sym_ipv6] = ACTIONS(105), + [sym_ipv4] = ACTIONS(105), + [sym_port] = ACTIONS(107), + [sym_floatp] = ACTIONS(109), [sym_hex] = ACTIONS(79), [sym_hostname] = ACTIONS(79), - [aux_sym_string_token1] = ACTIONS(109), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [806] = { - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_COLON] = ACTIONS(1865), - [anon_sym_PLUS_EQ] = ACTIONS(1482), - [anon_sym_record] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_local] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_table] = ACTIONS(1486), - [anon_sym_set] = ACTIONS(1486), - [anon_sym_vector] = ACTIONS(1486), - [anon_sym_function] = ACTIONS(1486), - [anon_sym_hook] = ACTIONS(1486), - [anon_sym_AMPdeprecated] = ACTIONS(1482), - [anon_sym_DASH_EQ] = ACTIONS(1482), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1482), - [anon_sym_AMPerror_handler] = ACTIONS(1482), - [anon_sym_AMPis_assigned] = ACTIONS(1482), - [anon_sym_AMPis_used] = ACTIONS(1482), - [anon_sym_AMPlog] = ACTIONS(1482), - [anon_sym_AMPoptional] = ACTIONS(1482), - [anon_sym_AMPraw_output] = ACTIONS(1482), - [anon_sym_AMPredef] = ACTIONS(1482), - [anon_sym_AMPadd_func] = ACTIONS(1482), - [anon_sym_AMPbackend] = ACTIONS(1482), - [anon_sym_AMPbroker_store] = ACTIONS(1482), - [anon_sym_AMPcreate_expire] = ACTIONS(1482), - [anon_sym_AMPdefault] = ACTIONS(1482), - [anon_sym_AMPdelete_func] = ACTIONS(1482), - [anon_sym_AMPexpire_func] = ACTIONS(1482), - [anon_sym_AMPgroup] = ACTIONS(1482), - [anon_sym_AMPon_change] = ACTIONS(1482), - [anon_sym_AMPpriority] = ACTIONS(1482), - [anon_sym_AMPread_expire] = ACTIONS(1482), - [anon_sym_AMPtype_column] = ACTIONS(1482), - [anon_sym_AMPwrite_expire] = ACTIONS(1482), - [anon_sym_DOLLAR] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_copy] = ACTIONS(1486), - [anon_sym_schedule] = ACTIONS(1486), - [aux_sym_constant_token1] = ACTIONS(1486), - [anon_sym_T] = ACTIONS(1486), - [anon_sym_F] = ACTIONS(1486), - [anon_sym_ATDIR] = ACTIONS(1482), - [anon_sym_ATFILENAME] = ACTIONS(1482), - [sym_id] = ACTIONS(1486), - [sym_pattern] = ACTIONS(1482), - [sym_ipv6] = ACTIONS(1486), - [sym_ipv4] = ACTIONS(1486), - [sym_port] = ACTIONS(1482), - [sym_floatp] = ACTIONS(1486), - [sym_hex] = ACTIONS(1486), - [sym_hostname] = ACTIONS(1486), - [aux_sym_string_token1] = ACTIONS(1482), - [sym_zeekygen_head_comment] = ACTIONS(3), - [sym_zeekygen_prev_comment] = ACTIONS(3), - [sym_zeekygen_next_comment] = ACTIONS(5), - [sym_minor_comment] = ACTIONS(5), - [sym_nl] = ACTIONS(3), - }, - [807] = { - [anon_sym_SEMI] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1472), - [anon_sym_COLON] = ACTIONS(1867), - [anon_sym_PLUS_EQ] = ACTIONS(1472), - [anon_sym_record] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1472), - [anon_sym_local] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_table] = ACTIONS(1476), - [anon_sym_set] = ACTIONS(1476), - [anon_sym_vector] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(1476), - [anon_sym_hook] = ACTIONS(1476), - [anon_sym_AMPdeprecated] = ACTIONS(1472), - [anon_sym_DASH_EQ] = ACTIONS(1472), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1472), - [anon_sym_AMPerror_handler] = ACTIONS(1472), - [anon_sym_AMPis_assigned] = ACTIONS(1472), - [anon_sym_AMPis_used] = ACTIONS(1472), - [anon_sym_AMPlog] = ACTIONS(1472), - [anon_sym_AMPoptional] = ACTIONS(1472), - [anon_sym_AMPraw_output] = ACTIONS(1472), - [anon_sym_AMPredef] = ACTIONS(1472), - [anon_sym_AMPadd_func] = ACTIONS(1472), - [anon_sym_AMPbackend] = ACTIONS(1472), - [anon_sym_AMPbroker_store] = ACTIONS(1472), - [anon_sym_AMPcreate_expire] = ACTIONS(1472), - [anon_sym_AMPdefault] = ACTIONS(1472), - [anon_sym_AMPdelete_func] = ACTIONS(1472), - [anon_sym_AMPexpire_func] = ACTIONS(1472), - [anon_sym_AMPgroup] = ACTIONS(1472), - [anon_sym_AMPon_change] = ACTIONS(1472), - [anon_sym_AMPpriority] = ACTIONS(1472), - [anon_sym_AMPread_expire] = ACTIONS(1472), - [anon_sym_AMPtype_column] = ACTIONS(1472), - [anon_sym_AMPwrite_expire] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_PLUS_PLUS] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_copy] = ACTIONS(1476), - [anon_sym_schedule] = ACTIONS(1476), - [aux_sym_constant_token1] = ACTIONS(1476), - [anon_sym_T] = ACTIONS(1476), - [anon_sym_F] = ACTIONS(1476), - [anon_sym_ATDIR] = ACTIONS(1472), - [anon_sym_ATFILENAME] = ACTIONS(1472), - [sym_id] = ACTIONS(1476), - [sym_pattern] = ACTIONS(1472), - [sym_ipv6] = ACTIONS(1476), - [sym_ipv4] = ACTIONS(1476), - [sym_port] = ACTIONS(1472), - [sym_floatp] = ACTIONS(1476), - [sym_hex] = ACTIONS(1476), - [sym_hostname] = ACTIONS(1476), - [aux_sym_string_token1] = ACTIONS(1472), + [aux_sym_string_token1] = ACTIONS(111), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), [sym_minor_comment] = ACTIONS(5), [sym_nl] = ACTIONS(3), }, - [808] = { - [anon_sym_SEMI] = ACTIONS(480), - [anon_sym_LBRACE] = ACTIONS(480), - [anon_sym_PLUS_EQ] = ACTIONS(480), - [anon_sym_record] = ACTIONS(482), - [anon_sym_LPAREN] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(480), - [anon_sym_local] = ACTIONS(482), - [anon_sym_EQ] = ACTIONS(480), - [anon_sym_table] = ACTIONS(482), - [anon_sym_of] = ACTIONS(1869), - [anon_sym_set] = ACTIONS(482), - [anon_sym_vector] = ACTIONS(482), - [anon_sym_function] = ACTIONS(482), - [anon_sym_hook] = ACTIONS(482), - [anon_sym_AMPdeprecated] = ACTIONS(480), - [anon_sym_DASH_EQ] = ACTIONS(480), - [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(480), - [anon_sym_AMPerror_handler] = ACTIONS(480), - [anon_sym_AMPis_assigned] = ACTIONS(480), - [anon_sym_AMPis_used] = ACTIONS(480), - [anon_sym_AMPlog] = ACTIONS(480), - [anon_sym_AMPoptional] = ACTIONS(480), - [anon_sym_AMPraw_output] = ACTIONS(480), - [anon_sym_AMPredef] = ACTIONS(480), - [anon_sym_AMPadd_func] = ACTIONS(480), - [anon_sym_AMPbackend] = ACTIONS(480), - [anon_sym_AMPbroker_store] = ACTIONS(480), - [anon_sym_AMPcreate_expire] = ACTIONS(480), - [anon_sym_AMPdefault] = ACTIONS(480), - [anon_sym_AMPdelete_func] = ACTIONS(480), - [anon_sym_AMPexpire_func] = ACTIONS(480), - [anon_sym_AMPgroup] = ACTIONS(480), - [anon_sym_AMPon_change] = ACTIONS(480), - [anon_sym_AMPpriority] = ACTIONS(480), - [anon_sym_AMPread_expire] = ACTIONS(480), - [anon_sym_AMPtype_column] = ACTIONS(480), - [anon_sym_AMPwrite_expire] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(480), - [anon_sym_PIPE] = ACTIONS(480), - [anon_sym_PLUS_PLUS] = ACTIONS(480), - [anon_sym_DASH_DASH] = ACTIONS(480), - [anon_sym_BANG] = ACTIONS(480), - [anon_sym_TILDE] = ACTIONS(480), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_copy] = ACTIONS(482), - [anon_sym_schedule] = ACTIONS(482), - [aux_sym_constant_token1] = ACTIONS(482), - [anon_sym_T] = ACTIONS(482), - [anon_sym_F] = ACTIONS(482), - [anon_sym_ATDIR] = ACTIONS(480), - [anon_sym_ATFILENAME] = ACTIONS(480), - [sym_id] = ACTIONS(482), - [sym_pattern] = ACTIONS(480), - [sym_ipv6] = ACTIONS(482), - [sym_ipv4] = ACTIONS(482), - [sym_port] = ACTIONS(480), - [sym_floatp] = ACTIONS(482), - [sym_hex] = ACTIONS(482), - [sym_hostname] = ACTIONS(482), - [aux_sym_string_token1] = ACTIONS(480), + [823] = { + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_COLON] = ACTIONS(1915), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_record] = ACTIONS(1514), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_local] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_table] = ACTIONS(1514), + [anon_sym_set] = ACTIONS(1514), + [anon_sym_vector] = ACTIONS(1514), + [anon_sym_function] = ACTIONS(1514), + [anon_sym_hook] = ACTIONS(1514), + [anon_sym_AMPdeprecated] = ACTIONS(1510), + [anon_sym_AMPbroker_allow_complex_type] = ACTIONS(1510), + [anon_sym_AMPerror_handler] = ACTIONS(1510), + [anon_sym_AMPis_assigned] = ACTIONS(1510), + [anon_sym_AMPis_used] = ACTIONS(1510), + [anon_sym_AMPlog] = ACTIONS(1510), + [anon_sym_AMPoptional] = ACTIONS(1510), + [anon_sym_AMPraw_output] = ACTIONS(1510), + [anon_sym_AMPredef] = ACTIONS(1510), + [anon_sym_AMPadd_func] = ACTIONS(1510), + [anon_sym_AMPbackend] = ACTIONS(1510), + [anon_sym_AMPbroker_store] = ACTIONS(1510), + [anon_sym_AMPcreate_expire] = ACTIONS(1510), + [anon_sym_AMPdefault] = ACTIONS(1510), + [anon_sym_AMPdelete_func] = ACTIONS(1510), + [anon_sym_AMPexpire_func] = ACTIONS(1510), + [anon_sym_AMPgroup] = ACTIONS(1510), + [anon_sym_AMPon_change] = ACTIONS(1510), + [anon_sym_AMPpriority] = ACTIONS(1510), + [anon_sym_AMPread_expire] = ACTIONS(1510), + [anon_sym_AMPtype_column] = ACTIONS(1510), + [anon_sym_AMPwrite_expire] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1514), + [anon_sym_copy] = ACTIONS(1514), + [anon_sym_schedule] = ACTIONS(1514), + [aux_sym_constant_token1] = ACTIONS(1514), + [anon_sym_T] = ACTIONS(1514), + [anon_sym_F] = ACTIONS(1514), + [anon_sym_ATDIR] = ACTIONS(1510), + [anon_sym_ATFILENAME] = ACTIONS(1510), + [sym_id] = ACTIONS(1514), + [sym_pattern] = ACTIONS(1510), + [sym_ipv6] = ACTIONS(1514), + [sym_ipv4] = ACTIONS(1514), + [sym_port] = ACTIONS(1510), + [sym_floatp] = ACTIONS(1514), + [sym_hex] = ACTIONS(1514), + [sym_hostname] = ACTIONS(1514), + [aux_sym_string_token1] = ACTIONS(1510), [sym_zeekygen_head_comment] = ACTIONS(3), [sym_zeekygen_prev_comment] = ACTIONS(3), [sym_zeekygen_next_comment] = ACTIONS(5), @@ -76838,19 +78389,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 6, - STATE(359), 1, + STATE(345), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(815), 2, + STATE(829), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -76860,10 +78411,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 46, + ACTIONS(115), 46, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -76872,7 +78424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -76908,19 +78459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, [76] = 6, - STATE(366), 1, + STATE(349), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(815), 2, + STATE(829), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1604), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -76930,10 +78481,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 46, + ACTIONS(1628), 46, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -76942,7 +78494,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -76978,21 +78529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, [152] = 9, - ACTIONS(1871), 1, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, - STATE(1246), 1, + STATE(1269), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(813), 2, + STATE(830), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77001,7 +78552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1604), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77011,7 +78562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1873), 13, + ACTIONS(1919), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -77025,10 +78576,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1602), 24, + ACTIONS(1628), 24, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -77036,7 +78588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77051,21 +78602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, [234] = 9, - ACTIONS(1871), 1, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, - STATE(1257), 1, + STATE(1290), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(813), 2, + STATE(830), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77074,7 +78625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(113), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77084,7 +78635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1873), 13, + ACTIONS(1919), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -77098,10 +78649,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(111), 24, + ACTIONS(115), 24, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [316] = 4, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1484), 11, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + anon_sym_ATload, + anon_sym_ATif, + ACTIONS(1482), 46, + anon_sym_module, anon_sym_SEMI, + anon_sym_export, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_global, + anon_sym_COLON, + anon_sym_option, + anon_sym_const, + anon_sym_redef, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_type, + anon_sym_event, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -77109,7 +78716,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, + anon_sym_function, + anon_sym_hook, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + anon_sym_ATdeprecated, + anon_sym_ATload_DASHsigs, + anon_sym_ATload_DASHplugin, + anon_sym_ATunload, + anon_sym_ATprefixes, + anon_sym_ATifdef, + anon_sym_ATifndef, + anon_sym_ATendif, + anon_sym_ATelse, + anon_sym_ATpragma, + [387] = 5, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + STATE(831), 2, + sym_attr, + aux_sym_attr_list_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1786), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(1784), 46, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_AMPdeprecated, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77123,20 +78809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [316] = 8, - ACTIONS(1871), 1, + [460] = 8, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(814), 2, + STATE(831), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77145,7 +78831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1791), 9, + ACTIONS(1786), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77155,7 +78841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1873), 13, + ACTIONS(1919), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -77169,10 +78855,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1789), 24, + ACTIONS(1784), 24, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -77180,7 +78867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77194,20 +78880,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [395] = 8, - ACTIONS(1780), 1, + [539] = 8, + ACTIONS(1820), 1, anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(814), 2, + STATE(831), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1783), 8, + ACTIONS(1823), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77216,7 +78902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1778), 9, + ACTIONS(1818), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77226,7 +78912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1875), 13, + ACTIONS(1921), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -77240,10 +78926,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1776), 24, + ACTIONS(1816), 24, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -77251,7 +78938,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77265,18 +78951,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [474] = 5, + [618] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(814), 2, - sym_attr, - aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1791), 9, + ACTIONS(131), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77286,40 +78969,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1789), 46, + anon_sym_ATload, + anon_sym_ATif, + ACTIONS(129), 46, + anon_sym_module, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, + anon_sym_export, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_global, + anon_sym_COLON, + anon_sym_option, + anon_sym_const, + anon_sym_redef, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_type, + anon_sym_event, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_function, + anon_sym_hook, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77333,7 +79008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [547] = 4, + anon_sym_ATdeprecated, + anon_sym_ATload_DASHsigs, + anon_sym_ATload_DASHplugin, + anon_sym_ATunload, + anon_sym_ATprefixes, + anon_sym_ATifdef, + anon_sym_ATifndef, + anon_sym_ATendif, + anon_sym_ATelse, + anon_sym_ATpragma, + [689] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -77341,7 +79026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1564), 11, + ACTIONS(127), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77353,7 +79038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_ATload, anon_sym_ATif, - ACTIONS(1562), 45, + ACTIONS(125), 46, anon_sym_module, anon_sym_SEMI, anon_sym_export, @@ -77365,6 +79050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_redef, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_type, anon_sym_event, anon_sym_LPAREN, @@ -77376,7 +79062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_function, anon_sym_hook, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77399,7 +79084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [617] = 4, + anon_sym_ATpragma, + [760] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -77407,7 +79093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1470), 11, + ACTIONS(1650), 11, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77419,7 +79105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_ATload, anon_sym_ATif, - ACTIONS(1468), 45, + ACTIONS(1648), 46, anon_sym_module, anon_sym_SEMI, anon_sym_export, @@ -77431,6 +79117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_redef, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_type, anon_sym_event, anon_sym_LPAREN, @@ -77442,7 +79129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_function, anon_sym_hook, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -77465,64 +79151,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [687] = 18, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_DOLLAR, - ACTIONS(1849), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(1882), 1, - anon_sym_EQ, - ACTIONS(1886), 1, - anon_sym_BANG, - ACTIONS(1890), 1, - anon_sym_QMARK, + anon_sym_ATpragma, + [831] = 6, STATE(349), 1, - sym_index_slice, + sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(1878), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1892), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1894), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(852), 2, + sym_attr, + aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1880), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1630), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1602), 27, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(1628), 44, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, @@ -77545,55 +79207,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [785] = 13, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [905] = 18, + ACTIONS(1600), 1, + anon_sym_LPAREN, ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(1928), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, + ACTIONS(1924), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1940), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1610), 35, + ACTIONS(1628), 27, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77615,53 +79300,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [873] = 9, - ACTIONS(1584), 1, + [1003] = 16, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - STATE(349), 1, + ACTIONS(1928), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1936), 1, + anon_sym_QMARK, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, + ACTIONS(1924), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1940), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 9, - anon_sym_EQ, + ACTIONS(1926), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(1930), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1602), 39, + ACTIONS(115), 29, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PLUS_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77683,36 +79377,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [953] = 9, - ACTIONS(1584), 1, + [1097] = 9, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(113), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -77722,17 +79409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 39, + ACTIONS(115), 39, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -77762,123 +79449,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [1033] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(129), 11, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_ATload, - anon_sym_ATif, - ACTIONS(127), 45, - anon_sym_module, - anon_sym_SEMI, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_global, - anon_sym_COLON, - anon_sym_option, - anon_sym_const, - anon_sym_redef, - anon_sym_PLUS_EQ, - anon_sym_type, - anon_sym_event, + [1177] = 18, + ACTIONS(1600), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, + ACTIONS(1612), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_function, - anon_sym_hook, - anon_sym_DASH_EQ, + ACTIONS(1616), 1, anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1897), 1, anon_sym_QMARK_DOLLAR, - anon_sym_ATdeprecated, - anon_sym_ATload_DASHsigs, - anon_sym_ATload_DASHplugin, - anon_sym_ATunload, - anon_sym_ATprefixes, - anon_sym_ATifdef, - anon_sym_ATifndef, - anon_sym_ATendif, - anon_sym_ATelse, - [1103] = 17, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1928), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, + ACTIONS(1924), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1892), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 2, + ACTIONS(1940), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1448), 28, + ACTIONS(135), 27, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, @@ -77906,122 +79529,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_QMARK_DOLLAR, - [1199] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(125), 11, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_ATload, - anon_sym_ATif, - ACTIONS(123), 45, - anon_sym_module, - anon_sym_SEMI, - anon_sym_export, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_global, - anon_sym_COLON, - anon_sym_option, - anon_sym_const, - anon_sym_redef, - anon_sym_PLUS_EQ, - anon_sym_type, - anon_sym_event, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_function, - anon_sym_hook, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - anon_sym_ATdeprecated, - anon_sym_ATload_DASHsigs, - anon_sym_ATload_DASHplugin, - anon_sym_ATunload, - anon_sym_ATprefixes, - anon_sym_ATifdef, - anon_sym_ATifndef, - anon_sym_ATendif, - anon_sym_ATelse, - [1269] = 16, - ACTIONS(1584), 1, + [1275] = 16, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1928), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, + ACTIONS(1924), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1892), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 2, + ACTIONS(1940), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1602), 29, + ACTIONS(1628), 29, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LPAREN, @@ -78051,173 +79607,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, anon_sym_QMARK_DOLLAR, - [1363] = 18, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, + [1369] = 13, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1638), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1892), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1894), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(133), 27, + ACTIONS(1636), 35, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_AMPdeprecated, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - [1461] = 9, - ACTIONS(1871), 1, - anon_sym_AMPdeprecated, - STATE(1246), 1, - sym_attr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(834), 2, - sym_attr, - aux_sym_attr_list_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(610), 8, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - ACTIONS(1604), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1896), 13, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - ACTIONS(1602), 22, - anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [1541] = 9, - ACTIONS(1871), 1, anon_sym_AMPdeprecated, - STATE(1257), 1, - sym_attr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(834), 2, - sym_attr, - aux_sym_attr_list_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(610), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78226,17 +79664,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(113), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1896), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -78250,83 +79677,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(111), 22, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [1621] = 16, - ACTIONS(1584), 1, + [1457] = 9, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1882), 1, - anon_sym_EQ, - ACTIONS(1886), 1, - anon_sym_BANG, - ACTIONS(1890), 1, - anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1892), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1894), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1630), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 29, + anon_sym_QMARK, + ACTIONS(1628), 39, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, @@ -78350,59 +79745,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [1715] = 14, - ACTIONS(113), 1, + [1537] = 14, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(1584), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1892), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 33, + ACTIONS(115), 33, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78427,115 +79829,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [1805] = 13, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(1584), 1, + [1627] = 17, + ACTIONS(1600), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1886), 1, + ACTIONS(1928), 1, + anon_sym_EQ, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, + ACTIONS(1924), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1940), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 35, + ACTIONS(1490), 28, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [1893] = 6, - STATE(359), 1, - sym_attr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(836), 2, - sym_attr, - aux_sym_attr_list_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(113), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(111), 44, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78557,53 +79907,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [1967] = 6, - STATE(366), 1, - sym_attr_list, + [1723] = 13, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1936), 1, + anon_sym_QMARK, + STATE(336), 1, + sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(836), 2, - sym_attr, - aux_sym_attr_list_repeat1, + ACTIONS(1614), 2, + anon_sym_as, + anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1604), 9, - anon_sym_EQ, + ACTIONS(1934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1926), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(1930), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1602), 44, - anon_sym_COLON, + ACTIONS(115), 35, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78625,33 +79978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2041] = 8, - ACTIONS(1871), 1, + [1811] = 9, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, + STATE(1290), 1, + sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(835), 2, + STATE(850), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78660,7 +80007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1791), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -78670,7 +80017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1896), 13, + ACTIONS(1942), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -78684,16 +80031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1789), 22, + ACTIONS(115), 22, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -78707,20 +80054,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2118] = 8, - ACTIONS(1780), 1, + [1891] = 9, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, + STATE(1269), 1, + sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(835), 2, + STATE(850), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1783), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78729,7 +80078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1778), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -78739,7 +80088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1898), 13, + ACTIONS(1942), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -78753,16 +80102,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1776), 22, + ACTIONS(1628), 22, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -78776,18 +80125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2195] = 5, + [1971] = 6, + STATE(345), 1, + sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(835), 2, + STATE(852), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1791), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -78797,9 +80148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1789), 44, + ACTIONS(115), 44, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, @@ -78807,7 +80159,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78842,37 +80193,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2266] = 5, - ACTIONS(1901), 1, - anon_sym_of, + [2045] = 18, + ACTIONS(1600), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1897), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(1928), 1, + anon_sym_EQ, + ACTIONS(1932), 1, + anon_sym_BANG, + ACTIONS(1936), 1, + anon_sym_QMARK, + STATE(336), 1, + sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(1614), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(1924), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1938), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1940), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(482), 9, - anon_sym_EQ, + ACTIONS(1934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1926), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(1930), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(480), 44, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, + ACTIONS(1490), 26, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78894,37 +80272,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [2336] = 8, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_DOLLAR, - STATE(349), 1, - sym_index_slice, + [2142] = 8, + ACTIONS(1917), 1, + anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, - anon_sym_as, - anon_sym_is, + STATE(851), 2, + sym_attr, + aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(139), 9, + ACTIONS(886), 8, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + ACTIONS(1786), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -78934,23 +80304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(133), 40, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, + ACTIONS(1942), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -78964,6 +80318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + ACTIONS(1784), 22, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -78975,22 +80341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2412] = 9, - ACTIONS(1871), 1, + [2219] = 8, + ACTIONS(1820), 1, anon_sym_AMPdeprecated, - STATE(1246), 1, - sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(854), 2, + STATE(851), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(1823), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -78999,7 +80363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1604), 9, + ACTIONS(1818), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -79009,7 +80373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1905), 13, + ACTIONS(1944), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -79023,14 +80387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1602), 20, - anon_sym_LBRACE, + ACTIONS(1816), 22, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -79044,31 +80410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2490] = 9, - ACTIONS(1871), 1, - anon_sym_AMPdeprecated, - STATE(1257), 1, - sym_attr_list, + [2296] = 5, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(854), 2, + STATE(851), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - ACTIONS(113), 9, + ACTIONS(1786), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -79078,7 +80431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1905), 13, + ACTIONS(1784), 44, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_AMPdeprecated, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -79092,14 +80463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(111), 20, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -79113,62 +80476,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2568] = 18, - ACTIONS(1572), 1, + [2367] = 18, + ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1584), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, + ACTIONS(1897), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1951), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(1878), 2, + ACTIONS(1947), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1892), 2, + ACTIONS(1953), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(1963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 2, + ACTIONS(1965), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1448), 25, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(135), 25, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, @@ -79191,55 +80554,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [2664] = 16, - ACTIONS(1584), 1, + [2463] = 18, + ACTIONS(1600), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1911), 1, + ACTIONS(1897), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(1951), 1, anon_sym_EQ, - ACTIONS(1915), 1, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1947), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1907), 2, + ACTIONS(1963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1965), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1959), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1949), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(1955), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + ACTIONS(1628), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_AMPdeprecated, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + [2559] = 16, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + ACTIONS(1951), 1, + anon_sym_EQ, + ACTIONS(1957), 1, + anon_sym_BANG, + ACTIONS(1961), 1, + anon_sym_QMARK, + STATE(336), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(1947), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1921), 2, + ACTIONS(1953), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(1963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 2, + ACTIONS(1965), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 27, + ACTIONS(115), 27, anon_sym_COLON, anon_sym_LPAREN, anon_sym_COMMA, @@ -79267,28 +80708,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, anon_sym_QMARK_DOLLAR, - [2756] = 9, - ACTIONS(1584), 1, + [2651] = 9, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(113), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -79298,15 +80739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 37, + ACTIONS(115), 37, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79336,24 +80777,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2834] = 8, - ACTIONS(1584), 1, + [2729] = 9, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(1959), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -79363,15 +80808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 40, + ACTIONS(1628), 37, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79393,9 +80838,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, @@ -79404,53 +80846,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2910] = 13, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(1584), 1, + [2807] = 17, + ACTIONS(1600), 1, + anon_sym_LPAREN, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1915), 1, + ACTIONS(1951), 1, + anon_sym_EQ, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1947), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, + ACTIONS(1963), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1965), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 33, + ACTIONS(1490), 26, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_AMPdeprecated, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + anon_sym_QMARK_DOLLAR, + [2901] = 8, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(1616), 1, + anon_sym_DOLLAR, + STATE(336), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(1953), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(117), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(115), 40, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79472,61 +80980,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [2996] = 14, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(1584), 1, + [2977] = 16, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1915), 1, + ACTIONS(1951), 1, + anon_sym_EQ, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1947), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1921), 2, + ACTIONS(1963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1965), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 31, + ACTIONS(1628), 27, anon_sym_COLON, - anon_sym_PLUS_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79548,63 +81066,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3084] = 18, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, + [3069] = 13, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(1911), 1, - anon_sym_EQ, - ACTIONS(1915), 1, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1907), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1923), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1602), 25, + ACTIONS(115), 33, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, @@ -79629,56 +81135,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [3180] = 16, - ACTIONS(1584), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [3155] = 13, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1911), 1, + ACTIONS(1638), 1, anon_sym_EQ, - ACTIONS(1915), 1, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1907), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1923), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1602), 27, + ACTIONS(1636), 33, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACK, @@ -79704,29 +81208,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3272] = 9, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_DOLLAR, - STATE(349), 1, - sym_index_slice, + [3241] = 5, + ACTIONS(1967), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, - anon_sym_as, - anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1604), 9, + ACTIONS(574), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -79736,15 +81233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 37, + ACTIONS(572), 44, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79766,6 +81265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, @@ -79774,58 +81278,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3350] = 17, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, + [3311] = 14, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1911), 1, - anon_sym_EQ, - ACTIONS(1915), 1, + ACTIONS(1957), 1, anon_sym_BANG, - ACTIONS(1919), 1, + ACTIONS(1961), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1907), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1921), 2, + ACTIONS(1963), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1923), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, + ACTIONS(1959), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1909), 4, + ACTIONS(1949), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(1955), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1448), 26, + ACTIONS(115), 31, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_AMPdeprecated, @@ -79850,54 +81349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3444] = 13, - ACTIONS(1584), 1, - anon_sym_LBRACK, - ACTIONS(1588), 1, - anon_sym_DOLLAR, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(1915), 1, - anon_sym_BANG, - ACTIONS(1919), 1, - anon_sym_QMARK, - STATE(349), 1, - sym_index_slice, + [3399] = 9, + ACTIONS(1917), 1, + anon_sym_AMPdeprecated, + STATE(1290), 1, + sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, - anon_sym_as, - anon_sym_is, + STATE(869), 2, + sym_attr, + aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1909), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(886), 8, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + ACTIONS(117), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1610), 33, - anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1969), 13, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + ACTIONS(115), 20, + anon_sym_LBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [3477] = 9, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, + STATE(1269), 1, + sym_attr_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + STATE(869), 2, + sym_attr, + aux_sym_attr_list_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -79906,6 +81445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, + ACTIONS(1630), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(1969), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -79919,66 +81469,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, + ACTIONS(1628), 20, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3530] = 18, - ACTIONS(1572), 1, - anon_sym_LPAREN, - ACTIONS(1584), 1, + [3555] = 8, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(1911), 1, - anon_sym_EQ, - ACTIONS(1915), 1, - anon_sym_BANG, - ACTIONS(1919), 1, - anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1903), 2, + ACTIONS(1953), 2, anon_sym_as, anon_sym_is, - ACTIONS(1907), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(1921), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1923), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1909), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(1913), 6, + ACTIONS(141), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(133), 25, + anon_sym_QMARK, + ACTIONS(135), 40, anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_in, anon_sym_RBRACK, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, @@ -80002,7 +81547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [3626] = 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [3631] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -80010,7 +81566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1486), 9, + ACTIONS(1514), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -80020,9 +81576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1482), 44, + ACTIONS(1510), 44, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, @@ -80030,7 +81587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -80065,20 +81621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3693] = 8, - ACTIONS(1871), 1, + [3698] = 8, + ACTIONS(1917), 1, anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(586), 2, + STATE(599), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -80087,7 +81643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1791), 9, + ACTIONS(1786), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -80097,7 +81653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1905), 13, + ACTIONS(1969), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -80111,14 +81667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - ACTIONS(1789), 20, + ACTIONS(1784), 20, anon_sym_LBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -80132,7 +81688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3768] = 4, + [3773] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -80140,7 +81696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1476), 9, + ACTIONS(1520), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -80150,9 +81706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1472), 44, + ACTIONS(1516), 44, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, @@ -80160,7 +81717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_as, anon_sym_AMPdeprecated, - anon_sym_DASH_EQ, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -80195,59 +81751,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [3835] = 18, - ACTIONS(1572), 1, + [3840] = 18, + ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1584), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, + ACTIONS(1897), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1928), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, + ACTIONS(1924), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1892), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 2, + ACTIONS(1940), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1925), 23, + ACTIONS(1971), 23, anon_sym_SEMI, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, @@ -80271,59 +81827,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [3929] = 18, - ACTIONS(1572), 1, + [3934] = 18, + ACTIONS(1600), 1, anon_sym_LPAREN, - ACTIONS(1584), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(1588), 1, + ACTIONS(1616), 1, anon_sym_DOLLAR, - ACTIONS(1849), 1, + ACTIONS(1897), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(1882), 1, + ACTIONS(1928), 1, anon_sym_EQ, - ACTIONS(1886), 1, + ACTIONS(1932), 1, anon_sym_BANG, - ACTIONS(1890), 1, + ACTIONS(1936), 1, anon_sym_QMARK, - STATE(349), 1, + STATE(336), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1586), 2, + ACTIONS(1614), 2, anon_sym_as, anon_sym_is, - ACTIONS(1878), 2, + ACTIONS(1924), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(1892), 2, + ACTIONS(1938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1894), 2, + ACTIONS(1940), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1888), 3, + ACTIONS(1934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 4, + ACTIONS(1926), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1884), 6, + ACTIONS(1930), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1927), 23, + ACTIONS(1973), 23, anon_sym_SEMI, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, @@ -80347,96 +81903,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [4023] = 37, - ACTIONS(25), 1, + [4028] = 34, + ACTIONS(1977), 1, + anon_sym_LBRACE, + ACTIONS(1980), 1, + anon_sym_COLON, + ACTIONS(1982), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(1985), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(1988), 1, + anon_sym_LBRACK, + ACTIONS(1991), 1, + anon_sym_local, + ACTIONS(1997), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(2000), 1, + anon_sym_function, + ACTIONS(2003), 1, + anon_sym_hook, + ACTIONS(2006), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(2009), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(2018), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(2021), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(2024), 1, aux_sym_constant_token1, - ACTIONS(101), 1, + ACTIONS(2033), 1, + sym_id, + ACTIONS(2036), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(2042), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(2045), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(2048), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1929), 1, - anon_sym_RPAREN, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - sym_id, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(873), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1462), 1, sym_expr, - STATE(1917), 1, - sym_formal_arg, - STATE(1940), 1, - aux_sym_formal_args_repeat1, - STATE(2390), 1, - sym_formal_args, - STATE(2508), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(1994), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(2015), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(2030), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(2039), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(1975), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2012), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(2027), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [4149] = 37, + [4148] = 37, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -80453,46 +82006,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(1933), 1, - sym_id, - ACTIONS(1935), 1, + ACTIONS(2051), 1, anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(2053), 1, + sym_id, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2390), 1, - sym_formal_args, - STATE(2589), 1, + STATE(2228), 1, sym_expr_list, + STATE(2675), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -80502,13 +82055,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -80525,99 +82078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [4275] = 34, - ACTIONS(1939), 1, - anon_sym_LBRACE, - ACTIONS(1942), 1, - anon_sym_COLON, - ACTIONS(1944), 1, - anon_sym_record, - ACTIONS(1947), 1, - anon_sym_LPAREN, - ACTIONS(1950), 1, - anon_sym_LBRACK, - ACTIONS(1953), 1, - anon_sym_local, - ACTIONS(1959), 1, - anon_sym_vector, - ACTIONS(1962), 1, - anon_sym_function, - ACTIONS(1965), 1, - anon_sym_hook, - ACTIONS(1968), 1, - anon_sym_DOLLAR, - ACTIONS(1971), 1, - anon_sym_PIPE, - ACTIONS(1980), 1, - anon_sym_copy, - ACTIONS(1983), 1, - anon_sym_schedule, - ACTIONS(1986), 1, - aux_sym_constant_token1, - ACTIONS(1995), 1, - sym_id, - ACTIONS(1998), 1, - sym_pattern, - ACTIONS(2004), 1, - sym_port, - ACTIONS(2007), 1, - sym_floatp, - ACTIONS(2010), 1, - aux_sym_string_token1, - STATE(824), 1, - sym_string_directive, - STATE(860), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1393), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(1956), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(1977), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1992), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(2001), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1937), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1974), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1989), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [4395] = 35, + [4274] = 37, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -80626,78 +82095,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, - anon_sym_type, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + ACTIONS(2053), 1, + sym_id, + ACTIONS(2055), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(888), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1318), 1, + STATE(1298), 1, sym_expr, - STATE(2053), 1, - aux_sym_case_type_list_repeat1, + STATE(1955), 1, + sym_formal_arg, + STATE(1959), 1, + aux_sym_formal_args_repeat1, + STATE(2467), 1, + sym_expr_list, + STATE(2675), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, - STATE(2538), 2, - sym_case_type_list, - sym_expr_list, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [4516] = 33, + [4400] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -80714,35 +82184,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(860), 1, + STATE(873), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1278), 1, + STATE(1296), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -80753,13 +82223,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -80776,12 +82246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2027), 4, + ACTIONS(2057), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [4633] = 35, + [4517] = 35, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -80796,62 +82266,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2059), 1, + anon_sym_type, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2029), 1, - anon_sym_COLON, - ACTIONS(2031), 1, - anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(912), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1293), 1, + STATE(1338), 1, sym_expr, - STATE(2182), 1, - sym_expr_list, + STATE(2043), 1, + aux_sym_case_type_list_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, + STATE(2296), 2, + sym_case_type_list, + sym_expr_list, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, @@ -80861,20 +82332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [4753] = 34, + [4638] = 35, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -80883,239 +82352,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1684), 1, + anon_sym_RBRACK, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2033), 1, - anon_sym_RBRACE, - STATE(824), 1, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + ACTIONS(2073), 1, + anon_sym_COLON, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1320), 1, sym_expr, - STATE(2324), 1, + STATE(2595), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [4870] = 34, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2035), 1, - anon_sym_RPAREN, - STATE(824), 1, - sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1286), 1, - sym_expr, - STATE(2829), 1, - sym_expr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [4987] = 34, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2037), 1, - anon_sym_RPAREN, - STATE(824), 1, - sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1286), 1, - sym_expr, - STATE(2207), 1, - sym_expr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [5104] = 34, + [4758] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81132,39 +82439,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2039), 1, + ACTIONS(2075), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2589), 1, + STATE(2879), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81175,13 +82482,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81198,7 +82505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [5221] = 34, + [4875] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81213,58 +82520,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2041), 1, + ACTIONS(2077), 1, anon_sym_COLON, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1305), 1, + STATE(1314), 1, sym_expr, - STATE(2534), 1, + STATE(2636), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81276,12 +82583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [5338] = 34, + [4992] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81298,39 +82605,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2043), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(2079), 1, + anon_sym_RBRACE, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2513), 1, + STATE(2457), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81341,13 +82648,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81364,15 +82671,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [5455] = 34, + [5109] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -81381,139 +82686,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2045), 1, - anon_sym_RPAREN, - STATE(824), 1, - sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1286), 1, - sym_expr, - STATE(2485), 1, - sym_expr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [5572] = 34, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2047), 1, + ACTIONS(2081), 1, anon_sym_COLON, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1315), 1, + STATE(1324), 1, sym_expr, - STATE(2643), 1, + STATE(2586), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81525,12 +82749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [5689] = 34, + [5226] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81547,39 +82771,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2049), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(2079), 1, + anon_sym_RBRACK, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2508), 1, + STATE(2482), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81590,13 +82814,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81613,7 +82837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [5806] = 34, + [5343] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81630,39 +82854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2031), 1, + ACTIONS(1684), 1, anon_sym_RBRACE, - STATE(824), 1, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2620), 1, + STATE(2369), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81673,13 +82897,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81696,7 +82920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [5923] = 34, + [5460] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81713,39 +82937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2031), 1, + ACTIONS(1684), 1, anon_sym_RBRACK, - STATE(824), 1, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2182), 1, + STATE(2595), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81756,13 +82980,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81779,7 +83003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6040] = 34, + [5577] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81796,39 +83020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2033), 1, - anon_sym_RBRACK, - STATE(824), 1, + ACTIONS(2083), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2358), 1, + STATE(2558), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81839,13 +83063,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81862,7 +83086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6157] = 34, + [5694] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81879,39 +83103,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2051), 1, + ACTIONS(2085), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2749), 1, + STATE(2228), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -81922,13 +83146,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -81945,7 +83169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6274] = 34, + [5811] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -81962,39 +83186,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2087), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2778), 1, + STATE(2467), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82005,13 +83229,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82028,7 +83252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6391] = 34, + [5928] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82045,39 +83269,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2055), 1, + ACTIONS(2089), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2822), 1, + STATE(2799), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82088,13 +83312,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82111,7 +83335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6508] = 33, + [6045] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82128,37 +83352,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2091), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2557), 1, + STATE(2571), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82169,13 +83395,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82192,7 +83418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6622] = 33, + [6162] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82209,38 +83435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, - anon_sym_SEMI, - ACTIONS(2059), 1, - anon_sym_when, - STATE(824), 1, + ACTIONS(2093), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1497), 1, + STATE(1298), 1, sym_expr, + STATE(2828), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -82250,13 +83478,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82273,7 +83501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6736] = 33, + [6279] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82290,37 +83518,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2095), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2161), 1, + STATE(2872), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82331,13 +83561,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82354,7 +83584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6850] = 33, + [6396] = 34, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82371,37 +83601,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2236), 1, + STATE(2742), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82412,13 +83644,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82435,7 +83667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [6964] = 33, + [6513] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82452,38 +83684,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2099), 1, + anon_sym_SEMI, + ACTIONS(2101), 1, + anon_sym_when, + STATE(832), 1, sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1367), 1, sym_expr, - STATE(2303), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -82493,13 +83725,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82516,7 +83748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7078] = 33, + [6627] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82533,37 +83765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2413), 1, + STATE(2207), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82574,13 +83806,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82597,7 +83829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7192] = 33, + [6741] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82614,38 +83846,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2103), 1, + anon_sym_SEMI, + ACTIONS(2105), 1, + anon_sym_when, + STATE(832), 1, sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1355), 1, sym_expr, - STATE(2530), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -82655,13 +83887,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82678,7 +83910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7306] = 33, + [6855] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82695,37 +83927,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2581), 1, + STATE(2335), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -82736,13 +83968,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82759,7 +83991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7420] = 33, + [6969] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82776,38 +84008,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2107), 1, + anon_sym_SEMI, + ACTIONS(2109), 1, + anon_sym_when, + STATE(832), 1, sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1449), 1, sym_expr, - STATE(2754), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -82817,13 +84049,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -82840,13 +84072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7534] = 33, + [7083] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -82855,73 +84089,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - ACTIONS(2061), 1, - anon_sym_COLON, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(860), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1316), 1, + STATE(1298), 1, sym_expr, + STATE(2592), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + [7197] = 33, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1298), 1, + sym_expr, + STATE(2819), 1, + sym_expr_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [7648] = 33, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [7311] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -82938,38 +84251,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2063), 1, - anon_sym_SEMI, - ACTIONS(2065), 1, - anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1551), 1, + STATE(1298), 1, sym_expr, + STATE(2499), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -82979,13 +84292,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83002,7 +84315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7762] = 33, + [7425] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83019,37 +84332,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2067), 1, + ACTIONS(2111), 1, anon_sym_SEMI, - ACTIONS(2069), 1, + ACTIONS(2113), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1525), 1, + STATE(1400), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83060,13 +84373,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83083,7 +84396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7876] = 33, + [7539] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83100,37 +84413,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2071), 1, + ACTIONS(2115), 1, anon_sym_SEMI, - ACTIONS(2073), 1, + ACTIONS(2117), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1522), 1, + STATE(1413), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83141,13 +84454,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83164,7 +84477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [7990] = 33, + [7653] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83181,37 +84494,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2119), 1, anon_sym_SEMI, - ACTIONS(2077), 1, + ACTIONS(2121), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1523), 1, + STATE(1391), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83222,13 +84535,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83245,7 +84558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8104] = 33, + [7767] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83262,38 +84575,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2079), 1, - anon_sym_SEMI, - ACTIONS(2081), 1, - anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1399), 1, + STATE(1298), 1, sym_expr, + STATE(2474), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -83303,13 +84616,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83326,7 +84639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8218] = 33, + [7881] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83343,38 +84656,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2083), 1, - anon_sym_SEMI, - ACTIONS(2085), 1, - anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1483), 1, + STATE(1298), 1, sym_expr, + STATE(2467), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -83384,13 +84697,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83407,7 +84720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8332] = 33, + [7995] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83424,37 +84737,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2589), 1, + STATE(2558), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83465,13 +84778,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83488,7 +84801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8446] = 33, + [8109] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83505,38 +84818,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2125), 1, + anon_sym_when, + STATE(832), 1, sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1553), 1, sym_expr, - STATE(2485), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -83546,13 +84859,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83569,7 +84882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8560] = 33, + [8223] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83586,37 +84899,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2127), 1, anon_sym_SEMI, - ACTIONS(2089), 1, + ACTIONS(2129), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1442), 1, + STATE(1426), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83627,13 +84940,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83650,7 +84963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8674] = 33, + [8337] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83667,37 +84980,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2091), 1, + ACTIONS(2131), 1, anon_sym_SEMI, - ACTIONS(2093), 1, + ACTIONS(2133), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1489), 1, + STATE(1437), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83708,13 +85021,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83731,7 +85044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8788] = 33, + [8451] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83748,37 +85061,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2347), 1, + STATE(2593), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83789,13 +85102,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83812,7 +85125,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [8902] = 33, + [8565] = 33, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + ACTIONS(2135), 1, + anon_sym_COLON, + STATE(832), 1, + sym_string_directive, + STATE(873), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1335), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2063), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2071), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2069), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [8679] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83829,37 +85223,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2095), 1, + ACTIONS(2137), 1, anon_sym_SEMI, - ACTIONS(2097), 1, + ACTIONS(2139), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1431), 1, + STATE(1587), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83870,13 +85264,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83893,7 +85287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9016] = 33, + [8793] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83910,37 +85304,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2099), 1, + ACTIONS(2141), 1, anon_sym_SEMI, - ACTIONS(2101), 1, + ACTIONS(2143), 1, anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1463), 1, + STATE(1379), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -83951,13 +85345,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -83974,7 +85368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9130] = 33, + [8907] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -83991,38 +85385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2103), 1, - anon_sym_SEMI, - ACTIONS(2105), 1, - anon_sym_when, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1509), 1, + STATE(1298), 1, sym_expr, + STATE(2483), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -84032,13 +85426,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84055,7 +85449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9244] = 33, + [9021] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84072,37 +85466,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2314), 1, + STATE(2215), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84113,13 +85507,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84136,7 +85530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9358] = 33, + [9135] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84153,37 +85547,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(862), 1, + STATE(876), 1, aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1298), 1, sym_expr, - STATE(2392), 1, + STATE(2654), 1, sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84194,13 +85588,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84217,7 +85611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9472] = 33, + [9249] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84234,38 +85628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2145), 1, + anon_sym_SEMI, + ACTIONS(2147), 1, + anon_sym_when, + STATE(832), 1, sym_string_directive, - STATE(862), 1, - aux_sym_expr_list_repeat1, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1286), 1, + STATE(1342), 1, sym_expr, - STATE(2679), 1, - sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -84275,13 +85669,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84298,7 +85692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9586] = 32, + [9363] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84315,36 +85709,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1333), 1, + STATE(1298), 1, sym_expr, + STATE(2808), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -84354,13 +85750,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84377,7 +85773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9697] = 32, + [9477] = 33, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84394,36 +85790,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(876), 1, + aux_sym_expr_list_repeat1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1355), 1, + STATE(1298), 1, sym_expr, + STATE(2469), 1, + sym_expr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -84433,13 +85831,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84456,7 +85854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9808] = 32, + [9591] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84473,35 +85871,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2149), 1, anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1369), 1, + STATE(1495), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84512,13 +85910,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84535,7 +85933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [9919] = 32, + [9702] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84552,35 +85950,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2113), 1, + ACTIONS(2151), 1, anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1412), 1, + STATE(1583), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84591,13 +85989,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84614,7 +86012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10030] = 32, + [9813] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84631,35 +86029,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2115), 1, + ACTIONS(2153), 1, anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1478), 1, + STATE(1560), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84670,13 +86068,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84693,7 +86091,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10141] = 32, + [9924] = 27, + ACTIONS(2155), 1, + anon_sym_module, + ACTIONS(2157), 1, + anon_sym_export, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(2161), 1, + anon_sym_global, + ACTIONS(2163), 1, + anon_sym_option, + ACTIONS(2165), 1, + anon_sym_const, + ACTIONS(2167), 1, + anon_sym_redef, + ACTIONS(2169), 1, + anon_sym_type, + ACTIONS(2171), 1, + anon_sym_event, + ACTIONS(2173), 1, + anon_sym_function, + ACTIONS(2175), 1, + anon_sym_hook, + ACTIONS(2177), 1, + anon_sym_ATdeprecated, + ACTIONS(2179), 1, + anon_sym_ATload, + ACTIONS(2183), 1, + anon_sym_ATload_DASHplugin, + ACTIONS(2185), 1, + anon_sym_ATprefixes, + ACTIONS(2187), 1, + anon_sym_ATif, + ACTIONS(2193), 1, + anon_sym_ATpragma, + STATE(1821), 1, + sym_pragma, + STATE(1831), 1, + sym_func_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2181), 2, + anon_sym_ATload_DASHsigs, + anon_sym_ATunload, + ACTIONS(2189), 2, + anon_sym_ATifdef, + anon_sym_ATifndef, + ACTIONS(2191), 2, + anon_sym_ATendif, + anon_sym_ATelse, + STATE(929), 2, + sym_decl, + aux_sym_source_file_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + STATE(1834), 3, + sym_func, + sym_hook, + sym_event, + STATE(1807), 11, + sym_module_decl, + sym_export_decl, + sym_global_decl, + sym_option_decl, + sym_const_decl, + sym_redef_decl, + sym_redef_enum_decl, + sym_redef_record_decl, + sym_type_decl, + sym_func_decl, + sym_preproc_directive, + [10025] = 27, + ACTIONS(2155), 1, + anon_sym_module, + ACTIONS(2157), 1, + anon_sym_export, + ACTIONS(2161), 1, + anon_sym_global, + ACTIONS(2163), 1, + anon_sym_option, + ACTIONS(2165), 1, + anon_sym_const, + ACTIONS(2167), 1, + anon_sym_redef, + ACTIONS(2169), 1, + anon_sym_type, + ACTIONS(2171), 1, + anon_sym_event, + ACTIONS(2173), 1, + anon_sym_function, + ACTIONS(2175), 1, + anon_sym_hook, + ACTIONS(2177), 1, + anon_sym_ATdeprecated, + ACTIONS(2179), 1, + anon_sym_ATload, + ACTIONS(2183), 1, + anon_sym_ATload_DASHplugin, + ACTIONS(2185), 1, + anon_sym_ATprefixes, + ACTIONS(2187), 1, + anon_sym_ATif, + ACTIONS(2193), 1, + anon_sym_ATpragma, + ACTIONS(2195), 1, + anon_sym_RBRACE, + STATE(1821), 1, + sym_pragma, + STATE(1831), 1, + sym_func_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2181), 2, + anon_sym_ATload_DASHsigs, + anon_sym_ATunload, + ACTIONS(2189), 2, + anon_sym_ATifdef, + anon_sym_ATifndef, + ACTIONS(2191), 2, + anon_sym_ATendif, + anon_sym_ATelse, + STATE(924), 2, + sym_decl, + aux_sym_source_file_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + STATE(1834), 3, + sym_func, + sym_hook, + sym_event, + STATE(1807), 11, + sym_module_decl, + sym_export_decl, + sym_global_decl, + sym_option_decl, + sym_const_decl, + sym_redef_decl, + sym_redef_enum_decl, + sym_redef_record_decl, + sym_type_decl, + sym_func_decl, + sym_preproc_directive, + [10126] = 27, + ACTIONS(2155), 1, + anon_sym_module, + ACTIONS(2157), 1, + anon_sym_export, + ACTIONS(2161), 1, + anon_sym_global, + ACTIONS(2163), 1, + anon_sym_option, + ACTIONS(2165), 1, + anon_sym_const, + ACTIONS(2167), 1, + anon_sym_redef, + ACTIONS(2169), 1, + anon_sym_type, + ACTIONS(2171), 1, + anon_sym_event, + ACTIONS(2173), 1, + anon_sym_function, + ACTIONS(2175), 1, + anon_sym_hook, + ACTIONS(2177), 1, + anon_sym_ATdeprecated, + ACTIONS(2179), 1, + anon_sym_ATload, + ACTIONS(2183), 1, + anon_sym_ATload_DASHplugin, + ACTIONS(2185), 1, + anon_sym_ATprefixes, + ACTIONS(2187), 1, + anon_sym_ATif, + ACTIONS(2193), 1, + anon_sym_ATpragma, + ACTIONS(2197), 1, + anon_sym_RBRACE, + STATE(1821), 1, + sym_pragma, + STATE(1831), 1, + sym_func_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2181), 2, + anon_sym_ATload_DASHsigs, + anon_sym_ATunload, + ACTIONS(2189), 2, + anon_sym_ATifdef, + anon_sym_ATifndef, + ACTIONS(2191), 2, + anon_sym_ATendif, + anon_sym_ATelse, + STATE(929), 2, + sym_decl, + aux_sym_source_file_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + STATE(1834), 3, + sym_func, + sym_hook, + sym_event, + STATE(1807), 11, + sym_module_decl, + sym_export_decl, + sym_global_decl, + sym_option_decl, + sym_const_decl, + sym_redef_decl, + sym_redef_enum_decl, + sym_redef_record_decl, + sym_type_decl, + sym_func_decl, + sym_preproc_directive, + [10227] = 27, + ACTIONS(2155), 1, + anon_sym_module, + ACTIONS(2157), 1, + anon_sym_export, + ACTIONS(2161), 1, + anon_sym_global, + ACTIONS(2163), 1, + anon_sym_option, + ACTIONS(2165), 1, + anon_sym_const, + ACTIONS(2167), 1, + anon_sym_redef, + ACTIONS(2169), 1, + anon_sym_type, + ACTIONS(2171), 1, + anon_sym_event, + ACTIONS(2173), 1, + anon_sym_function, + ACTIONS(2175), 1, + anon_sym_hook, + ACTIONS(2177), 1, + anon_sym_ATdeprecated, + ACTIONS(2179), 1, + anon_sym_ATload, + ACTIONS(2183), 1, + anon_sym_ATload_DASHplugin, + ACTIONS(2185), 1, + anon_sym_ATprefixes, + ACTIONS(2187), 1, + anon_sym_ATif, + ACTIONS(2193), 1, + anon_sym_ATpragma, + ACTIONS(2199), 1, + anon_sym_RBRACE, + STATE(1821), 1, + sym_pragma, + STATE(1831), 1, + sym_func_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2181), 2, + anon_sym_ATload_DASHsigs, + anon_sym_ATunload, + ACTIONS(2189), 2, + anon_sym_ATifdef, + anon_sym_ATifndef, + ACTIONS(2191), 2, + anon_sym_ATendif, + anon_sym_ATelse, + STATE(926), 2, + sym_decl, + aux_sym_source_file_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + STATE(1834), 3, + sym_func, + sym_hook, + sym_event, + STATE(1807), 11, + sym_module_decl, + sym_export_decl, + sym_global_decl, + sym_option_decl, + sym_const_decl, + sym_redef_decl, + sym_redef_enum_decl, + sym_redef_record_decl, + sym_type_decl, + sym_func_decl, + sym_preproc_directive, + [10328] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84710,35 +86404,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2117), 1, + ACTIONS(2201), 1, anon_sym_RBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1402), 1, + STATE(1347), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84749,13 +86443,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84772,7 +86466,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10252] = 31, + [10439] = 27, + ACTIONS(143), 1, + anon_sym_RBRACE, + ACTIONS(2203), 1, + anon_sym_module, + ACTIONS(2206), 1, + anon_sym_export, + ACTIONS(2209), 1, + anon_sym_global, + ACTIONS(2212), 1, + anon_sym_option, + ACTIONS(2215), 1, + anon_sym_const, + ACTIONS(2218), 1, + anon_sym_redef, + ACTIONS(2221), 1, + anon_sym_type, + ACTIONS(2224), 1, + anon_sym_event, + ACTIONS(2227), 1, + anon_sym_function, + ACTIONS(2230), 1, + anon_sym_hook, + ACTIONS(2233), 1, + anon_sym_ATdeprecated, + ACTIONS(2236), 1, + anon_sym_ATload, + ACTIONS(2242), 1, + anon_sym_ATload_DASHplugin, + ACTIONS(2245), 1, + anon_sym_ATprefixes, + ACTIONS(2248), 1, + anon_sym_ATif, + ACTIONS(2257), 1, + anon_sym_ATpragma, + STATE(1821), 1, + sym_pragma, + STATE(1831), 1, + sym_func_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2239), 2, + anon_sym_ATload_DASHsigs, + anon_sym_ATunload, + ACTIONS(2251), 2, + anon_sym_ATifdef, + anon_sym_ATifndef, + ACTIONS(2254), 2, + anon_sym_ATendif, + anon_sym_ATelse, + STATE(929), 2, + sym_decl, + aux_sym_source_file_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + STATE(1834), 3, + sym_func, + sym_hook, + sym_event, + STATE(1807), 11, + sym_module_decl, + sym_export_decl, + sym_global_decl, + sym_option_decl, + sym_const_decl, + sym_redef_decl, + sym_redef_enum_decl, + sym_redef_record_decl, + sym_type_decl, + sym_func_decl, + sym_preproc_directive, + [10540] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84789,33 +86557,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2260), 1, + anon_sym_RBRACK, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1334), 1, + STATE(1554), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84826,13 +86596,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84849,7 +86619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10360] = 31, + [10651] = 32, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -84866,33 +86636,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2262), 1, + anon_sym_RBRACK, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1468), 1, + STATE(1343), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -84903,13 +86675,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -84926,161 +86698,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10468] = 31, - ACTIONS(586), 1, + [10762] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, - anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, + ACTIONS(2264), 1, + anon_sym_local, + ACTIONS(2268), 1, + anon_sym_hook, + ACTIONS(2270), 1, + anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(821), 1, + STATE(860), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(618), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [10576] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_record, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, - anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, - anon_sym_DOLLAR, - ACTIONS(616), 1, - anon_sym_PIPE, - ACTIONS(622), 1, - anon_sym_copy, - ACTIONS(624), 1, - anon_sym_schedule, - ACTIONS(626), 1, - aux_sym_constant_token1, - ACTIONS(632), 1, - sym_id, - ACTIONS(634), 1, - sym_pattern, - ACTIONS(638), 1, - sym_port, - ACTIONS(640), 1, - sym_floatp, - ACTIONS(642), 1, - aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, - sym_string_directive, - STATE(341), 1, - sym_constant, - STATE(358), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [10684] = 31, + ACTIONS(2272), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [10870] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -85097,33 +86792,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1404), 1, + STATE(1356), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -85134,13 +86829,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -85157,161 +86852,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [10792] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [10978] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(65), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(831), 1, + STATE(1548), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [10900] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [11086] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(65), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, - sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2276), 1, + sym_id, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(830), 1, + STATE(1591), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [11008] = 31, + [11194] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -85328,33 +87023,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1276), 1, + STATE(1549), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -85365,13 +87060,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -85388,7 +87083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [11116] = 31, + [11302] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -85405,33 +87100,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1571), 1, + STATE(1587), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -85442,13 +87137,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -85465,238 +87160,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [11224] = 31, + [11410] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1495), 1, + STATE(1328), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [11332] = 31, - ACTIONS(586), 1, + [11518] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(874), 1, anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(882), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(347), 1, + STATE(844), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [11440] = 31, - ACTIONS(25), 1, + [11626] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1459), 1, + STATE(839), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [11548] = 31, + [11734] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -85713,33 +87408,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2278), 1, + sym_id, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1426), 1, + STATE(1300), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -85750,13 +87445,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -85773,7 +87468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [11656] = 31, + [11842] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -85790,33 +87485,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1489), 1, + STATE(1302), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -85827,13 +87522,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -85850,315 +87545,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [11764] = 31, - ACTIONS(25), 1, + [11950] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1521), 1, + STATE(837), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [11872] = 31, - ACTIONS(25), 1, + [12058] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1285), 1, + STATE(838), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [11980] = 31, - ACTIONS(586), 1, + [12166] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(874), 1, anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(882), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(857), 1, + STATE(344), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [12088] = 31, - ACTIONS(586), 1, + [12274] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(874), 1, anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(882), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(829), 1, + STATE(845), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [12196] = 31, + [12382] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86175,33 +87870,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1522), 1, + STATE(1552), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86212,13 +87907,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86235,7 +87930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [12304] = 31, + [12490] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86252,33 +87947,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1291), 1, + STATE(1553), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86289,13 +87984,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86312,7 +88007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [12412] = 31, + [12598] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86329,33 +88024,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1572), 1, + STATE(1326), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86366,13 +88061,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86389,67 +88084,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [12520] = 31, + [12706] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1592), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [12814] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1256), 1, - sym_expr, - STATE(1269), 1, + STATE(1279), 1, sym_constant, + STATE(1283), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86461,12 +88233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [12628] = 31, + [12922] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86479,54 +88251,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1451), 1, + STATE(1544), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86538,89 +88310,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [12736] = 31, - ACTIONS(25), 1, + [13030] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1505), 1, + STATE(843), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [12844] = 31, + [13138] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86637,33 +88409,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1336), 1, + STATE(1555), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86674,13 +88446,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86697,7 +88469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [12952] = 31, + [13246] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86714,33 +88486,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1340), 1, + STATE(1556), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86751,13 +88523,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86774,7 +88546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [13060] = 31, + [13354] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86791,33 +88563,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1341), 1, + STATE(1557), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -86828,13 +88600,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86851,7 +88623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [13168] = 31, + [13462] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86864,54 +88636,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1324), 1, + STATE(1465), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -86923,12 +88695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13276] = 31, + [13570] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -86941,54 +88713,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1325), 1, + STATE(1466), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87000,12 +88772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13384] = 31, + [13678] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87018,54 +88790,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1414), 1, + STATE(1263), 1, sym_expr, + STATE(1279), 1, + sym_constant, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87077,72 +88849,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13492] = 31, + [13786] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1251), 1, - sym_expr, - STATE(1269), 1, + STATE(1279), 1, sym_constant, + STATE(1558), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87154,72 +88926,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13600] = 31, + [13894] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - STATE(824), 1, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1342), 1, + STATE(1467), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87231,12 +89003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13708] = 31, + [14002] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87249,54 +89021,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1327), 1, + STATE(1468), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87308,166 +89080,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [13816] = 31, + [14110] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1328), 1, + STATE(1559), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [13924] = 31, + [14218] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1343), 1, + STATE(1471), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [14032] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [14326] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87480,54 +89252,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1331), 1, + STATE(1472), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87539,12 +89311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [14140] = 31, + [14434] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87557,54 +89329,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1332), 1, + STATE(1470), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87616,72 +89388,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [14248] = 31, + [14542] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1562), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [14650] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1330), 1, + STATE(1474), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87693,12 +89542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [14356] = 31, + [14758] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87715,33 +89564,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, - sym_constant, STATE(1279), 1, + sym_constant, + STATE(1579), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -87752,13 +89601,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87775,7 +89624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [14464] = 31, + [14866] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87792,33 +89641,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1367), 1, + STATE(1580), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -87829,13 +89678,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -87852,84 +89701,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [14572] = 31, + [14974] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1335), 1, + STATE(1581), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [14680] = 31, + [15082] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -87946,33 +89795,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1377), 1, + STATE(1582), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -87983,13 +89832,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88006,7 +89855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [14788] = 31, + [15190] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88023,33 +89872,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1379), 1, + STATE(1561), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88060,13 +89909,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88083,7 +89932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [14896] = 31, + [15298] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88100,33 +89949,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1382), 1, + STATE(1342), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88137,13 +89986,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88160,7 +90009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15004] = 31, + [15406] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88177,33 +90026,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1385), 1, + STATE(1315), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88214,13 +90063,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88237,7 +90086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15112] = 31, + [15514] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88254,33 +90103,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1304), 1, + STATE(1589), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88291,13 +90140,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88314,7 +90163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15220] = 31, + [15622] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88331,33 +90180,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1399), 1, + STATE(1344), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88368,13 +90217,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88391,7 +90240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15328] = 31, + [15730] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88408,33 +90257,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1289), 1, + STATE(1345), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88445,13 +90294,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88468,7 +90317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15436] = 31, + [15838] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88485,33 +90334,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1569), 1, + STATE(1346), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88522,13 +90371,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88545,7 +90394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15544] = 31, + [15946] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88562,33 +90411,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1405), 1, + STATE(1348), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88599,13 +90448,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88622,7 +90471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15652] = 31, + [16054] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88639,33 +90488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1407), 1, + STATE(1350), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88676,13 +90525,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88699,7 +90548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15760] = 31, + [16162] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88716,33 +90565,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1409), 1, + STATE(1351), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88753,13 +90602,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88776,7 +90625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15868] = 31, + [16270] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88793,33 +90642,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1416), 1, + STATE(1352), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88830,13 +90679,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88853,7 +90702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [15976] = 31, + [16378] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88870,33 +90719,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1420), 1, + STATE(1353), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88907,13 +90756,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -88930,7 +90779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16084] = 31, + [16486] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -88947,33 +90796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1422), 1, + STATE(1355), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -88984,13 +90833,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89007,7 +90856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16192] = 31, + [16594] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89024,33 +90873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1423), 1, + STATE(1307), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89061,13 +90910,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89084,7 +90933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16300] = 31, + [16702] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89101,33 +90950,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1425), 1, + STATE(1590), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89138,13 +90987,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89161,7 +91010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16408] = 31, + [16810] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89178,33 +91027,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1357), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [16918] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1358), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [17026] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1431), 1, + STATE(1359), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89215,13 +91218,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89238,7 +91241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16516] = 31, + [17134] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89255,33 +91258,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1294), 1, + STATE(1360), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89292,13 +91295,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89315,7 +91318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16624] = 31, + [17242] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89332,33 +91335,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1570), 1, + STATE(1361), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89369,13 +91372,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89392,7 +91395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16732] = 31, + [17350] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89409,33 +91412,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1436), 1, + STATE(1362), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89446,13 +91449,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89469,7 +91472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16840] = 31, + [17458] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89486,33 +91489,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1438), 1, + STATE(1363), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89523,13 +91526,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89546,7 +91549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [16948] = 31, + [17566] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89563,33 +91566,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1439), 1, + STATE(1364), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89600,13 +91603,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89623,7 +91626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17056] = 31, + [17674] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89640,33 +91643,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1443), 1, + STATE(1367), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89677,13 +91680,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89700,7 +91703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17164] = 31, + [17782] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89717,33 +91720,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1446), 1, + STATE(1318), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89754,13 +91757,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89777,7 +91780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17272] = 31, + [17890] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89794,33 +91797,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1448), 1, + STATE(1369), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89831,13 +91834,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89854,7 +91857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17380] = 31, + [17998] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89871,33 +91874,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1370), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [18106] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1371), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [18214] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1449), 1, + STATE(1373), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89908,13 +92065,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -89931,7 +92088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17488] = 31, + [18322] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -89948,33 +92105,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1450), 1, + STATE(1374), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -89985,13 +92142,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90008,84 +92165,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17596] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [18430] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(65), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(825), 1, + STATE(1375), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [17704] = 31, + [18538] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90102,33 +92259,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1463), 1, + STATE(1376), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90139,13 +92296,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90162,7 +92319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17812] = 31, + [18646] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90179,33 +92336,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1314), 1, + STATE(1377), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90216,13 +92373,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90239,7 +92396,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [17920] = 31, + [18754] = 5, + ACTIONS(2294), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(1596), 2, + anon_sym_ATload, + anon_sym_ATif, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1594), 37, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_AMPdeprecated, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + anon_sym_ATdeprecated, + anon_sym_ATload_DASHsigs, + anon_sym_ATload_DASHplugin, + anon_sym_ATunload, + anon_sym_ATprefixes, + anon_sym_ATifdef, + anon_sym_ATifndef, + anon_sym_ATendif, + anon_sym_ATelse, + anon_sym_ATpragma, + [18810] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90256,33 +92464,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1568), 1, + STATE(1379), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90293,13 +92501,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90316,7 +92524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18028] = 31, + [18918] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90333,33 +92541,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1465), 1, + STATE(1329), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90370,13 +92578,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90393,7 +92601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18136] = 31, + [19026] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90410,33 +92618,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1466), 1, + STATE(1380), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90447,13 +92655,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90470,7 +92678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18244] = 31, + [19134] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90487,33 +92695,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1473), 1, + STATE(1381), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90524,13 +92732,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90547,7 +92755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18352] = 31, + [19242] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90564,33 +92772,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1474), 1, + STATE(1382), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90601,13 +92809,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90624,7 +92832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18460] = 31, + [19350] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90641,33 +92849,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1475), 1, + STATE(1383), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90678,13 +92886,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90701,7 +92909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18568] = 31, + [19458] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90718,33 +92926,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1477), 1, + STATE(1384), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90755,13 +92963,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90778,7 +92986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18676] = 31, + [19566] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90795,33 +93003,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1479), 1, + STATE(1385), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90832,13 +93040,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90855,7 +93063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18784] = 31, + [19674] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90872,33 +93080,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1483), 1, + STATE(1386), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90909,13 +93117,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -90932,7 +93140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [18892] = 31, + [19782] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -90949,33 +93157,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1296), 1, + STATE(1387), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -90986,13 +93194,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91009,7 +93217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19000] = 31, + [19890] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91026,33 +93234,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1484), 1, + STATE(1391), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91063,13 +93271,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91086,7 +93294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19108] = 31, + [19998] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91103,33 +93311,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1485), 1, + STATE(1333), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91140,13 +93348,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91163,7 +93371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19216] = 31, + [20106] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91180,33 +93388,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1486), 1, + STATE(1392), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91217,13 +93425,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91240,7 +93448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19324] = 31, + [20214] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91257,33 +93465,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1487), 1, + STATE(1393), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91294,13 +93502,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91317,7 +93525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19432] = 31, + [20322] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91334,33 +93542,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1490), 1, + STATE(1394), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91371,13 +93579,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91394,7 +93602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19540] = 31, + [20430] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91411,33 +93619,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1491), 1, + STATE(1395), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91448,13 +93656,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91471,7 +93679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19648] = 31, + [20538] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91488,33 +93696,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1493), 1, + STATE(1396), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91525,13 +93733,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91548,7 +93756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19756] = 31, + [20646] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91565,33 +93773,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1494), 1, + STATE(1340), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91602,13 +93810,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91625,7 +93833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19864] = 31, + [20754] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91642,33 +93850,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1497), 1, + STATE(1397), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91679,13 +93887,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91702,7 +93910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [19972] = 31, + [20862] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91719,33 +93927,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1290), 1, + STATE(1398), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91756,13 +93964,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91779,7 +93987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20080] = 31, + [20970] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91796,33 +94004,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1498), 1, + STATE(1400), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91833,13 +94041,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91856,7 +94064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20188] = 31, + [21078] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91873,33 +94081,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1309), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [21186] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1499), 1, + STATE(1402), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91910,13 +94195,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -91933,7 +94218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20296] = 31, + [21294] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -91950,33 +94235,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1500), 1, + STATE(1403), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -91987,13 +94272,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92010,7 +94295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20404] = 31, + [21402] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92027,33 +94312,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1501), 1, + STATE(1404), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92064,13 +94349,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92087,7 +94372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20512] = 31, + [21510] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92104,33 +94389,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1502), 1, + STATE(1406), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92141,13 +94426,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92164,7 +94449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20620] = 31, + [21618] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92181,33 +94466,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1503), 1, + STATE(1407), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92218,13 +94503,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92241,7 +94526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20728] = 31, + [21726] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92258,33 +94543,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1504), 1, + STATE(1408), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92295,13 +94580,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92318,7 +94603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20836] = 31, + [21834] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92335,33 +94620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1507), 1, + STATE(1410), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92372,13 +94657,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92395,7 +94680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [20944] = 31, + [21942] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92412,33 +94697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1283), 1, + STATE(1411), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92449,13 +94734,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92472,84 +94757,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21052] = 31, - ACTIONS(25), 1, + [22050] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1509), 1, + STATE(871), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [21160] = 31, + [22158] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92566,33 +94851,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1301), 1, + STATE(1413), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92603,13 +94888,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92626,7 +94911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21268] = 31, + [22266] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92643,33 +94928,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1511), 1, + STATE(1327), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92680,13 +94965,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92703,7 +94988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21376] = 31, + [22374] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92720,33 +95005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1512), 1, + STATE(1416), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92757,13 +95042,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92780,7 +95065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21484] = 31, + [22482] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92797,33 +95082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1513), 1, + STATE(1417), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92834,13 +95119,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92857,7 +95142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21592] = 31, + [22590] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92874,33 +95159,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1516), 1, + STATE(1418), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92911,13 +95196,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -92934,7 +95219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21700] = 31, + [22698] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -92951,33 +95236,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1517), 1, + STATE(1419), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -92988,13 +95273,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93011,7 +95296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21808] = 31, + [22806] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93028,33 +95313,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1518), 1, + STATE(1420), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93065,13 +95350,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93088,7 +95373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [21916] = 31, + [22914] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93105,33 +95390,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1519), 1, + STATE(1421), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93142,13 +95427,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93165,7 +95450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22024] = 31, + [23022] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93182,33 +95467,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1520), 1, + STATE(1422), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93219,13 +95504,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93242,84 +95527,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22132] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [23130] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1424), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [23238] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(823), 1, + STATE(1426), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [22240] = 31, + [23346] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93336,33 +95698,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1525), 1, + STATE(1313), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93373,13 +95735,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93396,7 +95758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22348] = 31, + [23454] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93413,33 +95775,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1309), 1, + STATE(1428), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93450,13 +95812,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93473,7 +95835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22456] = 31, + [23562] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93490,33 +95852,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1526), 1, + STATE(1429), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93527,13 +95889,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93550,7 +95912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22564] = 31, + [23670] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93567,33 +95929,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1527), 1, + STATE(1430), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93604,13 +95966,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93627,7 +95989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22672] = 31, + [23778] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93644,33 +96006,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1529), 1, + STATE(1431), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93681,13 +96043,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93704,7 +96066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22780] = 31, + [23886] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93721,33 +96083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1545), 1, + STATE(1432), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93758,13 +96120,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93781,7 +96143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22888] = 31, + [23994] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93798,33 +96160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1546), 1, + STATE(1433), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93835,13 +96197,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93858,7 +96220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [22996] = 31, + [24102] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93875,33 +96237,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1547), 1, + STATE(1434), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93912,13 +96274,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -93935,7 +96297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23104] = 31, + [24210] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -93952,33 +96314,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1548), 1, + STATE(1435), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -93989,13 +96351,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94012,7 +96374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23212] = 31, + [24318] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94029,33 +96391,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1549), 1, + STATE(1437), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94066,13 +96428,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94089,7 +96451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23320] = 31, + [24426] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94106,33 +96468,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1551), 1, + STATE(1330), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94143,13 +96505,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94166,7 +96528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23428] = 31, + [24534] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94183,33 +96545,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1313), 1, + STATE(1438), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94220,13 +96582,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94243,7 +96605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23536] = 31, + [24642] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94260,33 +96622,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1554), 1, + STATE(1439), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94297,13 +96659,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94320,7 +96682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23644] = 31, + [24750] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94337,33 +96699,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1555), 1, + STATE(1440), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94374,13 +96736,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94397,7 +96759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23752] = 31, + [24858] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94414,33 +96776,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1556), 1, + STATE(1441), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94451,13 +96813,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94474,7 +96836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23860] = 31, + [24966] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94491,33 +96853,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1558), 1, + STATE(1442), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94528,13 +96890,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94551,7 +96913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [23968] = 31, + [25074] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94568,33 +96930,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1560), 1, + STATE(1443), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94605,13 +96967,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94628,7 +96990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24076] = 31, + [25182] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94645,33 +97007,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1561), 1, + STATE(1444), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94682,13 +97044,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94705,7 +97067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24184] = 31, + [25290] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94722,33 +97084,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1566), 1, + STATE(1445), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94759,13 +97121,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94782,7 +97144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24292] = 31, + [25398] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94799,33 +97161,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1567), 1, + STATE(1449), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94836,13 +97198,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -94859,7 +97221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24400] = 31, + [25506] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -94876,110 +97238,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1256), 1, - sym_expr, - STATE(1269), 1, - sym_constant, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [24508] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1523), 1, + STATE(1308), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -94990,13 +97275,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95013,7 +97298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24616] = 31, + [25614] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95030,33 +97315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1295), 1, + STATE(1450), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95067,13 +97352,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95090,7 +97375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24724] = 31, + [25722] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95107,33 +97392,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1460), 1, + STATE(1451), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95144,13 +97429,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95167,7 +97452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24832] = 31, + [25830] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95184,33 +97469,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1506), 1, + STATE(1452), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95221,13 +97506,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95244,7 +97529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [24940] = 31, + [25938] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95261,33 +97546,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1510), 1, + STATE(1453), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95298,13 +97583,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95321,7 +97606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25048] = 31, + [26046] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95338,33 +97623,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1326), 1, + STATE(1454), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95375,13 +97660,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95398,7 +97683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25156] = 31, + [26154] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95415,33 +97700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1345), 1, + STATE(1455), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95452,13 +97737,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95475,7 +97760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25264] = 31, + [26262] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95492,33 +97777,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1351), 1, + STATE(1456), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95529,13 +97814,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95552,7 +97837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25372] = 31, + [26370] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95569,33 +97854,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1357), 1, + STATE(1458), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95606,13 +97891,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95629,7 +97914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25480] = 31, + [26478] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95646,33 +97931,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1380), 1, + STATE(1459), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95683,13 +97968,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95706,7 +97991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25588] = 31, + [26586] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95723,33 +98008,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1442), 1, + STATE(1460), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95760,13 +98045,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95783,84 +98068,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25696] = 31, + [26694] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1292), 1, + STATE(1461), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [25804] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [26802] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95877,33 +98162,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1455), 1, + STATE(1463), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95914,13 +98199,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -95937,7 +98222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [25912] = 31, + [26910] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -95954,33 +98239,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1456), 1, + STATE(1464), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -95991,13 +98276,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -96014,7 +98299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [26020] = 31, + [27018] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -96031,33 +98316,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1458), 1, + STATE(1469), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -96068,13 +98353,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -96091,7 +98376,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [26128] = 31, + [27126] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, + anon_sym_record, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_vector, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, + anon_sym_copy, + ACTIONS(900), 1, + anon_sym_schedule, + ACTIONS(902), 1, + aux_sym_constant_token1, + ACTIONS(908), 1, + sym_id, + ACTIONS(910), 1, + sym_pattern, + ACTIONS(914), 1, + sym_port, + ACTIONS(916), 1, + sym_floatp, + ACTIONS(918), 1, + aux_sym_string_token1, + ACTIONS(2296), 1, + anon_sym_local, + ACTIONS(2300), 1, + anon_sym_hook, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, + sym_integer, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, + sym_constant, + STATE(733), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(906), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(912), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(904), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27234] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -96108,33 +98470,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1461), 1, + STATE(1473), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -96145,13 +98507,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -96168,7 +98530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [26236] = 31, + [27342] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -96185,33 +98547,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1464), 1, + STATE(1349), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -96222,13 +98584,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -96245,2069 +98607,2146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [26344] = 31, + [27450] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1467), 1, + STATE(1475), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [26452] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27558] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1469), 1, + STATE(1476), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [26560] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27666] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1470), 1, + STATE(1477), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [26668] = 31, - ACTIONS(25), 1, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27774] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1481), 1, + STATE(737), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [26776] = 31, - ACTIONS(25), 1, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27882] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1488), 1, + STATE(623), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [26884] = 31, - ACTIONS(25), 1, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [27990] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1515), 1, + STATE(725), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [26992] = 31, - ACTIONS(25), 1, + [28098] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1322), 1, + STATE(344), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [27100] = 31, - ACTIONS(25), 1, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [28206] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1323), 1, + STATE(726), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [27208] = 31, - ACTIONS(25), 1, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [28314] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2302), 1, + anon_sym_DOLLAR, + ACTIONS(2304), 1, + anon_sym_PIPE, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1329), 1, + STATE(727), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2298), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2308), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [27316] = 31, - ACTIONS(586), 1, + ACTIONS(2306), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [28422] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2304), 1, anon_sym_PIPE, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(723), 1, + STATE(729), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [27424] = 31, - ACTIONS(25), 1, + [28530] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1564), 1, + STATE(840), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [27532] = 31, + [28638] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1337), 1, + STATE(1588), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [27640] = 31, - ACTIONS(25), 1, + [28746] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(73), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2304), 1, anon_sym_PIPE, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1338), 1, + STATE(730), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [27748] = 31, + [28854] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1339), 1, + STATE(1283), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [27856] = 31, - ACTIONS(586), 1, + [28962] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2304), 1, anon_sym_PIPE, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(727), 1, + STATE(728), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [27964] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [29070] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2139), 1, - anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(713), 1, + STATE(1368), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2143), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28072] = 31, - ACTIONS(586), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [29178] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2304), 1, anon_sym_PIPE, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(714), 1, + STATE(732), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28180] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [29286] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2139), 1, - anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(358), 1, + STATE(1500), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2143), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28288] = 31, - ACTIONS(586), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [29394] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2304), 1, anon_sym_PIPE, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(715), 1, + STATE(334), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28396] = 31, - ACTIONS(586), 1, + [29502] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(2296), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2300), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2302), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2304), 1, anon_sym_PIPE, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(716), 1, + STATE(731), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2298), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2308), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2306), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28504] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [29610] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(718), 1, + STATE(1550), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28612] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [29718] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2139), 1, - anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(719), 1, + STATE(1479), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2143), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28720] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [29826] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2139), 1, - anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(717), 1, + STATE(1480), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2143), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28828] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [29934] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2139), 1, - anon_sym_DOLLAR, - ACTIONS(2141), 1, - anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(721), 1, + STATE(1481), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + [30042] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1482), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [28936] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [30150] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(347), 1, + STATE(1483), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [29044] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [30258] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2133), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2137), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2139), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2141), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(291), 1, - sym_integer, - STATE(325), 1, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(720), 1, + STATE(1484), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2135), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2145), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2143), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [29152] = 31, + [30366] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - STATE(824), 1, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1472), 1, + STATE(1485), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98319,12 +100758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [29260] = 31, + [30474] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98337,54 +100776,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1344), 1, + STATE(1486), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98396,12 +100835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [29368] = 31, + [30582] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98418,33 +100857,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1346), 1, + STATE(1487), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -98455,13 +100894,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98478,7 +100917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [29476] = 31, + [30690] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98495,33 +100934,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1347), 1, + STATE(1488), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -98532,13 +100971,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98555,7 +100994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [29584] = 31, + [30798] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98572,33 +101011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1348), 1, + STATE(1489), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -98609,13 +101048,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98632,7 +101071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [29692] = 31, + [30906] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98649,33 +101088,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1349), 1, + STATE(1490), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -98686,13 +101125,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98709,7 +101148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [29800] = 31, + [31014] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98722,54 +101161,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1352), 1, + STATE(1491), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98781,12 +101220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [29908] = 31, + [31122] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98799,54 +101238,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1353), 1, + STATE(1492), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98858,12 +101297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [30016] = 31, + [31230] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98876,54 +101315,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1354), 1, + STATE(1493), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -98935,12 +101374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [30124] = 31, + [31338] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -98953,54 +101392,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1358), 1, + STATE(1494), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99012,12 +101451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [30232] = 31, + [31446] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99034,187 +101473,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1359), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [30340] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1360), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [30448] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, sym_port, - ACTIONS(107), 1, - sym_floatp, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1361), 1, + STATE(1496), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -99225,13 +101510,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99248,7 +101533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [30556] = 31, + [31554] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99265,33 +101550,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1362), 1, + STATE(1497), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -99302,13 +101587,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99325,161 +101610,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [30664] = 31, + [31662] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1363), 1, + STATE(1498), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [30772] = 31, + [31770] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1364), 1, + STATE(1499), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [30880] = 31, + [31878] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99492,54 +101777,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1366), 1, + STATE(1501), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99551,12 +101836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [30988] = 31, + [31986] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99569,54 +101854,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1368), 1, + STATE(1502), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99628,166 +101913,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [31096] = 31, + [32094] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1370), 1, + STATE(1503), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [31204] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [32202] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1371), 1, + STATE(1504), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [31312] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [32310] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99804,33 +102089,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1372), 1, + STATE(1505), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -99841,13 +102126,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99864,7 +102149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [31420] = 31, + [32418] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -99881,33 +102166,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1373), 1, + STATE(1506), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -99918,13 +102203,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -99941,161 +102226,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [31528] = 31, + [32526] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1375), 1, + STATE(1507), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [31636] = 31, + [32634] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1376), 1, + STATE(1508), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [31744] = 31, + [32742] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100108,54 +102393,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1378), 1, + STATE(1509), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100167,12 +102452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [31852] = 31, + [32850] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100185,54 +102470,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1381), 1, + STATE(1510), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100244,166 +102529,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [31960] = 31, + [32958] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1383), 1, + STATE(1511), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [32068] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [33066] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1384), 1, + STATE(1513), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [32176] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [33174] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100420,33 +102705,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1386), 1, + STATE(1514), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -100457,13 +102742,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100480,84 +102765,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [32284] = 31, + [33282] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1387), 1, + STATE(1515), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [32392] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [33390] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100570,54 +102855,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1388), 1, + STATE(1516), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100629,12 +102914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [32500] = 31, + [33498] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100647,54 +102932,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1389), 1, + STATE(1517), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100706,12 +102991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [32608] = 31, + [33606] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100724,131 +103009,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1390), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(2131), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [32716] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1392), 1, + STATE(1518), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100860,12 +103068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [32824] = 31, + [33714] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100882,33 +103090,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1394), 1, + STATE(1519), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -100919,13 +103127,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -100942,7 +103150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [32932] = 31, + [33822] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -100955,54 +103163,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1397), 1, + STATE(1520), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101014,12 +103222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33040] = 31, + [33930] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101032,54 +103240,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1398), 1, + STATE(1521), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101091,12 +103299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33148] = 31, + [34038] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101109,54 +103317,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1400), 1, + STATE(1522), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101168,12 +103376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33256] = 31, + [34146] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101186,54 +103394,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1401), 1, + STATE(1523), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101245,12 +103453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33364] = 31, + [34254] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101267,33 +103475,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1403), 1, + STATE(1524), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -101304,13 +103512,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101327,7 +103535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [33472] = 31, + [34362] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101340,54 +103548,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1406), 1, + STATE(1525), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101399,12 +103607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33580] = 31, + [34470] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101417,54 +103625,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1408), 1, + STATE(1526), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101476,12 +103684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33688] = 31, + [34578] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101494,54 +103702,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1410), 1, + STATE(1527), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101553,12 +103761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33796] = 31, + [34686] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101571,54 +103779,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1413), 1, + STATE(1528), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101630,12 +103838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [33904] = 31, + [34794] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101652,33 +103860,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1415), 1, + STATE(1529), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -101689,13 +103897,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101712,7 +103920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [34012] = 31, + [34902] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101725,54 +103933,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1417), 1, + STATE(1530), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101784,12 +103992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34120] = 31, + [35010] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101802,54 +104010,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1418), 1, + STATE(1531), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101861,12 +104069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34228] = 31, + [35118] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101879,54 +104087,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1419), 1, + STATE(1532), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -101938,12 +104146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34336] = 31, + [35226] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -101956,54 +104164,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1421), 1, + STATE(1533), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102015,12 +104223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34444] = 31, + [35334] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102037,33 +104245,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1424), 1, + STATE(1534), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -102074,13 +104282,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102097,7 +104305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [34552] = 31, + [35442] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102110,131 +104318,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1427), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(2131), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [34660] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1428), 1, + STATE(1535), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102246,12 +104377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34768] = 31, + [35550] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102264,54 +104395,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1429), 1, + STATE(1536), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102323,12 +104454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34876] = 31, + [35658] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102341,54 +104472,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1432), 1, + STATE(1537), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102400,149 +104531,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [34984] = 31, + [35766] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1434), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [35092] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1437), 1, + STATE(1539), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102554,12 +104608,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35200] = 31, + [35874] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102572,54 +104626,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1321), 1, + STATE(1540), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102631,12 +104685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35308] = 31, + [35982] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102649,54 +104703,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1440), 1, + STATE(1542), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102708,12 +104762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35416] = 31, + [36090] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102726,54 +104780,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1441), 1, + STATE(1543), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102785,12 +104839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35524] = 31, + [36198] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -102803,54 +104857,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1444), 1, + STATE(1545), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102862,72 +104916,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35632] = 31, + [36306] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1546), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [36414] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1445), 1, + STATE(1321), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -102939,72 +105070,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35740] = 31, + [36522] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1447), 1, + STATE(1325), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103016,72 +105147,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35848] = 31, + [36630] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1452), 1, + STATE(1332), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103093,72 +105224,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [35956] = 31, + [36738] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2123), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2125), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1553), 1, + STATE(1547), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103170,20 +105301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36064] = 31, + [36846] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -103192,67 +105321,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1453), 1, + STATE(1311), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2063), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2071), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [36172] = 31, + ACTIONS(2069), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [36954] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -103267,52 +105398,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1300), 1, + STATE(1312), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103324,12 +105455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36280] = 31, + [37062] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -103344,52 +105475,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1302), 1, + STATE(1317), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103401,12 +105532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36388] = 31, + [37170] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -103421,52 +105552,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1288), 1, + STATE(1319), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103478,18 +105609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36496] = 31, + [37278] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -103498,69 +105631,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2310), 1, + anon_sym_LBRACE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1457), 1, + STATE(1301), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [36604] = 31, + [37386] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -103575,52 +105706,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1306), 1, + STATE(1316), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103632,12 +105763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36712] = 31, + [37494] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -103652,52 +105783,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1307), 1, + STATE(1322), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103709,95 +105840,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [36820] = 31, - ACTIONS(586), 1, + [37602] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(874), 1, anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(882), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(820), 1, + STATE(842), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [36928] = 31, + [37710] = 9, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1305), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2312), 14, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + sym_pattern, + sym_port, + aux_sym_string_token1, + ACTIONS(2314), 20, + anon_sym_record, + anon_sym_local, + anon_sym_table, + anon_sym_set, + anon_sym_vector, + anon_sym_function, + anon_sym_hook, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_copy, + anon_sym_schedule, + aux_sym_constant_token1, + anon_sym_T, + anon_sym_F, + sym_id, + sym_ipv6, + sym_ipv4, + sym_floatp, + sym_hex, + sym_hostname, + [37774] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -103806,129 +105994,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1310), 1, + STATE(1512), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [37036] = 31, + [37882] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - STATE(824), 1, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1311), 1, + STATE(1446), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2282), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2292), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -103940,18 +106126,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2290), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [37144] = 31, + [37990] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -103960,146 +106148,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1308), 1, + STATE(1297), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [37252] = 31, - ACTIONS(25), 1, + [38098] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(67), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, + anon_sym_DOLLAR, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1312), 1, + STATE(836), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(906), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(912), 2, + sym_ipv6, + sym_ipv4, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2023), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [37360] = 31, + ACTIONS(904), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [38206] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -104116,33 +106302,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1476), 1, + STATE(1365), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -104153,13 +106339,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -104176,7 +106362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [37468] = 31, + [38314] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -104193,33 +106379,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1480), 1, + STATE(1414), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -104230,13 +106416,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -104253,293 +106439,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [37576] = 9, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1281), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2147), 14, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - sym_pattern, - sym_port, - aux_sym_string_token1, - ACTIONS(2149), 20, + [38422] = 31, + ACTIONS(25), 1, anon_sym_record, - anon_sym_local, - anon_sym_table, - anon_sym_set, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, anon_sym_vector, - anon_sym_function, - anon_sym_hook, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(73), 1, anon_sym_copy, + ACTIONS(75), 1, anon_sym_schedule, + ACTIONS(77), 1, aux_sym_constant_token1, - anon_sym_T, - anon_sym_F, + ACTIONS(101), 1, sym_id, - sym_ipv6, - sym_ipv4, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, - sym_hex, - sym_hostname, - [37640] = 31, - ACTIONS(586), 1, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_record, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(2280), 1, anon_sym_local, - ACTIONS(602), 1, - anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(2286), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(2288), 1, anon_sym_PIPE, - ACTIONS(622), 1, - anon_sym_copy, - ACTIONS(624), 1, - anon_sym_schedule, - ACTIONS(626), 1, - aux_sym_constant_token1, - ACTIONS(632), 1, - sym_id, - ACTIONS(634), 1, - sym_pattern, - ACTIONS(638), 1, - sym_port, - ACTIONS(640), 1, - sym_floatp, - ACTIONS(642), 1, - aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(818), 1, + STATE(1372), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [37748] = 31, - ACTIONS(586), 1, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [38530] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(598), 1, + ACTIONS(874), 1, anon_sym_local, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(606), 1, + ACTIONS(882), 1, anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, STATE(841), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [37856] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [38638] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, + ACTIONS(65), 1, anon_sym_DOLLAR, - ACTIONS(616), 1, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(826), 1, + STATE(1306), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(600), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(620), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(618), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(628), 4, + ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [37964] = 31, + [38746] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -104556,33 +106687,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1492), 1, + STATE(1388), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -104593,13 +106724,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -104616,161 +106747,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [38072] = 31, - ACTIONS(25), 1, + [38854] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + ACTIONS(2270), 1, + anon_sym_DOLLAR, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1287), 1, + STATE(867), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2266), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2274), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(904), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + [38962] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, + anon_sym_record, + ACTIONS(870), 1, + anon_sym_LPAREN, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, + anon_sym_vector, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(892), 1, + anon_sym_PIPE, + ACTIONS(898), 1, + anon_sym_copy, + ACTIONS(900), 1, + anon_sym_schedule, + ACTIONS(902), 1, + aux_sym_constant_token1, + ACTIONS(908), 1, + sym_id, + ACTIONS(910), 1, + sym_pattern, + ACTIONS(914), 1, + sym_port, + ACTIONS(916), 1, + sym_floatp, + ACTIONS(918), 1, + aux_sym_string_token1, + ACTIONS(2264), 1, + anon_sym_local, + ACTIONS(2268), 1, + anon_sym_hook, + ACTIONS(2270), 1, + anon_sym_DOLLAR, + STATE(291), 1, + sym_integer, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, + sym_constant, + STATE(858), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(906), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(912), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2266), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2274), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(326), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [38180] = 31, + ACTIONS(2272), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [39070] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1356), 1, + STATE(1389), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [38288] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [39178] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -104787,34 +106995,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1251), 1, - sym_expr, - STATE(1269), 1, + STATE(1279), 1, sym_constant, + STATE(1300), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -104824,13 +107032,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -104847,13 +107055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [38396] = 31, + [39286] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -104862,69 +107072,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1350), 1, + STATE(1423), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [38504] = 31, + [39394] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -104941,33 +107149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1280), 1, + STATE(1401), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -104978,13 +107186,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105001,7 +107209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [38612] = 31, + [39502] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105018,33 +107226,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1282), 1, + STATE(1301), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105055,13 +107263,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105078,84 +107286,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [38720] = 31, + [39610] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1565), 1, + STATE(1409), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [38828] = 31, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [39718] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105172,33 +107380,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1365), 1, + STATE(1303), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105209,13 +107417,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105232,315 +107440,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [38936] = 31, - ACTIONS(586), 1, + [39826] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, + anon_sym_DOLLAR, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, - anon_sym_local, - ACTIONS(2155), 1, - anon_sym_hook, - ACTIONS(2157), 1, - anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(838), 1, + STATE(849), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(906), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(912), 2, + sym_ipv6, + sym_ipv4, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2159), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [39044] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(904), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [39934] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(616), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2157), 1, - anon_sym_DOLLAR, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(850), 1, + STATE(1563), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2159), 4, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [39152] = 31, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [40042] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1435), 1, + STATE(1564), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [39260] = 31, + [40150] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2119), 1, - anon_sym_local, - ACTIONS(2123), 1, - anon_sym_hook, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2127), 1, - anon_sym_PIPE, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1374), 1, + STATE(1565), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2121), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2131), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2129), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [39368] = 31, + [40258] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105557,33 +107765,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1530), 1, + STATE(1566), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105594,13 +107802,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105617,7 +107825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [39476] = 31, + [40366] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105634,33 +107842,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1531), 1, + STATE(1567), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105671,13 +107879,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105694,7 +107902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [39584] = 31, + [40474] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105711,33 +107919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1532), 1, + STATE(1568), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105748,13 +107956,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105771,7 +107979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [39692] = 31, + [40582] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105788,33 +107996,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1533), 1, + STATE(1569), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105825,13 +108033,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105848,7 +108056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [39800] = 31, + [40690] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105865,33 +108073,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1534), 1, + STATE(1570), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105902,13 +108110,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -105925,7 +108133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [39908] = 31, + [40798] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -105942,33 +108150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1535), 1, + STATE(1571), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -105979,13 +108187,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106002,7 +108210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40016] = 31, + [40906] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106019,33 +108227,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1536), 1, + STATE(1572), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106056,13 +108264,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106079,7 +108287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40124] = 31, + [41014] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106096,33 +108304,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1537), 1, + STATE(1573), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106133,13 +108341,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106156,7 +108364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40232] = 31, + [41122] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106173,33 +108381,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1538), 1, + STATE(1574), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106210,13 +108418,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106233,7 +108441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40340] = 31, + [41230] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106250,33 +108458,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1539), 1, + STATE(1575), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106287,13 +108495,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106310,7 +108518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40448] = 31, + [41338] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106327,33 +108535,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1540), 1, + STATE(1576), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106364,13 +108572,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106387,7 +108595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40556] = 31, + [41446] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106404,33 +108612,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1541), 1, + STATE(1577), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106441,13 +108649,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106464,7 +108672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40664] = 31, + [41554] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106481,33 +108689,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1542), 1, + STATE(1415), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106518,13 +108726,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106541,15 +108749,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40772] = 31, + [41662] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -106558,33 +108764,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(107), 1, sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1310), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2063), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2071), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2069), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [41770] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1334), 1, + sym_expr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2063), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2071), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, + sym_interval, + sym_string, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2069), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [41878] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2316), 1, + sym_id, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1543), 1, + STATE(1593), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106595,13 +108957,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106618,7 +108980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40880] = 31, + [41986] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106635,34 +108997,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1544), 1, + STATE(1263), 1, sym_expr, + STATE(1279), 1, + sym_constant, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -106672,13 +109034,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106695,84 +109057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [40988] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_record, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(598), 1, - anon_sym_local, - ACTIONS(602), 1, - anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(606), 1, - anon_sym_hook, - ACTIONS(614), 1, - anon_sym_DOLLAR, - ACTIONS(616), 1, - anon_sym_PIPE, - ACTIONS(622), 1, - anon_sym_copy, - ACTIONS(624), 1, - anon_sym_schedule, - ACTIONS(626), 1, - aux_sym_constant_token1, - ACTIONS(632), 1, - sym_id, - ACTIONS(634), 1, - sym_pattern, - ACTIONS(638), 1, - sym_port, - ACTIONS(640), 1, - sym_floatp, - ACTIONS(642), 1, - aux_sym_string_token1, - STATE(291), 1, - sym_integer, - STATE(325), 1, - sym_string_directive, - STATE(341), 1, - sym_constant, - STATE(819), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(600), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(620), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - STATE(338), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(618), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [41096] = 31, + [42094] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106787,52 +109072,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1299), 1, + STATE(1447), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -106844,18 +109129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41204] = 31, + [42202] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -106864,69 +109151,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(123), 1, + anon_sym_hook, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, - anon_sym_local, - ACTIONS(2019), 1, - anon_sym_hook, - ACTIONS(2021), 1, - anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1298), 1, + STATE(1299), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [41312] = 31, + [42310] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -106943,33 +109228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1281), 1, + STATE(1304), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -106980,13 +109265,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -107003,469 +109288,469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [41420] = 31, - ACTIONS(586), 1, + [42418] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(852), 1, + STATE(853), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41528] = 31, - ACTIONS(586), 1, + [42526] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(842), 1, + STATE(855), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41636] = 31, - ACTIONS(586), 1, + [42634] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(843), 1, + STATE(856), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41744] = 31, - ACTIONS(586), 1, + [42742] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(844), 1, + STATE(859), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41852] = 31, - ACTIONS(586), 1, + [42850] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(845), 1, + STATE(861), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [41960] = 31, - ACTIONS(586), 1, + [42958] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(846), 1, + STATE(864), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [42068] = 31, + [43066] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -107482,33 +109767,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1284), 1, + STATE(1538), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -107519,13 +109804,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -107542,325 +109827,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [42176] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, + [43174] = 31, + ACTIONS(25), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(35), 1, anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(59), 1, anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(616), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(73), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(75), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(101), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(103), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(107), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(109), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(121), 1, + anon_sym_function, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2157), 1, - anon_sym_DOLLAR, - STATE(291), 1, - sym_integer, - STATE(325), 1, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2318), 1, + anon_sym_LBRACE, + STATE(832), 1, sym_string_directive, - STATE(341), 1, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, sym_constant, - STATE(848), 1, + STATE(1301), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(636), 2, - sym_ipv6, - sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(57), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2159), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - [42284] = 31, - ACTIONS(586), 1, - anon_sym_LBRACE, - ACTIONS(592), 1, - anon_sym_record, - ACTIONS(594), 1, - anon_sym_LPAREN, - ACTIONS(596), 1, - anon_sym_LBRACK, - ACTIONS(602), 1, - anon_sym_vector, - ACTIONS(604), 1, - anon_sym_function, - ACTIONS(616), 1, - anon_sym_PIPE, - ACTIONS(622), 1, - anon_sym_copy, - ACTIONS(624), 1, - anon_sym_schedule, - ACTIONS(626), 1, - aux_sym_constant_token1, - ACTIONS(632), 1, - sym_id, - ACTIONS(634), 1, - sym_pattern, - ACTIONS(638), 1, - sym_port, - ACTIONS(640), 1, - sym_floatp, - ACTIONS(642), 1, - aux_sym_string_token1, - ACTIONS(2151), 1, - anon_sym_local, - ACTIONS(2155), 1, - anon_sym_hook, - ACTIONS(2157), 1, - anon_sym_DOLLAR, - STATE(291), 1, - sym_integer, - STATE(325), 1, - sym_string_directive, - STATE(341), 1, - sym_constant, - STATE(849), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(2161), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(338), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(628), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - ACTIONS(2159), 4, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(69), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [42392] = 31, - ACTIONS(586), 1, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [43282] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(847), 1, + STATE(857), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [42500] = 31, - ACTIONS(586), 1, + [43390] = 31, + ACTIONS(862), 1, anon_sym_LBRACE, - ACTIONS(592), 1, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(594), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(596), 1, + ACTIONS(872), 1, anon_sym_LBRACK, - ACTIONS(602), 1, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(604), 1, + ACTIONS(880), 1, anon_sym_function, - ACTIONS(616), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(622), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(624), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(626), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(632), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(634), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(642), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(2151), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2155), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2157), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, STATE(291), 1, sym_integer, - STATE(325), 1, + STATE(295), 1, sym_string_directive, - STATE(341), 1, + STATE(328), 1, sym_constant, - STATE(851), 1, + STATE(854), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(630), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(636), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2153), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2161), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2159), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [42608] = 31, + [43498] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, ACTIONS(73), 1, anon_sym_copy, ACTIONS(75), 1, @@ -107868,143 +110072,147 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(77), 1, aux_sym_constant_token1, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2163), 1, - sym_id, - STATE(824), 1, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, + anon_sym_hook, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1287), 1, + STATE(1541), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [42716] = 31, - ACTIONS(25), 1, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [43606] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(67), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2264), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2268), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2270), 1, anon_sym_DOLLAR, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1559), 1, + STATE(862), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2266), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2274), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2272), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [42824] = 31, + [43714] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -108021,33 +110229,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1454), 1, + STATE(1457), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -108058,13 +110266,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -108081,7 +110289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [42932] = 31, + [43822] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -108096,52 +110304,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - ACTIONS(2015), 1, + ACTIONS(2061), 1, anon_sym_local, - ACTIONS(2019), 1, + ACTIONS(2065), 1, anon_sym_hook, - ACTIONS(2021), 1, + ACTIONS(2067), 1, anon_sym_DOLLAR, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1552), 1, + STATE(1584), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - ACTIONS(2017), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(2025), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -108153,97 +110361,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - ACTIONS(2023), 4, + ACTIONS(2069), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - [43040] = 31, - ACTIONS(25), 1, + [43930] = 31, + ACTIONS(862), 1, + anon_sym_LBRACE, + ACTIONS(868), 1, anon_sym_record, - ACTIONS(35), 1, + ACTIONS(870), 1, anon_sym_LPAREN, - ACTIONS(59), 1, + ACTIONS(872), 1, + anon_sym_LBRACK, + ACTIONS(874), 1, + anon_sym_local, + ACTIONS(878), 1, anon_sym_vector, - ACTIONS(65), 1, + ACTIONS(880), 1, + anon_sym_function, + ACTIONS(882), 1, + anon_sym_hook, + ACTIONS(890), 1, anon_sym_DOLLAR, - ACTIONS(67), 1, + ACTIONS(892), 1, anon_sym_PIPE, - ACTIONS(73), 1, + ACTIONS(898), 1, anon_sym_copy, - ACTIONS(75), 1, + ACTIONS(900), 1, anon_sym_schedule, - ACTIONS(77), 1, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(99), 1, + ACTIONS(908), 1, sym_id, - ACTIONS(101), 1, + ACTIONS(910), 1, sym_pattern, - ACTIONS(105), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(107), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(109), 1, + ACTIONS(918), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, + STATE(291), 1, sym_integer, - STATE(1269), 1, + STATE(295), 1, + sym_string_directive, + STATE(328), 1, sym_constant, - STATE(1395), 1, + STATE(334), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(876), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(906), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(912), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, + ACTIONS(894), 4, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(79), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [43148] = 31, + [44038] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, anon_sym_LPAREN, ACTIONS(59), 1, anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, ACTIONS(67), 1, anon_sym_PIPE, ACTIONS(73), 1, @@ -108252,144 +110458,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2061), 1, + anon_sym_local, + ACTIONS(2065), 1, + anon_sym_hook, + ACTIONS(2067), 1, + anon_sym_DOLLAR, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1391), 1, + STATE(1578), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [43256] = 31, - ACTIONS(25), 1, - anon_sym_record, - ACTIONS(35), 1, - anon_sym_LPAREN, - ACTIONS(59), 1, - anon_sym_vector, - ACTIONS(65), 1, - anon_sym_DOLLAR, - ACTIONS(67), 1, - anon_sym_PIPE, - ACTIONS(73), 1, - anon_sym_copy, - ACTIONS(75), 1, - anon_sym_schedule, - ACTIONS(77), 1, - aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, - ACTIONS(101), 1, - sym_pattern, - ACTIONS(105), 1, - sym_port, - ACTIONS(107), 1, - sym_floatp, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(115), 1, - anon_sym_local, - ACTIONS(117), 1, - anon_sym_function, - ACTIONS(119), 1, - anon_sym_hook, - ACTIONS(131), 1, - anon_sym_LBRACE, - ACTIONS(1931), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_string_directive, - STATE(1236), 1, - sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1562), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, + ACTIONS(2063), 2, anon_sym_table, anon_sym_set, - ACTIONS(71), 2, + ACTIONS(2071), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, ACTIONS(79), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [43364] = 31, + ACTIONS(2069), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [44146] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -108406,33 +110537,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, + STATE(1279), 1, sym_constant, - STATE(1563), 1, + STATE(1305), 1, sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -108443,13 +110574,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(71), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - ACTIONS(103), 2, + ACTIONS(105), 2, sym_ipv6, sym_ipv4, - STATE(1254), 2, + STATE(1274), 2, sym_interval, sym_string, ACTIONS(3), 3, @@ -108466,7 +110597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_F, sym_hex, sym_hostname, - [43472] = 31, + [44254] = 31, ACTIONS(25), 1, anon_sym_record, ACTIONS(35), 1, @@ -108483,479 +110614,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_schedule, ACTIONS(77), 1, aux_sym_constant_token1, - ACTIONS(99), 1, - sym_id, ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, sym_pattern, - ACTIONS(105), 1, - sym_port, ACTIONS(107), 1, - sym_floatp, + sym_port, ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, aux_sym_string_token1, - ACTIONS(115), 1, + ACTIONS(119), 1, anon_sym_local, - ACTIONS(117), 1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(119), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(131), 1, + ACTIONS(133), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1686), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(832), 1, sym_string_directive, - STATE(1236), 1, + STATE(1258), 1, sym_integer, - STATE(1269), 1, - sym_constant, - STATE(1514), 1, - sym_expr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(57), 2, - anon_sym_table, - anon_sym_set, - ACTIONS(71), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(103), 2, - sym_ipv6, - sym_ipv4, - STATE(1254), 2, - sym_interval, - sym_string, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(69), 4, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(79), 4, - anon_sym_T, - anon_sym_F, - sym_hex, - sym_hostname, - [43580] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1937), 18, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOLLAR, - anon_sym_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - sym_pattern, - sym_port, - aux_sym_string_token1, - ACTIONS(1942), 21, - anon_sym_COLON, - anon_sym_record, - anon_sym_local, - anon_sym_table, - anon_sym_set, - anon_sym_vector, - anon_sym_function, - anon_sym_hook, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_copy, - anon_sym_schedule, - aux_sym_constant_token1, - anon_sym_T, - anon_sym_F, - sym_id, - sym_ipv6, - sym_ipv4, - sym_floatp, - sym_hex, - sym_hostname, - [43633] = 25, - ACTIONS(2165), 1, - anon_sym_module, - ACTIONS(2167), 1, - anon_sym_export, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - anon_sym_global, - ACTIONS(2173), 1, - anon_sym_option, - ACTIONS(2175), 1, - anon_sym_const, - ACTIONS(2177), 1, - anon_sym_redef, - ACTIONS(2179), 1, - anon_sym_type, - ACTIONS(2181), 1, - anon_sym_event, - ACTIONS(2183), 1, - anon_sym_function, - ACTIONS(2185), 1, - anon_sym_hook, - ACTIONS(2187), 1, - anon_sym_ATdeprecated, - ACTIONS(2189), 1, - anon_sym_ATload, - ACTIONS(2193), 1, - anon_sym_ATload_DASHplugin, - ACTIONS(2195), 1, - anon_sym_ATprefixes, - ACTIONS(2197), 1, - anon_sym_ATif, - STATE(1807), 1, - sym_func_hdr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2191), 2, - anon_sym_ATload_DASHsigs, - anon_sym_ATunload, - ACTIONS(2199), 2, - anon_sym_ATifdef, - anon_sym_ATifndef, - ACTIONS(2201), 2, - anon_sym_ATendif, - anon_sym_ATelse, - STATE(1223), 2, - sym_decl, - aux_sym_source_file_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - STATE(1813), 3, - sym_func, - sym_hook, - sym_event, - STATE(1778), 11, - sym_module_decl, - sym_export_decl, - sym_global_decl, - sym_option_decl, - sym_const_decl, - sym_redef_decl, - sym_redef_enum_decl, - sym_redef_record_decl, - sym_type_decl, - sym_func_decl, - sym_preproc_directive, - [43728] = 25, - ACTIONS(141), 1, - anon_sym_RBRACE, - ACTIONS(2203), 1, - anon_sym_module, - ACTIONS(2206), 1, - anon_sym_export, - ACTIONS(2209), 1, - anon_sym_global, - ACTIONS(2212), 1, - anon_sym_option, - ACTIONS(2215), 1, - anon_sym_const, - ACTIONS(2218), 1, - anon_sym_redef, - ACTIONS(2221), 1, - anon_sym_type, - ACTIONS(2224), 1, - anon_sym_event, - ACTIONS(2227), 1, - anon_sym_function, - ACTIONS(2230), 1, - anon_sym_hook, - ACTIONS(2233), 1, - anon_sym_ATdeprecated, - ACTIONS(2236), 1, - anon_sym_ATload, - ACTIONS(2242), 1, - anon_sym_ATload_DASHplugin, - ACTIONS(2245), 1, - anon_sym_ATprefixes, - ACTIONS(2248), 1, - anon_sym_ATif, - STATE(1807), 1, - sym_func_hdr, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2239), 2, - anon_sym_ATload_DASHsigs, - anon_sym_ATunload, - ACTIONS(2251), 2, - anon_sym_ATifdef, - anon_sym_ATifndef, - ACTIONS(2254), 2, - anon_sym_ATendif, - anon_sym_ATelse, - STATE(1223), 2, - sym_decl, - aux_sym_source_file_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - STATE(1813), 3, - sym_func, - sym_hook, - sym_event, - STATE(1778), 11, - sym_module_decl, - sym_export_decl, - sym_global_decl, - sym_option_decl, - sym_const_decl, - sym_redef_decl, - sym_redef_enum_decl, - sym_redef_record_decl, - sym_type_decl, - sym_func_decl, - sym_preproc_directive, - [43823] = 25, - ACTIONS(2165), 1, - anon_sym_module, - ACTIONS(2167), 1, - anon_sym_export, - ACTIONS(2171), 1, - anon_sym_global, - ACTIONS(2173), 1, - anon_sym_option, - ACTIONS(2175), 1, - anon_sym_const, - ACTIONS(2177), 1, - anon_sym_redef, - ACTIONS(2179), 1, - anon_sym_type, - ACTIONS(2181), 1, - anon_sym_event, - ACTIONS(2183), 1, - anon_sym_function, - ACTIONS(2185), 1, - anon_sym_hook, - ACTIONS(2187), 1, - anon_sym_ATdeprecated, - ACTIONS(2189), 1, - anon_sym_ATload, - ACTIONS(2193), 1, - anon_sym_ATload_DASHplugin, - ACTIONS(2195), 1, - anon_sym_ATprefixes, - ACTIONS(2197), 1, - anon_sym_ATif, - ACTIONS(2257), 1, - anon_sym_RBRACE, - STATE(1807), 1, - sym_func_hdr, + STATE(1279), 1, + sym_constant, + STATE(1585), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2191), 2, - anon_sym_ATload_DASHsigs, - anon_sym_ATunload, - ACTIONS(2199), 2, - anon_sym_ATifdef, - anon_sym_ATifndef, - ACTIONS(2201), 2, - anon_sym_ATendif, - anon_sym_ATelse, - STATE(1223), 2, - sym_decl, - aux_sym_source_file_repeat1, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - STATE(1813), 3, - sym_func, - sym_hook, - sym_event, - STATE(1778), 11, - sym_module_decl, - sym_export_decl, - sym_global_decl, - sym_option_decl, - sym_const_decl, - sym_redef_decl, - sym_redef_enum_decl, - sym_redef_record_decl, - sym_type_decl, - sym_func_decl, - sym_preproc_directive, - [43918] = 25, - ACTIONS(2165), 1, - anon_sym_module, - ACTIONS(2167), 1, - anon_sym_export, - ACTIONS(2171), 1, - anon_sym_global, - ACTIONS(2173), 1, - anon_sym_option, - ACTIONS(2175), 1, - anon_sym_const, - ACTIONS(2177), 1, - anon_sym_redef, - ACTIONS(2179), 1, - anon_sym_type, - ACTIONS(2181), 1, - anon_sym_event, - ACTIONS(2183), 1, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [44362] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(65), 1, + anon_sym_DOLLAR, + ACTIONS(67), 1, + anon_sym_PIPE, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(119), 1, + anon_sym_local, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(2185), 1, + ACTIONS(123), 1, anon_sym_hook, - ACTIONS(2187), 1, - anon_sym_ATdeprecated, - ACTIONS(2189), 1, - anon_sym_ATload, - ACTIONS(2193), 1, - anon_sym_ATload_DASHplugin, - ACTIONS(2195), 1, - anon_sym_ATprefixes, - ACTIONS(2197), 1, - anon_sym_ATif, - ACTIONS(2259), 1, - anon_sym_RBRACE, - STATE(1807), 1, - sym_func_hdr, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1586), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2191), 2, - anon_sym_ATload_DASHsigs, - anon_sym_ATunload, - ACTIONS(2199), 2, - anon_sym_ATifdef, - anon_sym_ATifndef, - ACTIONS(2201), 2, - anon_sym_ATendif, - anon_sym_ATelse, - STATE(1224), 2, - sym_decl, - aux_sym_source_file_repeat1, + ACTIONS(57), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(71), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + STATE(1274), 2, + sym_interval, + sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - STATE(1813), 3, - sym_func, - sym_hook, - sym_event, - STATE(1778), 11, - sym_module_decl, - sym_export_decl, - sym_global_decl, - sym_option_decl, - sym_const_decl, - sym_redef_decl, - sym_redef_enum_decl, - sym_redef_record_decl, - sym_type_decl, - sym_func_decl, - sym_preproc_directive, - [44013] = 25, - ACTIONS(2165), 1, - anon_sym_module, - ACTIONS(2167), 1, - anon_sym_export, - ACTIONS(2171), 1, - anon_sym_global, - ACTIONS(2173), 1, - anon_sym_option, - ACTIONS(2175), 1, - anon_sym_const, - ACTIONS(2177), 1, - anon_sym_redef, - ACTIONS(2179), 1, - anon_sym_type, - ACTIONS(2181), 1, - anon_sym_event, - ACTIONS(2183), 1, + ACTIONS(69), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + [44470] = 31, + ACTIONS(25), 1, + anon_sym_record, + ACTIONS(35), 1, + anon_sym_LPAREN, + ACTIONS(59), 1, + anon_sym_vector, + ACTIONS(73), 1, + anon_sym_copy, + ACTIONS(75), 1, + anon_sym_schedule, + ACTIONS(77), 1, + aux_sym_constant_token1, + ACTIONS(101), 1, + sym_id, + ACTIONS(103), 1, + sym_pattern, + ACTIONS(107), 1, + sym_port, + ACTIONS(109), 1, + sym_floatp, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(121), 1, anon_sym_function, - ACTIONS(2185), 1, + ACTIONS(133), 1, + anon_sym_LBRACE, + ACTIONS(1686), 1, + anon_sym_LBRACK, + ACTIONS(2280), 1, + anon_sym_local, + ACTIONS(2284), 1, anon_sym_hook, - ACTIONS(2187), 1, - anon_sym_ATdeprecated, - ACTIONS(2189), 1, - anon_sym_ATload, - ACTIONS(2193), 1, - anon_sym_ATload_DASHplugin, - ACTIONS(2195), 1, - anon_sym_ATprefixes, - ACTIONS(2197), 1, - anon_sym_ATif, - ACTIONS(2261), 1, - anon_sym_RBRACE, - STATE(1807), 1, - sym_func_hdr, + ACTIONS(2286), 1, + anon_sym_DOLLAR, + ACTIONS(2288), 1, + anon_sym_PIPE, + STATE(832), 1, + sym_string_directive, + STATE(1258), 1, + sym_integer, + STATE(1279), 1, + sym_constant, + STATE(1478), 1, + sym_expr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2191), 2, - anon_sym_ATload_DASHsigs, - anon_sym_ATunload, - ACTIONS(2199), 2, - anon_sym_ATifdef, - anon_sym_ATifndef, - ACTIONS(2201), 2, - anon_sym_ATendif, - anon_sym_ATelse, - STATE(1222), 2, - sym_decl, - aux_sym_source_file_repeat1, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + ACTIONS(105), 2, + sym_ipv6, + sym_ipv4, + ACTIONS(2282), 2, + anon_sym_table, + anon_sym_set, + ACTIONS(2292), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1274), 2, + sym_interval, + sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - STATE(1813), 3, - sym_func, - sym_hook, - sym_event, - STATE(1778), 11, - sym_module_decl, - sym_export_decl, - sym_global_decl, - sym_option_decl, - sym_const_decl, - sym_redef_decl, - sym_redef_enum_decl, - sym_redef_record_decl, - sym_type_decl, - sym_func_decl, - sym_preproc_directive, - [44108] = 5, - ACTIONS(2263), 1, - anon_sym_EQ, + ACTIONS(79), 4, + anon_sym_T, + anon_sym_F, + sym_hex, + sym_hostname, + ACTIONS(2290), 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + [44578] = 5, + ACTIONS(1849), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1560), 2, + ACTIONS(1514), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1558), 35, + ACTIONS(1510), 36, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RPAREN, @@ -108991,69 +110877,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [44162] = 5, - ACTIONS(2265), 1, - anon_sym_of, + anon_sym_ATpragma, + [44633] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(482), 2, - anon_sym_ATload, - anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(480), 35, + ACTIONS(1975), 18, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_AMPdeprecated, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - anon_sym_ATdeprecated, - anon_sym_ATload_DASHsigs, - anon_sym_ATload_DASHplugin, - anon_sym_ATunload, - anon_sym_ATprefixes, - anon_sym_ATifdef, - anon_sym_ATifndef, - anon_sym_ATendif, - anon_sym_ATelse, - [44216] = 5, - ACTIONS(1754), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOLLAR, + anon_sym_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_ATDIR, + anon_sym_ATFILENAME, + sym_pattern, + sym_port, + aux_sym_string_token1, + ACTIONS(1980), 21, anon_sym_COLON, + anon_sym_record, + anon_sym_local, + anon_sym_table, + anon_sym_set, + anon_sym_vector, + anon_sym_function, + anon_sym_hook, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_copy, + anon_sym_schedule, + aux_sym_constant_token1, + anon_sym_T, + anon_sym_F, + sym_id, + sym_ipv6, + sym_ipv4, + sym_floatp, + sym_hex, + sym_hostname, + [44686] = 5, + ACTIONS(2320), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1476), 2, + ACTIONS(574), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1472), 35, + ACTIONS(572), 36, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RPAREN, @@ -109089,20 +110976,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [44270] = 5, - ACTIONS(2267), 1, + anon_sym_ATpragma, + [44741] = 5, + ACTIONS(2322), 1, anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1486), 2, + ACTIONS(1520), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1482), 35, + ACTIONS(1516), 36, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RPAREN, @@ -109138,25 +111026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [44324] = 9, - ACTIONS(608), 1, + anon_sym_ATpragma, + [44796] = 9, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - STATE(1812), 1, + STATE(1835), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2273), 2, + ACTIONS(2328), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1237), 2, + STATE(1254), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109165,7 +111054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(2269), 10, + ACTIONS(2324), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109176,7 +111065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2271), 13, + anon_sym_ATpragma, + ACTIONS(2326), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109190,25 +111080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44385] = 9, - ACTIONS(608), 1, + [44858] = 9, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - STATE(1810), 1, + STATE(1837), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2277), 2, + ACTIONS(2332), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1237), 2, + STATE(1254), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109217,7 +111107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(2275), 10, + ACTIONS(2330), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109228,7 +111118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2271), 13, + anon_sym_ATpragma, + ACTIONS(2326), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109242,25 +111133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44446] = 9, - ACTIONS(608), 1, + [44920] = 9, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - STATE(1814), 1, + STATE(1838), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2281), 2, + ACTIONS(2336), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1237), 2, + STATE(1254), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109269,7 +111160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(2279), 10, + ACTIONS(2334), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109280,7 +111171,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2271), 13, + anon_sym_ATpragma, + ACTIONS(2326), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109294,25 +111186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44507] = 9, - ACTIONS(608), 1, + [44982] = 9, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - STATE(1811), 1, + STATE(1836), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2285), 2, + ACTIONS(2340), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1237), 2, + STATE(1254), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109321,7 +111213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(2283), 10, + ACTIONS(2338), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109332,7 +111224,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2271), 13, + anon_sym_ATpragma, + ACTIONS(2326), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109346,116 +111239,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44568] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1428), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1426), 27, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - sym_time_unit, - [44618] = 5, - ACTIONS(2287), 1, - sym_time_unit, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1416), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1414), 26, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [44670] = 8, - ACTIONS(608), 1, + [45044] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1791), 2, + ACTIONS(1786), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1239), 2, + STATE(1255), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109464,7 +111264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1789), 10, + ACTIONS(1784), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109475,7 +111275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2271), 13, + anon_sym_ATpragma, + ACTIONS(2326), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109489,70 +111290,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44728] = 5, - ACTIONS(2287), 1, - sym_time_unit, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1416), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1414), 26, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [44780] = 8, - ACTIONS(2289), 1, + [45103] = 8, + ACTIONS(2342), 1, anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1778), 2, + ACTIONS(1818), 2, anon_sym_ATload, anon_sym_ATif, - STATE(1239), 2, + STATE(1255), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1783), 8, + ACTIONS(1823), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -109561,7 +111315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(1776), 10, + ACTIONS(1816), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -109572,7 +111326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - ACTIONS(2292), 13, + anon_sym_ATpragma, + ACTIONS(2345), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -109586,22 +111341,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [44838] = 6, - ACTIONS(1754), 1, + [45162] = 6, + ACTIONS(1849), 1, anon_sym_COLON, - ACTIONS(2295), 1, + ACTIONS(2348), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1476), 2, + ACTIONS(1514), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1472), 32, + ACTIONS(1510), 33, anon_sym_LBRACE, anon_sym_AMPdeprecated, anon_sym_AMPbroker_allow_complex_type, @@ -109634,52 +111389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [44892] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(113), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(111), 26, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, - anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [44941] = 4, + anon_sym_ATpragma, + [45217] = 5, + ACTIONS(2350), 1, + sym_time_unit, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109687,7 +111400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(482), 9, + ACTIONS(1458), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109697,12 +111410,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(480), 26, + ACTIONS(1456), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109710,7 +111424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109724,9 +111437,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [44990] = 5, - ACTIONS(2297), 1, - anon_sym_LPAREN, + [45269] = 5, + ACTIONS(2350), 1, + sym_time_unit, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109734,7 +111447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1574), 9, + ACTIONS(1458), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109744,19 +111457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1570), 25, + ACTIONS(1456), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109770,7 +111484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45041] = 4, + [45321] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109778,7 +111492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(544), 9, + ACTIONS(1454), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109788,12 +111502,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(542), 26, + ACTIONS(1452), 27, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109801,7 +111516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109815,7 +111529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45090] = 4, + sym_time_unit, + [45371] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109823,7 +111538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1592), 9, + ACTIONS(1674), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109833,12 +111548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1590), 26, + ACTIONS(1672), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109846,7 +111562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109860,7 +111575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45139] = 4, + [45420] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109868,7 +111583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1612), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109878,12 +111593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1610), 26, + ACTIONS(115), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109891,7 +111607,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109905,9 +111620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45188] = 5, - ACTIONS(2299), 1, - anon_sym_of, + [45469] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -109915,7 +111628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(482), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109925,11 +111638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(480), 25, + ACTIONS(115), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109937,7 +111652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109951,15 +111665,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45239] = 4, + [45518] = 8, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + STATE(1285), 1, + sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1632), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -109969,12 +111692,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1630), 26, + ACTIONS(115), 21, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [45575] = 4, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1678), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(1676), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -109982,7 +111746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -109996,7 +111759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45288] = 4, + [45624] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110004,7 +111767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(336), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110014,12 +111777,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 26, + ACTIONS(334), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110027,7 +111791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110041,9 +111804,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45337] = 5, - ACTIONS(2301), 1, - anon_sym_COLON, + [45673] = 5, + ACTIONS(2358), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110051,7 +111814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1476), 9, + ACTIONS(1602), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110061,19 +111824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1472), 25, + ACTIONS(1598), 25, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, - anon_sym_LPAREN, + anon_sym_DASH_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110087,24 +111850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45388] = 8, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - STATE(1268), 1, - sym_index_slice, + [45724] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110114,17 +111868,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 21, + ACTIONS(115), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DASH_EQ, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -110136,9 +111895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45445] = 5, - ACTIONS(2309), 1, - anon_sym_COLON, + [45773] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110146,7 +111903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1486), 9, + ACTIONS(758), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110156,11 +111913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1482), 25, + ACTIONS(756), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110168,7 +111927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110182,7 +111940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45496] = 4, + [45822] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110190,7 +111948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(1638), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110200,12 +111958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 26, + ACTIONS(1636), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110213,7 +111972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110227,7 +111985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45545] = 4, + [45871] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110235,7 +111993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1416), 9, + ACTIONS(1620), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110245,12 +112003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1414), 26, + ACTIONS(1618), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110258,7 +112017,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110272,7 +112030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45594] = 4, + [45920] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110280,7 +112038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1480), 9, + ACTIONS(1638), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110290,12 +112048,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1478), 26, + ACTIONS(1636), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110303,7 +112062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110317,24 +112075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45643] = 8, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - STATE(1268), 1, - sym_index_slice, + [45969] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(139), 9, + ACTIONS(340), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110344,17 +112093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(133), 21, + ACTIONS(338), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DASH_EQ, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -110366,7 +112120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45700] = 4, + [46018] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110374,7 +112128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1604), 9, + ACTIONS(762), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110384,12 +112138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 26, + ACTIONS(760), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110397,7 +112152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110411,7 +112165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45749] = 4, + [46067] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110419,7 +112173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1600), 9, + ACTIONS(1458), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110429,12 +112183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1598), 26, + ACTIONS(1456), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110442,7 +112197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110456,7 +112210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45798] = 4, + [46116] = 5, + ACTIONS(2360), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110464,7 +112220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1612), 9, + ACTIONS(1520), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110474,12 +112230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1610), 26, + ACTIONS(1516), 25, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110487,7 +112243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110501,7 +112256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45847] = 4, + [46167] = 5, + ACTIONS(2362), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110509,7 +112266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1612), 9, + ACTIONS(574), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110519,12 +112276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1610), 26, + ACTIONS(572), 25, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110532,7 +112289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110546,7 +112302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45896] = 4, + [46218] = 5, + ACTIONS(2364), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110554,7 +112312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(139), 9, + ACTIONS(1514), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110564,12 +112322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(133), 26, + ACTIONS(1510), 25, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110577,7 +112335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110591,7 +112348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45945] = 4, + [46269] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110599,7 +112356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(504), 9, + ACTIONS(1458), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110609,12 +112366,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(502), 26, + ACTIONS(1456), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110622,7 +112380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110636,7 +112393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [45994] = 4, + [46318] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110644,7 +112401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(323), 9, + ACTIONS(1602), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110654,12 +112411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(321), 26, + ACTIONS(1598), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110667,7 +112425,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110681,7 +112438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46043] = 4, + [46367] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110689,7 +112446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(524), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110699,12 +112456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(522), 26, + ACTIONS(1628), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110712,7 +112470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110726,7 +112483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46092] = 4, + [46416] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110734,7 +112491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(299), 9, + ACTIONS(1638), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110744,12 +112501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(297), 26, + ACTIONS(1636), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110757,7 +112515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110771,7 +112528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46141] = 4, + [46465] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110779,7 +112536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1604), 9, + ACTIONS(570), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110789,12 +112546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 26, + ACTIONS(568), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110802,7 +112560,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110816,15 +112573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46190] = 4, + [46514] = 8, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + STATE(1285), 1, + sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1604), 9, + ACTIONS(141), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110834,12 +112600,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 26, + ACTIONS(135), 21, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [46571] = 4, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(578), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(576), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110847,7 +112654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110861,7 +112667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46239] = 4, + [46620] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110869,7 +112675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(139), 9, + ACTIONS(141), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110879,12 +112685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(133), 26, + ACTIONS(135), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110892,7 +112699,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110906,7 +112712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46288] = 4, + [46669] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110914,7 +112720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1574), 9, + ACTIONS(1626), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110924,12 +112730,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1570), 26, + ACTIONS(1624), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110937,7 +112744,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110951,7 +112757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46337] = 4, + [46718] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -110959,7 +112765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1416), 9, + ACTIONS(1670), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -110969,12 +112775,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1414), 26, + ACTIONS(1668), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -110982,7 +112789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -110996,7 +112802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46386] = 4, + [46767] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111004,7 +112810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(514), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111014,12 +112820,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(512), 26, + ACTIONS(1628), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -111027,7 +112834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -111041,7 +112847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46435] = 4, + [46816] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111049,7 +112855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(494), 9, + ACTIONS(752), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111059,12 +112865,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(492), 26, + ACTIONS(750), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -111072,7 +112879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -111086,7 +112892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46484] = 4, + [46865] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111094,7 +112900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1596), 9, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111104,12 +112910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1594), 26, + ACTIONS(1628), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -111117,7 +112924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -111131,7 +112937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46533] = 4, + [46914] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111139,7 +112945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(748), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111149,12 +112955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 26, + ACTIONS(746), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -111162,7 +112969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -111176,7 +112982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46582] = 4, + [46963] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111184,7 +112990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(534), 9, + ACTIONS(574), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111194,12 +113000,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(532), 26, + ACTIONS(572), 26, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, @@ -111207,7 +113014,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -111221,60 +113027,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46631] = 13, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - STATE(1268), 1, - sym_index_slice, + [47012] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(117), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(115), 26, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [47061] = 4, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(141), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1610), 13, + anon_sym_QMARK, + ACTIONS(135), 26, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DASH_EQ, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46697] = 4, + [47110] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -111282,7 +113125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2147), 14, + ACTIONS(2312), 14, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, @@ -111297,7 +113140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pattern, sym_port, aux_sym_string_token1, - ACTIONS(2149), 20, + ACTIONS(2314), 20, anon_sym_record, anon_sym_local, anon_sym_table, @@ -111318,575 +113161,583 @@ static const uint16_t ts_small_parse_table[] = { sym_floatp, sym_hex, sym_hostname, - [46745] = 19, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [47158] = 19, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2325), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, anon_sym_COMMA, - ACTIONS(2327), 1, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2321), 4, + ACTIONS(2366), 4, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(2313), 6, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [46823] = 9, - ACTIONS(2303), 1, + [47236] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(113), 9, - anon_sym_EQ, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(111), 17, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PLUS_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, anon_sym_RBRACK, + anon_sym_QMARK_DOLLAR, + [47308] = 19, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [46881] = 13, - ACTIONS(113), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2057), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [47386] = 13, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 13, + ACTIONS(115), 13, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DASH_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [46947] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [47452] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1602), 5, + ACTIONS(135), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47023] = 14, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + [47528] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2329), 2, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 11, + ACTIONS(115), 7, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_PLUS_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [47091] = 9, - ACTIONS(2303), 1, + [47600] = 13, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 9, - anon_sym_EQ, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1602), 17, + ACTIONS(1636), 13, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [47149] = 16, - ACTIONS(2303), 1, + [47666] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(117), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1602), 7, + anon_sym_QMARK, + ACTIONS(115), 17, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_in, anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [47221] = 16, - ACTIONS(2303), 1, + [47724] = 14, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 7, + ACTIONS(115), 11, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_QMARK_DOLLAR, - [47293] = 19, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2027), 4, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [47371] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_QMARK_DOLLAR, + [47792] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(133), 5, + ACTIONS(1628), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47447] = 8, - ACTIONS(2303), 1, + [47868] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(113), 9, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -111896,17 +113747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(111), 18, - anon_sym_COLON, + ACTIONS(1628), 17, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, @@ -111915,602 +113765,693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [47501] = 20, - ACTIONS(652), 1, + [47926] = 20, + ACTIONS(1302), 1, anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2659), 1, + STATE(2203), 1, sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47579] = 20, - ACTIONS(781), 1, + [48004] = 20, + ACTIONS(1378), 1, anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, + sym_index_slice, + STATE(2313), 1, + sym_assert_msg, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [48082] = 20, + ACTIONS(1342), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2253), 1, + STATE(2231), 1, sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47657] = 20, - ACTIONS(821), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48160] = 8, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2510), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(141), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(135), 18, + anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [48214] = 13, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2398), 1, + anon_sym_BANG, + ACTIONS(2402), 1, + anon_sym_QMARK, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2392), 2, + anon_sym_as, + anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47735] = 20, - ACTIONS(841), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, + ACTIONS(115), 11, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [48278] = 14, + ACTIONS(117), 1, + anon_sym_EQ, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2764), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47813] = 20, - ACTIONS(2027), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, + ACTIONS(115), 9, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2325), 1, anon_sym_COMMA, - ACTIONS(2333), 1, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - ACTIONS(2339), 1, - anon_sym_COLON, - ACTIONS(2345), 1, + [48344] = 20, + ACTIONS(1362), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2623), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47891] = 20, - ACTIONS(773), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48422] = 20, + ACTIONS(2057), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2406), 1, + anon_sym_COLON, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2465), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [47969] = 20, - ACTIONS(813), 1, + [48500] = 20, + ACTIONS(1246), 1, anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2596), 1, + STATE(2759), 1, sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48047] = 20, - ACTIONS(833), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48578] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2176), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(1628), 3, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48125] = 20, - ACTIONS(2027), 1, - anon_sym_RBRACE, - ACTIONS(2071), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48652] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(1628), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK_DOLLAR, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48203] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48722] = 20, + ACTIONS(1310), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2302), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(133), 3, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48277] = 8, - ACTIONS(2303), 1, + [48800] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(139), 9, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1630), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -112520,17 +114461,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(133), 18, + ACTIONS(1628), 15, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, @@ -112539,167 +114477,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [48331] = 16, - ACTIONS(2303), 1, + [48856] = 20, + ACTIONS(2057), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2345), 1, - anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2414), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(111), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK_DOLLAR, - ACTIONS(2347), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48401] = 20, - ACTIONS(666), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [48934] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2334), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(115), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK_DOLLAR, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48479] = 9, - ACTIONS(2303), 1, + [49004] = 13, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + ACTIONS(2398), 1, + anon_sym_BANG, + ACTIONS(2402), 1, + anon_sym_QMARK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(113), 9, - anon_sym_EQ, + ACTIONS(2394), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2396), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(111), 15, + ACTIONS(1636), 11, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_in, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [48535] = 5, - ACTIONS(2359), 1, + [49068] = 5, + ACTIONS(2416), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -112708,7 +114650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(482), 9, + ACTIONS(574), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -112718,16 +114660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(480), 22, + ACTIONS(572), 22, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -112741,415 +114683,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [48583] = 20, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [49116] = 20, + ACTIONS(2057), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + ACTIONS(2418), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, - STATE(2627), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48661] = 20, - ACTIONS(2027), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [49194] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2325), 1, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2392), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(117), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(115), 15, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(2333), 1, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + [49250] = 20, + ACTIONS(1180), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2361), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2570), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48739] = 13, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + [49328] = 20, + ACTIONS(1350), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2349), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2382), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 11, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [48803] = 14, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + [49406] = 20, + ACTIONS(1318), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2349), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2285), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2355), 2, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 9, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [48869] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [49484] = 20, + ACTIONS(1322), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2390), 1, + anon_sym_COMMA, + STATE(1285), 1, sym_index_slice, + STATE(2848), 1, + sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1602), 3, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [48943] = 20, - ACTIONS(765), 1, + [49562] = 20, + ACTIONS(1370), 1, anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2443), 1, + STATE(2829), 1, sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49021] = 16, - ACTIONS(2303), 1, + [49640] = 20, + ACTIONS(2057), 1, + anon_sym_RBRACE, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(1602), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK_DOLLAR, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49091] = 9, - ACTIONS(2303), 1, + [49718] = 8, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1604), 9, + ACTIONS(117), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -113159,304 +115163,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1602), 15, + ACTIONS(115), 18, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_RBRACK, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [49147] = 13, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2349), 1, - anon_sym_BANG, - ACTIONS(2353), 1, - anon_sym_QMARK, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2335), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2351), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, - anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - ACTIONS(1610), 11, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [49211] = 20, - ACTIONS(789), 1, + [49772] = 20, + ACTIONS(1334), 1, anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, + ACTIONS(2390), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2544), 1, + STATE(2596), 1, sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49289] = 20, - ACTIONS(805), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [49850] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2337), 1, - anon_sym_COMMA, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, - STATE(2704), 1, - sym_assert_msg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(135), 3, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49367] = 20, - ACTIONS(2027), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [49924] = 19, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2325), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2366), 1, + anon_sym_COLON, + ACTIONS(2370), 1, anon_sym_COMMA, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, - anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2363), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2410), 1, + anon_sym_EQ, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49445] = 19, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2321), 1, - anon_sym_COLON, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, - anon_sym_EQ, - ACTIONS(2349), 1, - anon_sym_BANG, - ACTIONS(2353), 1, - anon_sym_QMARK, - STATE(1268), 1, - sym_index_slice, + [49999] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2341), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2357), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2343), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(1514), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49520] = 4, + anon_sym_QMARK, + ACTIONS(1510), 22, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [50044] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -113464,7 +115401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1476), 9, + ACTIONS(1520), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -113474,16 +115411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1472), 22, + ACTIONS(1516), 22, anon_sym_COLON, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -113497,66 +115434,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [49565] = 19, - ACTIONS(2027), 1, + [50089] = 19, + ACTIONS(2057), 1, anon_sym_COLON, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2325), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, anon_sym_COMMA, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, - anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2410), 1, + anon_sym_EQ, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49640] = 6, - ACTIONS(2297), 1, + [50164] = 6, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2365), 1, + ACTIONS(2420), 1, anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -113565,7 +115502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1574), 9, + ACTIONS(1602), 9, anon_sym_EQ, anon_sym_PIPE, anon_sym_BANG, @@ -113575,14 +115512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_QMARK, - ACTIONS(1570), 20, + ACTIONS(1598), 20, anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_in, anon_sym_LBRACK, anon_sym_as, - anon_sym_DASH_EQ, anon_sym_DOLLAR, anon_sym_is, anon_sym_STAR, @@ -113596,13687 +115533,13703 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - [49689] = 4, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1486), 9, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1482), 22, - anon_sym_COLON, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_in, + [50213] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_DASH_EQ, + ACTIONS(2356), 1, anon_sym_DOLLAR, - anon_sym_is, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [49734] = 18, - ACTIONS(2297), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(2373), 1, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2422), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49806] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [50285] = 18, + ACTIONS(2145), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2387), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49878] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [50357] = 18, + ACTIONS(1246), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2389), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [49950] = 16, - ACTIONS(2303), 1, + [50429] = 18, + ACTIONS(2201), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(111), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOLLAR, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50018] = 9, - ACTIONS(2303), 1, + [50501] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2424), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(113), 9, - anon_sym_EQ, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + [50573] = 18, + ACTIONS(1895), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(111), 13, - anon_sym_LBRACE, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_in, anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [50072] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [50645] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2391), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2426), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50144] = 13, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + [50717] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2377), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2428), 1, + anon_sym_RBRACK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 9, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, + [50789] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2430), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, anon_sym_DASH_EQ, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [50206] = 14, - ACTIONS(113), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [50861] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2377), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2432), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2383), 2, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(111), 7, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_DASH_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [50270] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [50933] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2393), 1, + ACTIONS(2434), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50342] = 18, - ACTIONS(1602), 1, - anon_sym_LBRACE, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51005] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2436), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50414] = 16, - ACTIONS(2303), 1, + [51077] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2438), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1602), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOLLAR, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50482] = 9, - ACTIONS(2303), 1, + [51149] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - STATE(1268), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2440), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1604), 9, - anon_sym_EQ, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, + [51221] = 18, + ACTIONS(2103), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(1602), 13, - anon_sym_LBRACE, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_in, anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [50536] = 18, - ACTIONS(2109), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [51293] = 18, + ACTIONS(1302), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50608] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51365] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2395), 1, + ACTIONS(2442), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50680] = 13, - ACTIONS(1612), 1, - anon_sym_EQ, - ACTIONS(2303), 1, + [51437] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2377), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2444), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - ACTIONS(1610), 9, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_LPAREN, - anon_sym_DASH_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [50742] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51509] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2397), 1, + ACTIONS(2446), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50814] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51581] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2399), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2448), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50886] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51653] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2401), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2450), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [50958] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51725] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2403), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2452), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51030] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51797] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2405), 1, + ACTIONS(2454), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51102] = 18, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51869] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2456), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51174] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [51941] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2407), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2458), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51246] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52013] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2409), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2460), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51318] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52085] = 18, + ACTIONS(2099), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2411), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51390] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52157] = 18, + ACTIONS(1310), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [52229] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2413), 1, + ACTIONS(2462), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51462] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52301] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2415), 1, + ACTIONS(2464), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51534] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52373] = 18, + ACTIONS(1800), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2417), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51606] = 18, - ACTIONS(2297), 1, + [52445] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2466), 1, + anon_sym_SEMI, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [52517] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2468), 1, + anon_sym_LBRACE, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2470), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2484), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2486), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2480), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2472), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2476), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [52589] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2419), 1, + ACTIONS(2488), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51678] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52661] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2421), 1, + ACTIONS(2490), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51750] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52733] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2423), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2492), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51822] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52805] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2425), 1, + ACTIONS(2494), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51894] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52877] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2427), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2496), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [51966] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [52949] = 18, + ACTIONS(2141), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2429), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52038] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53021] = 18, + ACTIONS(1322), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [53093] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2431), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2498), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52110] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53165] = 18, + ACTIONS(1798), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2433), 1, - anon_sym_RBRACK, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52182] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53237] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2435), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2500), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52254] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53309] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2437), 1, + ACTIONS(2502), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52326] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53381] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, - anon_sym_EQ, - ACTIONS(2377), 1, - anon_sym_BANG, - ACTIONS(2381), 1, - anon_sym_QMARK, - ACTIONS(2439), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2369), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2371), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2375), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [52398] = 18, - ACTIONS(2297), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2441), 1, + ACTIONS(2504), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52470] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53453] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2443), 1, + ACTIONS(2506), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52542] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53525] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2445), 1, + ACTIONS(2508), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52614] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53597] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2447), 1, + ACTIONS(2510), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52686] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53669] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2449), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2512), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52758] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53741] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2451), 1, + ACTIONS(2514), 1, anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52830] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53813] = 18, + ACTIONS(2119), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2453), 1, - anon_sym_SEMI, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52902] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53885] = 18, + ACTIONS(1334), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2455), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [52974] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [53957] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2457), 1, + ACTIONS(2516), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53046] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54029] = 18, + ACTIONS(1843), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2459), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53118] = 18, - ACTIONS(2115), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54101] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2518), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53190] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54173] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2461), 1, + ACTIONS(2520), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53262] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54245] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2463), 1, + ACTIONS(2522), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53334] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54317] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2465), 1, + ACTIONS(2524), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53406] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54389] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2467), 1, + ACTIONS(2526), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53478] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54461] = 18, + ACTIONS(2111), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, - anon_sym_EQ, - ACTIONS(2377), 1, - anon_sym_BANG, - ACTIONS(2381), 1, - anon_sym_QMARK, - ACTIONS(2469), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2369), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2371), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2375), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [53550] = 18, - ACTIONS(2297), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2471), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53622] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54533] = 18, + ACTIONS(1342), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2473), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53694] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54605] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2475), 1, + ACTIONS(2528), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53766] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54677] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2477), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2530), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53838] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54749] = 18, + ACTIONS(1792), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2479), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53910] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54821] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2481), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2532), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [53982] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54893] = 18, + ACTIONS(2137), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2483), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54054] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [54965] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2485), 1, + ACTIONS(2534), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54126] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55037] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2487), 1, + ACTIONS(2536), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54198] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55109] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2538), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54270] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55181] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2491), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2540), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54342] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55253] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2542), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54414] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55325] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2495), 1, + ACTIONS(2544), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54486] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55397] = 18, + ACTIONS(2115), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54558] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55469] = 18, + ACTIONS(1350), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2499), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54630] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55541] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2501), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2546), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54702] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55613] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2503), 1, + ACTIONS(2548), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54774] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55685] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2505), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2550), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54846] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55757] = 18, + ACTIONS(1772), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54918] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55829] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2507), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2552), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [54990] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55901] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2509), 1, + ACTIONS(2554), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55062] = 18, - ACTIONS(2079), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [55973] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2556), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55134] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56045] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2511), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2558), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55206] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56117] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2513), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2560), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55278] = 18, - ACTIONS(652), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56189] = 18, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55350] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56261] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2515), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2562), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55422] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56333] = 18, + ACTIONS(2127), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2517), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55494] = 18, - ACTIONS(2113), 1, - anon_sym_RBRACK, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56405] = 18, + ACTIONS(1362), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55566] = 18, - ACTIONS(2297), 1, + [56477] = 6, + ACTIONS(2564), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2519), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, + STATE(1250), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(1602), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55638] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_QMARK, + ACTIONS(1598), 19, + anon_sym_SEMI, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [56525] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2521), 1, + ACTIONS(2566), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55710] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56597] = 18, + ACTIONS(1758), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2523), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55782] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56669] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2525), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2568), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55854] = 18, - ACTIONS(1863), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56741] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2570), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55926] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56813] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2527), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2572), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [55998] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56885] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2529), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2574), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56070] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [56957] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2531), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2576), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56142] = 18, - ACTIONS(2075), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57029] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2578), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56214] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57101] = 18, + ACTIONS(2131), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2533), 1, - anon_sym_RBRACK, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56286] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57173] = 18, + ACTIONS(1370), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2535), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56358] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57245] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2537), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2580), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56430] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57317] = 18, + ACTIONS(1762), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2539), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56502] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57389] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2541), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2582), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56574] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57461] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2543), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2584), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56646] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57533] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2545), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2586), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56718] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57605] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2547), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2588), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56790] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57677] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2549), 1, + ACTIONS(2590), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56862] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57749] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2551), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2592), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [56934] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57821] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2553), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2594), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57006] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57893] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2555), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2596), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57078] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [57965] = 18, + ACTIONS(2107), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2557), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57150] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58037] = 18, + ACTIONS(1378), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2559), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57222] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58109] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2561), 1, + ACTIONS(2598), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57294] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58181] = 18, + ACTIONS(1730), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2563), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57366] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58253] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2565), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2600), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57438] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58325] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2567), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2602), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57510] = 18, - ACTIONS(2095), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58397] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2604), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57582] = 18, - ACTIONS(773), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58469] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2606), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57654] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58541] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2569), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2608), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57726] = 18, - ACTIONS(2087), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58613] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2610), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57798] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58685] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2571), 1, + ACTIONS(2612), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57870] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58757] = 18, + ACTIONS(1740), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2573), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [57942] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58829] = 18, + ACTIONS(1690), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2575), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58014] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58901] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2577), 1, + ACTIONS(2614), 1, anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58086] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [58973] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2579), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58158] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59045] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2581), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2616), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58230] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59117] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2583), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2618), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58302] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59189] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2585), 1, - anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(115), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOLLAR, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58374] = 18, - ACTIONS(841), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59257] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(117), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58446] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2587), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(115), 13, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, + anon_sym_LPAREN, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [58518] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2333), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + [59311] = 13, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2589), 1, - anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58590] = 18, - ACTIONS(2297), 1, + ACTIONS(115), 9, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2333), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + [59373] = 14, + ACTIONS(117), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2591), 1, - anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58662] = 18, - ACTIONS(2297), 1, + ACTIONS(115), 7, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [59437] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2593), 1, + ACTIONS(2620), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58734] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59509] = 18, + ACTIONS(1628), 1, + anon_sym_LBRACE, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2595), 1, - anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58806] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59581] = 16, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2597), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(1628), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_QMARK_DOLLAR, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58878] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59649] = 9, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2599), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(1630), 9, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [58950] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2601), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(1628), 13, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, + anon_sym_LPAREN, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [59022] = 18, - ACTIONS(133), 1, - anon_sym_LBRACE, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [59703] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2622), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59094] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59775] = 13, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, - anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2603), 1, - anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2385), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59166] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2605), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(1636), 9, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [59238] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + anon_sym_QMARK_DOLLAR, + [59837] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2607), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2624), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59310] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59909] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2609), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2626), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59382] = 18, - ACTIONS(1646), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [59981] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2628), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59454] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60053] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2611), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2630), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59526] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60125] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2613), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2632), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59598] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60197] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2615), 1, + ACTIONS(2634), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59670] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60269] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2617), 1, + ACTIONS(2636), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59742] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60341] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2619), 1, + ACTIONS(2638), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59814] = 18, - ACTIONS(2099), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60413] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2640), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59886] = 18, - ACTIONS(805), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60485] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2642), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [59958] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60557] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2621), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2644), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60030] = 18, - ACTIONS(1758), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60629] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2646), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60102] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60701] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2623), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2648), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60174] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60773] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(2650), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60246] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60845] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2627), 1, + ACTIONS(2652), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60318] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60917] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2629), 1, + ACTIONS(2654), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60390] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [60989] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2631), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2656), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60462] = 18, - ACTIONS(2071), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61061] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2658), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60534] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61133] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2633), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2660), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60606] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61205] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2635), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2662), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60678] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61277] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2637), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2664), 1, + anon_sym_RBRACK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60750] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61349] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2639), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60822] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61421] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2641), 1, + ACTIONS(2668), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60894] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61493] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2643), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [60966] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61565] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2645), 1, - anon_sym_RBRACK, - STATE(1268), 1, + ACTIONS(2672), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61038] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61637] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2647), 1, + ACTIONS(2674), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61110] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61709] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2649), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2676), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61182] = 18, - ACTIONS(1662), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61781] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2678), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61254] = 18, - ACTIONS(2083), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61853] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2680), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61326] = 18, - ACTIONS(833), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61925] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2682), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61398] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [61997] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2651), 1, + ACTIONS(2684), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61470] = 18, - ACTIONS(1762), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62069] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2686), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61542] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62141] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2653), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2688), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61614] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62213] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2655), 1, + ACTIONS(2690), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61686] = 18, - ACTIONS(1644), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62285] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2692), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61758] = 18, - ACTIONS(658), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62357] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2694), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61830] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62429] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2657), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2696), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61902] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62501] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2659), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2698), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [61974] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62573] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2661), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2700), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62046] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62645] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2663), 1, + ACTIONS(2702), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62118] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62717] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2665), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2704), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62190] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62789] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2667), 1, + ACTIONS(2706), 1, anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62262] = 18, - ACTIONS(2057), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62861] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2708), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62334] = 18, - ACTIONS(781), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [62933] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2710), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62406] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63005] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2669), 1, + ACTIONS(2712), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62478] = 18, - ACTIONS(1770), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63077] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2714), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62550] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63149] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2671), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2716), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62622] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63221] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2718), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62694] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63293] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2675), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2720), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62766] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63365] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2677), 1, + ACTIONS(2722), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62838] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63437] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2679), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2724), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62910] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63509] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2726), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [62982] = 18, - ACTIONS(1716), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63581] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2728), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63054] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63653] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2683), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2730), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63126] = 18, - ACTIONS(2103), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63725] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2732), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63198] = 18, - ACTIONS(666), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63797] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2734), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63270] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63869] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2685), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2736), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63342] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [63941] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2738), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63414] = 18, - ACTIONS(1774), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64013] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2740), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63486] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64085] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2689), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2742), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63558] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64157] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2691), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2744), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63630] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64229] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2474), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2693), 1, + ACTIONS(2746), 1, anon_sym_LBRACE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63702] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64301] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2695), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2748), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63774] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64373] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(2750), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63846] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64445] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2699), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2752), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63918] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64517] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2701), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2754), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [63990] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64589] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2703), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2756), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64062] = 18, - ACTIONS(1424), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64661] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2758), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64134] = 18, - ACTIONS(821), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64733] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2760), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64206] = 18, - ACTIONS(813), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64805] = 18, + ACTIONS(135), 1, + anon_sym_LBRACE, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64278] = 18, - ACTIONS(2067), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64877] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2474), 1, + anon_sym_EQ, + ACTIONS(2478), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2482), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2762), 1, + anon_sym_LBRACE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2470), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2484), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2486), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2480), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2472), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2476), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64350] = 18, - ACTIONS(765), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [64949] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2764), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64422] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65021] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2766), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64494] = 18, - ACTIONS(1718), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65093] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2768), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64566] = 18, - ACTIONS(2091), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65165] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2770), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64638] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65237] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2707), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2772), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64710] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65309] = 18, + ACTIONS(2123), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2709), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64782] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65381] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2711), 1, + ACTIONS(2774), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64854] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65453] = 18, + ACTIONS(1180), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2713), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64926] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65525] = 18, + ACTIONS(2153), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2715), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [64998] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65597] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2717), 1, + ACTIONS(2776), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65070] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65669] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2719), 1, + ACTIONS(2778), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65142] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65741] = 18, + ACTIONS(1881), 1, + anon_sym_RPAREN, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2721), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65214] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65813] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2780), 1, + anon_sym_COLON, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2392), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2404), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2400), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2394), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2396), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65286] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65885] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2725), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2782), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65358] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [65957] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2727), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2784), 1, + anon_sym_RBRACK, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65430] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66029] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2729), 1, + ACTIONS(2786), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65502] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66101] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2731), 1, + ACTIONS(2788), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65574] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66173] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2733), 1, + ACTIONS(2790), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65646] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66245] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2735), 1, + ACTIONS(2792), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65718] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66317] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2737), 1, + ACTIONS(2794), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65790] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66389] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2739), 1, + ACTIONS(2796), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65862] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66461] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2741), 1, + ACTIONS(2798), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [65934] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66533] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2743), 1, + ACTIONS(2800), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66006] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66605] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2745), 1, + ACTIONS(2802), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66078] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66677] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2747), 1, + ACTIONS(2804), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66150] = 18, - ACTIONS(2063), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66749] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2806), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66222] = 18, - ACTIONS(789), 1, - anon_sym_SEMI, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66821] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2808), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66294] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66893] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2749), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2810), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66366] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [66965] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2373), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2377), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2381), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2751), 1, - anon_sym_LBRACE, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2812), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2369), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2383), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2385), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2379), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2371), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2375), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66438] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67037] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2753), 1, + ACTIONS(2814), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66510] = 18, - ACTIONS(1734), 1, - anon_sym_RPAREN, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67109] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - STATE(1268), 1, + ACTIONS(2816), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66582] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67181] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2755), 1, - anon_sym_SEMI, - STATE(1268), 1, + ACTIONS(2818), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66654] = 6, - ACTIONS(2757), 1, + [67253] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, anon_sym_LPAREN, - STATE(1234), 1, - sym_func_params, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, + anon_sym_BANG, + ACTIONS(2402), 1, + anon_sym_QMARK, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2820), 1, + anon_sym_COLON, + STATE(1285), 1, + sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(2392), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1574), 9, - anon_sym_EQ, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2394), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2396), 6, anon_sym_PIPE, - anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - anon_sym_QMARK, - ACTIONS(1570), 19, - anon_sym_SEMI, - anon_sym_PLUS_EQ, - anon_sym_in, + [67325] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - anon_sym_as, - anon_sym_DASH_EQ, + ACTIONS(2356), 1, anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2822), 1, + anon_sym_RPAREN, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2354), 2, + anon_sym_as, anon_sym_is, + ACTIONS(2368), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2384), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2372), 4, + anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOLLAR, - [66702] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + ACTIONS(2376), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [67397] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2759), 1, + ACTIONS(2824), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66774] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67469] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2345), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2349), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2353), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2761), 1, - anon_sym_COLON, - STATE(1268), 1, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2826), 1, + anon_sym_RPAREN, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2335), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2341), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2355), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2357), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2351), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2343), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2347), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66846] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67541] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2828), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66918] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67613] = 18, + ACTIONS(2149), 1, + anon_sym_RBRACK, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2765), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [66990] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67685] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2388), 1, + anon_sym_QMARK_DOLLAR, + ACTIONS(2398), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2402), 1, anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2410), 1, + anon_sym_EQ, + ACTIONS(2830), 1, + anon_sym_COLON, + STATE(1285), 1, + sym_index_slice, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2392), 2, + anon_sym_as, + anon_sym_is, + ACTIONS(2404), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2408), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + ACTIONS(2412), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2400), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2394), 4, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + ACTIONS(2396), 6, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + [67757] = 18, + ACTIONS(2352), 1, + anon_sym_LBRACK, + ACTIONS(2356), 1, + anon_sym_DOLLAR, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2378), 1, + anon_sym_BANG, + ACTIONS(2382), 1, + anon_sym_QMARK, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2767), 1, + ACTIONS(2832), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67062] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67829] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2769), 1, + ACTIONS(2834), 1, anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67134] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67901] = 18, + ACTIONS(1318), 1, + anon_sym_SEMI, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2771), 1, - anon_sym_RPAREN, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, + ACTIONS(2376), 6, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67206] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [67973] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2773), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2836), 1, + anon_sym_PIPE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, + ACTIONS(2376), 5, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67278] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [68044] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2775), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [67350] = 18, - ACTIONS(2297), 1, + ACTIONS(2358), 1, anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, - anon_sym_BANG, - ACTIONS(2319), 1, - anon_sym_QMARK, - ACTIONS(2327), 1, + ACTIONS(2374), 1, anon_sym_EQ, - ACTIONS(2333), 1, - anon_sym_QMARK_DOLLAR, - ACTIONS(2777), 1, - anon_sym_RPAREN, - STATE(1268), 1, - sym_index_slice, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2305), 2, - anon_sym_as, - anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2331), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2317), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2311), 4, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - [67422] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, - anon_sym_LBRACK, - ACTIONS(2307), 1, - anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2779), 1, - anon_sym_RPAREN, - STATE(1268), 1, + ACTIONS(2838), 1, + anon_sym_PIPE, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 6, - anon_sym_PIPE, + ACTIONS(2376), 5, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67494] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [68115] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2781), 1, + ACTIONS(2840), 1, anon_sym_PIPE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 5, + ACTIONS(2376), 5, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67565] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [68186] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2368), 1, + anon_sym_PLUS_EQ, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2783), 1, - anon_sym_PIPE, - STATE(1268), 1, + ACTIONS(2842), 1, + anon_sym_DASH_EQ, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 5, + ACTIONS(2376), 6, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67636] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [68257] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2785), 1, + ACTIONS(2844), 1, anon_sym_PIPE, - STATE(1268), 1, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, + ACTIONS(2368), 2, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 5, + ACTIONS(2376), 5, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67707] = 18, - ACTIONS(2297), 1, - anon_sym_LPAREN, - ACTIONS(2303), 1, + [68328] = 18, + ACTIONS(2352), 1, anon_sym_LBRACK, - ACTIONS(2307), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR, - ACTIONS(2315), 1, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2368), 1, + anon_sym_PLUS_EQ, + ACTIONS(2374), 1, + anon_sym_EQ, + ACTIONS(2378), 1, anon_sym_BANG, - ACTIONS(2319), 1, + ACTIONS(2382), 1, anon_sym_QMARK, - ACTIONS(2327), 1, - anon_sym_EQ, - ACTIONS(2333), 1, + ACTIONS(2388), 1, anon_sym_QMARK_DOLLAR, - ACTIONS(2787), 1, - anon_sym_PIPE, - STATE(1268), 1, + ACTIONS(2846), 1, + anon_sym_DASH_EQ, + STATE(1285), 1, sym_index_slice, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2305), 2, + ACTIONS(2354), 2, anon_sym_as, anon_sym_is, - ACTIONS(2323), 2, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - ACTIONS(2329), 2, + ACTIONS(2384), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2331), 2, + ACTIONS(2386), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2317), 3, + ACTIONS(2380), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2311), 4, + ACTIONS(2372), 4, anon_sym_in, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_CARET, - ACTIONS(2313), 5, + ACTIONS(2376), 6, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, anon_sym_AMP, - [67778] = 15, - ACTIONS(2789), 1, - anon_sym_enum, - ACTIONS(2791), 1, - anon_sym_record, - ACTIONS(2797), 1, - anon_sym_table, - ACTIONS(2799), 1, - anon_sym_set, - ACTIONS(2801), 1, - anon_sym_union, - ACTIONS(2805), 1, - anon_sym_vector, - ACTIONS(2807), 1, - anon_sym_function, - ACTIONS(2809), 1, - anon_sym_opaque, - STATE(1598), 1, - aux_sym_type_repeat1, - STATE(2041), 1, - sym_type, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2793), 2, - anon_sym_event, - anon_sym_hook, - ACTIONS(2803), 2, - anon_sym_list, - anon_sym_file, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2795), 14, - anon_sym_addr, - anon_sym_any, - anon_sym_bool, - anon_sym_count, - anon_sym_double, - anon_sym_int, - anon_sym_interval, - anon_sym_string, - anon_sym_subnet, - anon_sym_pattern, - anon_sym_port, - anon_sym_time, - anon_sym_timer, - sym_id, - [67842] = 15, - ACTIONS(2789), 1, + [68399] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2050), 1, + STATE(1981), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127291,41 +129244,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [67906] = 15, - ACTIONS(2789), 1, + [68463] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1598), 1, aux_sym_type_repeat1, - STATE(1971), 1, + STATE(2121), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127340,41 +129293,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [67970] = 15, - ACTIONS(2789), 1, + [68527] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1599), 1, aux_sym_type_repeat1, - STATE(1986), 1, + STATE(2122), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127389,90 +129342,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68034] = 15, - ACTIONS(2789), 1, - anon_sym_enum, - ACTIONS(2791), 1, - anon_sym_record, - ACTIONS(2797), 1, - anon_sym_table, - ACTIONS(2799), 1, - anon_sym_set, - ACTIONS(2801), 1, - anon_sym_union, - ACTIONS(2805), 1, - anon_sym_vector, - ACTIONS(2807), 1, - anon_sym_function, - ACTIONS(2809), 1, - anon_sym_opaque, - STATE(1578), 1, - aux_sym_type_repeat1, - STATE(1947), 1, - sym_type, + [68591] = 7, + ACTIONS(884), 1, + anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, - anon_sym_event, - anon_sym_hook, - ACTIONS(2803), 2, - anon_sym_list, - anon_sym_file, + STATE(1626), 2, + sym_attr, + aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, - anon_sym_addr, - anon_sym_any, - anon_sym_bool, - anon_sym_count, - anon_sym_double, - anon_sym_int, - anon_sym_interval, - anon_sym_string, - anon_sym_subnet, - anon_sym_pattern, - anon_sym_port, - anon_sym_time, - anon_sym_timer, - sym_id, - [68098] = 15, - ACTIONS(2789), 1, + ACTIONS(1784), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(886), 8, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + ACTIONS(888), 13, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + [68639] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2144), 1, + STATE(2157), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127487,41 +129432,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68162] = 15, - ACTIONS(2789), 1, + [68703] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1600), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2120), 1, + STATE(2158), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127536,41 +129481,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68226] = 15, - ACTIONS(2789), 1, + [68767] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1594), 1, + STATE(1601), 1, aux_sym_type_repeat1, - STATE(2117), 1, + STATE(2185), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127585,41 +129530,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68290] = 15, - ACTIONS(2789), 1, + [68831] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1604), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2121), 1, + STATE(1972), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127634,41 +129579,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68354] = 15, - ACTIONS(2789), 1, + [68895] = 8, + ACTIONS(884), 1, + anon_sym_AMPdeprecated, + STATE(1958), 1, + sym_attr_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + STATE(1597), 2, + sym_attr, + aux_sym_attr_list_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2870), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(886), 8, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + ACTIONS(888), 13, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + [68945] = 6, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2872), 1, + anon_sym_PLUS_EQ, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1602), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(1598), 17, + anon_sym_DASH_EQ, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [68991] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1583), 1, + STATE(1608), 1, aux_sym_type_repeat1, - STATE(2064), 1, + STATE(2063), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127683,41 +129710,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68418] = 15, - ACTIONS(2789), 1, + [69055] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2065), 1, + STATE(2091), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127732,41 +129759,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68482] = 15, - ACTIONS(2789), 1, + [69119] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1594), 1, aux_sym_type_repeat1, - STATE(1983), 1, + STATE(1980), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127781,41 +129808,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68546] = 15, - ACTIONS(2789), 1, + [69183] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1575), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1968), 1, + STATE(2110), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127830,41 +129857,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68610] = 15, - ACTIONS(2789), 1, + [69247] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1596), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1959), 1, + STATE(1989), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127879,83 +129906,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68674] = 8, - ACTIONS(608), 1, - anon_sym_AMPdeprecated, - STATE(1913), 1, - sym_attr_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(1632), 2, - sym_attr, - aux_sym_attr_list_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2811), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(610), 8, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - ACTIONS(612), 13, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - [68724] = 15, - ACTIONS(2789), 1, + [69311] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1589), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2046), 1, + STATE(2035), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -127970,41 +129955,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68788] = 15, - ACTIONS(2789), 1, + [69375] = 15, + ACTIONS(2875), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2878), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2887), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2890), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2893), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2899), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2902), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2905), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2047), 1, + STATE(2648), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2881), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2896), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2884), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128019,41 +130004,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68852] = 15, - ACTIONS(2789), 1, + [69439] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1591), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1994), 1, + STATE(1988), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128068,41 +130053,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68916] = 15, - ACTIONS(2789), 1, + [69503] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1613), 1, aux_sym_type_repeat1, STATE(1996), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128117,41 +130102,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [68980] = 15, - ACTIONS(2789), 1, + [69567] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1576), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2145), 1, + STATE(1997), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128166,41 +130151,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69044] = 15, - ACTIONS(2789), 1, + [69631] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1601), 1, + STATE(1615), 1, aux_sym_type_repeat1, - STATE(1961), 1, + STATE(2057), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128215,41 +130200,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69108] = 15, - ACTIONS(2789), 1, + [69695] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(2123), 1, + STATE(2058), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128264,41 +130249,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69172] = 15, - ACTIONS(2813), 1, + [69759] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2816), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2825), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2828), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2831), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2837), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2840), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2843), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1609), 1, aux_sym_type_repeat1, - STATE(2522), 1, + STATE(2066), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2819), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2834), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2822), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128313,41 +130298,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69236] = 15, - ACTIONS(2789), 1, + [69823] = 6, + ACTIONS(2358), 1, + anon_sym_LPAREN, + ACTIONS(2908), 1, + anon_sym_PLUS_EQ, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1602), 9, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_QMARK, + ACTIONS(1598), 17, + anon_sym_DASH_EQ, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_as, + anon_sym_DOLLAR, + anon_sym_is, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOLLAR, + [69869] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1619), 1, aux_sym_type_repeat1, - STATE(1970), 1, + STATE(2048), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128362,41 +130387,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69300] = 15, - ACTIONS(2789), 1, + [69933] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1584), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1980), 1, + STATE(2051), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128411,41 +130436,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69364] = 15, - ACTIONS(2789), 1, + [69997] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1622), 1, aux_sym_type_repeat1, - STATE(2048), 1, + STATE(2135), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128460,41 +130485,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69428] = 15, - ACTIONS(2789), 1, + [70061] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1574), 1, + STATE(1623), 1, aux_sym_type_repeat1, - STATE(2009), 1, + STATE(2161), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128509,41 +130534,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69492] = 15, - ACTIONS(2789), 1, + [70125] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1984), 1, + STATE(2077), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128558,41 +130583,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69556] = 15, - ACTIONS(2789), 1, + [70189] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1972), 1, + STATE(2103), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128607,41 +130632,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69620] = 15, - ACTIONS(2789), 1, + [70253] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1603), 1, + STATE(1625), 1, aux_sym_type_repeat1, - STATE(1992), 1, + STATE(2119), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128656,41 +130681,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69684] = 15, - ACTIONS(2789), 1, + [70317] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1595), 1, + STATE(1610), 1, aux_sym_type_repeat1, - STATE(1993), 1, + STATE(2120), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128705,88 +130730,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69748] = 15, - ACTIONS(2789), 1, - anon_sym_enum, - ACTIONS(2791), 1, - anon_sym_record, - ACTIONS(2797), 1, - anon_sym_table, - ACTIONS(2799), 1, - anon_sym_set, - ACTIONS(2801), 1, - anon_sym_union, - ACTIONS(2805), 1, - anon_sym_vector, - ACTIONS(2807), 1, - anon_sym_function, - ACTIONS(2809), 1, - anon_sym_opaque, - STATE(1595), 1, - aux_sym_type_repeat1, - STATE(1985), 1, - sym_type, + [70381] = 7, + ACTIONS(2342), 1, + anon_sym_AMPdeprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, - anon_sym_event, - anon_sym_hook, - ACTIONS(2803), 2, - anon_sym_list, - anon_sym_file, + STATE(1626), 2, + sym_attr, + aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, - anon_sym_addr, - anon_sym_any, - anon_sym_bool, - anon_sym_count, - anon_sym_double, - anon_sym_int, - anon_sym_interval, - anon_sym_string, - anon_sym_subnet, - anon_sym_pattern, - anon_sym_port, - anon_sym_time, - anon_sym_timer, - sym_id, - [69812] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + ACTIONS(1816), 4, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1823), 8, + anon_sym_AMPbroker_allow_complex_type, + anon_sym_AMPerror_handler, + anon_sym_AMPis_assigned, + anon_sym_AMPis_used, + anon_sym_AMPlog, + anon_sym_AMPoptional, + anon_sym_AMPraw_output, + anon_sym_AMPredef, + ACTIONS(2911), 13, + anon_sym_AMPadd_func, + anon_sym_AMPbackend, + anon_sym_AMPbroker_store, + anon_sym_AMPcreate_expire, + anon_sym_AMPdefault, + anon_sym_AMPdelete_func, + anon_sym_AMPexpire_func, + anon_sym_AMPgroup, + anon_sym_AMPon_change, + anon_sym_AMPpriority, + anon_sym_AMPread_expire, + anon_sym_AMPtype_column, + anon_sym_AMPwrite_expire, + [70429] = 15, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2854), 1, - anon_sym_table, ACTIONS(2856), 1, - anon_sym_set, + anon_sym_table, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2862), 1, - anon_sym_vector, ACTIONS(2864), 1, - anon_sym_function, + anon_sym_vector, ACTIONS(2866), 1, + anon_sym_function, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1704), 1, + STATE(1605), 1, + aux_sym_type_repeat1, + STATE(2059), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128801,39 +130820,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69873] = 14, - ACTIONS(2868), 1, + [70493] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2876), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2878), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2884), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2886), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2888), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(294), 1, + STATE(1607), 1, + aux_sym_type_repeat1, + STATE(2109), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2882), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128848,39 +130869,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69934] = 14, - ACTIONS(2868), 1, + [70557] = 15, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2876), 1, + ACTIONS(2856), 1, anon_sym_table, - ACTIONS(2878), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2884), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2886), 1, + ACTIONS(2866), 1, anon_sym_function, - ACTIONS(2888), 1, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(305), 1, + STATE(1611), 1, + aux_sym_type_repeat1, + STATE(1987), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2882), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128895,39 +130918,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [69995] = 14, - ACTIONS(2868), 1, + [70621] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2876), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2878), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2884), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2886), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2888), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(308), 1, + STATE(274), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2882), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128942,39 +130965,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70056] = 14, - ACTIONS(2868), 1, + [70682] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2876), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2878), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2884), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2886), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2888), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(355), 1, + STATE(264), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2882), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -128989,39 +131012,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70117] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [70743] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2854), 1, - anon_sym_table, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2868), 1, + anon_sym_opaque, + ACTIONS(2936), 1, + anon_sym_table, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2942), 1, anon_sym_function, - ACTIONS(2866), 1, - anon_sym_opaque, - STATE(1763), 1, + STATE(1284), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129036,39 +131059,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70178] = 14, - ACTIONS(2846), 1, + [70804] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2854), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(23), 1, + STATE(284), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129083,39 +131106,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70239] = 14, - ACTIONS(2789), 1, + [70865] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2890), 1, - anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1263), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(285), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129130,39 +131153,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70300] = 14, - ACTIONS(2846), 1, + [70926] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(149), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(286), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129177,39 +131200,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70361] = 14, - ACTIONS(2846), 1, + [70987] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(150), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(272), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129224,79 +131247,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70422] = 7, - ACTIONS(2289), 1, - anon_sym_AMPdeprecated, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - STATE(1615), 2, - sym_attr, - aux_sym_attr_list_repeat1, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1776), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1783), 8, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - ACTIONS(2906), 13, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - [70469] = 14, - ACTIONS(2846), 1, + [71048] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(134), 1, + STATE(1764), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129311,86 +131294,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70530] = 14, - ACTIONS(2846), 1, + [71109] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2854), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2866), 1, - anon_sym_opaque, - STATE(33), 1, - sym_type, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(2850), 2, - anon_sym_event, - anon_sym_hook, - ACTIONS(2860), 2, - anon_sym_list, - anon_sym_file, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2852), 14, - anon_sym_addr, - anon_sym_any, - anon_sym_bool, - anon_sym_count, - anon_sym_double, - anon_sym_int, - anon_sym_interval, - anon_sym_string, - anon_sym_subnet, - anon_sym_pattern, - anon_sym_port, - anon_sym_time, - anon_sym_timer, - sym_id, - [70591] = 14, - ACTIONS(2789), 1, - anon_sym_enum, - ACTIONS(2791), 1, - anon_sym_record, - ACTIONS(2799), 1, - anon_sym_set, - ACTIONS(2801), 1, - anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2909), 1, - anon_sym_table, - ACTIONS(2913), 1, - anon_sym_vector, - ACTIONS(2915), 1, - anon_sym_function, - STATE(1275), 1, + STATE(258), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129405,39 +131341,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70652] = 14, - ACTIONS(2789), 1, + [71170] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2890), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(2958), 1, anon_sym_function, STATE(1265), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129452,39 +131388,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70713] = 14, - ACTIONS(2789), 1, + [71231] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(1275), 1, + STATE(259), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129499,39 +131435,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70774] = 14, - ACTIONS(2868), 1, + [71292] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2888), 1, - anon_sym_opaque, - ACTIONS(2917), 1, - anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(308), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(260), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129546,39 +131482,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70835] = 14, - ACTIONS(2789), 1, + [71353] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2909), 1, - anon_sym_table, - ACTIONS(2913), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2915), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1263), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(276), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129593,39 +131529,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70896] = 14, - ACTIONS(2789), 1, + [71414] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(1244), 1, + STATE(271), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129640,39 +131576,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [70957] = 14, - ACTIONS(2789), 1, + [71475] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2925), 1, - anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1926), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(267), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129687,39 +131623,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71018] = 14, - ACTIONS(2846), 1, + [71536] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(151), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(268), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129734,39 +131670,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71079] = 14, - ACTIONS(2846), 1, + [71597] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(152), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(280), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129781,39 +131717,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71140] = 14, - ACTIONS(2868), 1, + [71658] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2888), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2917), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(378), 1, + STATE(1284), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129828,39 +131764,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71201] = 14, - ACTIONS(2846), 1, + [71719] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(124), 1, + STATE(37), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129875,39 +131811,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71262] = 14, - ACTIONS(2789), 1, + [71780] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(1262), 1, + STATE(36), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129922,39 +131858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71323] = 14, - ACTIONS(2846), 1, + [71841] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(143), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(265), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -129969,39 +131905,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71384] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [71902] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2933), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2937), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2939), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(62), 1, + STATE(1261), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2935), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130016,79 +131952,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71445] = 7, - ACTIONS(608), 1, - anon_sym_AMPdeprecated, + [71963] = 14, + ACTIONS(2914), 1, + anon_sym_enum, + ACTIONS(2916), 1, + anon_sym_record, + ACTIONS(2924), 1, + anon_sym_set, + ACTIONS(2926), 1, + anon_sym_union, + ACTIONS(2934), 1, + anon_sym_opaque, + ACTIONS(2944), 1, + anon_sym_table, + ACTIONS(2948), 1, + anon_sym_vector, + ACTIONS(2950), 1, + anon_sym_function, + STATE(81), 1, + sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1615), 2, - sym_attr, - aux_sym_attr_list_repeat1, + ACTIONS(2918), 2, + anon_sym_event, + anon_sym_hook, + ACTIONS(2946), 2, + anon_sym_list, + anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1789), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(610), 8, - anon_sym_AMPbroker_allow_complex_type, - anon_sym_AMPerror_handler, - anon_sym_AMPis_assigned, - anon_sym_AMPis_used, - anon_sym_AMPlog, - anon_sym_AMPoptional, - anon_sym_AMPraw_output, - anon_sym_AMPredef, - ACTIONS(612), 13, - anon_sym_AMPadd_func, - anon_sym_AMPbackend, - anon_sym_AMPbroker_store, - anon_sym_AMPcreate_expire, - anon_sym_AMPdefault, - anon_sym_AMPdelete_func, - anon_sym_AMPexpire_func, - anon_sym_AMPgroup, - anon_sym_AMPon_change, - anon_sym_AMPpriority, - anon_sym_AMPread_expire, - anon_sym_AMPtype_column, - anon_sym_AMPwrite_expire, - [71492] = 14, - ACTIONS(2789), 1, + ACTIONS(2920), 14, + anon_sym_addr, + anon_sym_any, + anon_sym_bool, + anon_sym_count, + anon_sym_double, + anon_sym_int, + anon_sym_interval, + anon_sym_string, + anon_sym_subnet, + anon_sym_pattern, + anon_sym_port, + anon_sym_time, + anon_sym_timer, + sym_id, + [72024] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(33), 1, + STATE(273), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130103,39 +132046,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71553] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [72085] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(144), 1, + STATE(1950), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130150,39 +132093,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71614] = 14, - ACTIONS(2846), 1, + [72146] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2854), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(1587), 1, + STATE(37), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130197,39 +132140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71675] = 14, - ACTIONS(2846), 1, + [72207] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(139), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(281), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130244,39 +132187,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71736] = 14, - ACTIONS(2846), 1, + [72268] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(137), 1, + STATE(90), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130291,39 +132234,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71797] = 14, - ACTIONS(2846), 1, + [72329] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(50), 1, + STATE(79), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130338,39 +132281,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71858] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [72390] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, ACTIONS(2856), 1, - anon_sym_set, + anon_sym_table, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, + ACTIONS(2864), 1, + anon_sym_vector, ACTIONS(2866), 1, + anon_sym_function, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2933), 1, + STATE(37), 1, + sym_type, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2852), 2, + anon_sym_event, + anon_sym_hook, + ACTIONS(2862), 2, + anon_sym_list, + anon_sym_file, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2854), 14, + anon_sym_addr, + anon_sym_any, + anon_sym_bool, + anon_sym_count, + anon_sym_double, + anon_sym_int, + anon_sym_interval, + anon_sym_string, + anon_sym_subnet, + anon_sym_pattern, + anon_sym_port, + anon_sym_time, + anon_sym_timer, + sym_id, + [72451] = 14, + ACTIONS(2968), 1, + anon_sym_enum, + ACTIONS(2970), 1, + anon_sym_record, + ACTIONS(2976), 1, anon_sym_table, - ACTIONS(2937), 1, + ACTIONS(2978), 1, + anon_sym_set, + ACTIONS(2980), 1, + anon_sym_union, + ACTIONS(2984), 1, anon_sym_vector, - ACTIONS(2939), 1, + ACTIONS(2986), 1, anon_sym_function, - STATE(33), 1, + ACTIONS(2988), 1, + anon_sym_opaque, + STATE(373), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2935), 2, + ACTIONS(2982), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130385,39 +132375,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71919] = 14, - ACTIONS(2846), 1, + [72512] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2976), 1, + anon_sym_table, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2984), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2986), 1, anon_sym_function, - STATE(140), 1, + ACTIONS(2988), 1, + anon_sym_opaque, + STATE(378), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2982), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130432,39 +132422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [71980] = 14, - ACTIONS(2846), 1, + [72573] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2976), 1, + anon_sym_table, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2984), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2986), 1, anon_sym_function, - STATE(153), 1, + ACTIONS(2988), 1, + anon_sym_opaque, + STATE(379), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2982), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130479,39 +132469,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72041] = 14, - ACTIONS(2846), 1, + [72634] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2976), 1, + anon_sym_table, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2984), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2986), 1, anon_sym_function, - STATE(154), 1, + ACTIONS(2988), 1, + anon_sym_opaque, + STATE(342), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2982), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130526,39 +132516,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72102] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [72695] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(62), 1, + STATE(1273), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130573,39 +132563,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72163] = 14, - ACTIONS(2846), 1, + [72756] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2930), 1, + anon_sym_vector, + ACTIONS(2932), 1, + anon_sym_function, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2933), 1, + STATE(282), 1, + sym_type, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2918), 2, + anon_sym_event, + anon_sym_hook, + ACTIONS(2928), 2, + anon_sym_list, + anon_sym_file, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2920), 14, + anon_sym_addr, + anon_sym_any, + anon_sym_bool, + anon_sym_count, + anon_sym_double, + anon_sym_int, + anon_sym_interval, + anon_sym_string, + anon_sym_subnet, + anon_sym_pattern, + anon_sym_port, + anon_sym_time, + anon_sym_timer, + sym_id, + [72817] = 14, + ACTIONS(2914), 1, + anon_sym_enum, + ACTIONS(2916), 1, + anon_sym_record, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2937), 1, + ACTIONS(2924), 1, + anon_sym_set, + ACTIONS(2926), 1, + anon_sym_union, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2939), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(23), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(257), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2935), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130620,39 +132657,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72224] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [72878] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, ACTIONS(2856), 1, - anon_sym_set, + anon_sym_table, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2866), 1, anon_sym_function, - STATE(125), 1, + ACTIONS(2868), 1, + anon_sym_opaque, + STATE(36), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130667,39 +132704,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72285] = 14, - ACTIONS(2789), 1, + [72939] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2925), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(1262), 1, + STATE(1602), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130714,39 +132751,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72346] = 14, - ACTIONS(2868), 1, + [73000] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2888), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2917), 1, + ACTIONS(2990), 1, anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(2994), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(2996), 1, anon_sym_function, - STATE(364), 1, + STATE(81), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(2992), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130761,39 +132798,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72407] = 14, - ACTIONS(2846), 1, + [73061] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(138), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(263), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130808,39 +132845,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72468] = 14, - ACTIONS(2789), 1, + [73122] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2909), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2913), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2915), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(1244), 1, + STATE(372), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130855,39 +132892,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72529] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [73183] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2933), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2937), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2939), 1, + ACTIONS(2958), 1, anon_sym_function, - STATE(66), 1, + STATE(1986), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2935), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130902,39 +132939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72590] = 14, - ACTIONS(2846), 1, + [73244] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(23), 1, + STATE(373), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130949,39 +132986,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72651] = 14, - ACTIONS(2789), 1, + [73305] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2909), 1, - anon_sym_table, - ACTIONS(2913), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2915), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1241), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(269), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -130996,39 +133033,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72712] = 14, - ACTIONS(2846), 1, + [73366] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(155), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(270), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131043,39 +133080,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72773] = 14, - ACTIONS(2846), 1, + [73427] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(156), 1, + STATE(375), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131090,39 +133127,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72834] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [73488] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(66), 1, + STATE(1282), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131137,39 +133174,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72895] = 14, - ACTIONS(2846), 1, + [73549] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(127), 1, + STATE(1734), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131184,39 +133221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [72956] = 14, - ACTIONS(2846), 1, + [73610] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2854), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(62), 1, + STATE(256), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131231,39 +133268,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73017] = 14, - ACTIONS(2789), 1, + [73671] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2925), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(1932), 1, + STATE(342), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131278,39 +133315,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73078] = 14, - ACTIONS(2868), 1, + [73732] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2888), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2917), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(294), 1, + STATE(378), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131325,39 +133362,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73139] = 14, - ACTIONS(2846), 1, + [73793] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2854), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(66), 1, + STATE(287), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131372,39 +133409,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73200] = 14, - ACTIONS(2846), 1, + [73854] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(145), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(90), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131419,39 +133456,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73261] = 14, - ACTIONS(2846), 1, + [73915] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(146), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(288), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131466,39 +133503,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73322] = 14, - ACTIONS(2789), 1, + [73976] = 14, + ACTIONS(2968), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2970), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2978), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2980), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2988), 1, anon_sym_opaque, - ACTIONS(2890), 1, + ACTIONS(2998), 1, anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(3002), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(3004), 1, anon_sym_function, - STATE(1262), 1, + STATE(379), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2972), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(3000), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2974), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131513,39 +133550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73383] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [74037] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2960), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2964), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2966), 1, anon_sym_function, - STATE(126), 1, + STATE(1956), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2962), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131560,39 +133597,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73444] = 14, - ACTIONS(2789), 1, + [74098] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2890), 1, - anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1275), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(283), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131607,39 +133644,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73505] = 14, - ACTIONS(2789), 1, + [74159] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2890), 1, + ACTIONS(2936), 1, anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(2942), 1, anon_sym_function, - STATE(1244), 1, + STATE(1265), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131654,39 +133691,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73566] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [74220] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2854), 1, - anon_sym_table, ACTIONS(2856), 1, - anon_sym_set, + anon_sym_table, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2862), 1, - anon_sym_vector, ACTIONS(2864), 1, - anon_sym_function, + anon_sym_vector, ACTIONS(2866), 1, + anon_sym_function, + ACTIONS(2868), 1, anon_sym_opaque, - STATE(1724), 1, + STATE(1284), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131701,39 +133738,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73627] = 14, - ACTIONS(2789), 1, + [74281] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2925), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(2958), 1, anon_sym_function, - STATE(1275), 1, + STATE(1284), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131748,39 +133785,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73688] = 14, - ACTIONS(2789), 1, + [74342] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2925), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(2958), 1, anon_sym_function, - STATE(1241), 1, + STATE(1273), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131795,39 +133832,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73749] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [74403] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2958), 1, anon_sym_function, - STATE(129), 1, + STATE(1282), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131842,39 +133879,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73810] = 14, - ACTIONS(2789), 1, + [74464] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2925), 1, + ACTIONS(2936), 1, anon_sym_table, - ACTIONS(2929), 1, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2931), 1, + ACTIONS(2942), 1, anon_sym_function, - STATE(1244), 1, + STATE(1261), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2927), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131889,39 +133926,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73871] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [74525] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2933), 1, + ACTIONS(2936), 1, anon_sym_table, - ACTIONS(2937), 1, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2939), 1, + ACTIONS(2942), 1, anon_sym_function, - STATE(50), 1, + STATE(1272), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2935), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131936,39 +133973,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73932] = 14, - ACTIONS(2868), 1, + [74586] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2888), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2917), 1, + ACTIONS(2936), 1, anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(2942), 1, anon_sym_function, - STATE(305), 1, + STATE(1282), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -131983,39 +134020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [73993] = 14, - ACTIONS(2789), 1, + [74647] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2909), 1, - anon_sym_table, - ACTIONS(2913), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2915), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(1262), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(261), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132030,39 +134067,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74054] = 14, - ACTIONS(2846), 1, + [74708] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(131), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(277), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132077,39 +134114,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74115] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [74769] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2868), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2952), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2956), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2958), 1, anon_sym_function, - STATE(136), 1, + STATE(1272), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2954), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132124,39 +134161,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74176] = 14, - ACTIONS(2789), 1, + [74830] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2909), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2913), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2915), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(1265), 1, + STATE(36), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2911), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132171,39 +134208,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74237] = 14, - ACTIONS(2846), 1, + [74891] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(147), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(279), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132218,39 +134255,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74298] = 14, - ACTIONS(2868), 1, + [74952] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2870), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2878), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2880), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2888), 1, - anon_sym_opaque, - ACTIONS(2917), 1, - anon_sym_table, - ACTIONS(2921), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2923), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(355), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(278), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2872), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2919), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2874), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132265,39 +134302,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74359] = 14, - ACTIONS(2846), 1, + [75013] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(148), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(79), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132312,39 +134349,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74420] = 14, - ACTIONS(2846), 1, + [75074] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2930), 1, + anon_sym_vector, + ACTIONS(2932), 1, + anon_sym_function, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + STATE(266), 1, + sym_type, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(2918), 2, + anon_sym_event, + anon_sym_hook, + ACTIONS(2928), 2, + anon_sym_list, + anon_sym_file, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(2920), 14, + anon_sym_addr, + anon_sym_any, + anon_sym_bool, + anon_sym_count, + anon_sym_double, + anon_sym_int, + anon_sym_interval, + anon_sym_string, + anon_sym_subnet, + anon_sym_pattern, + anon_sym_port, + anon_sym_time, + anon_sym_timer, + sym_id, + [75135] = 14, + ACTIONS(2914), 1, + anon_sym_enum, + ACTIONS(2916), 1, + anon_sym_record, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2924), 1, + anon_sym_set, + ACTIONS(2926), 1, + anon_sym_union, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(135), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(275), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132359,39 +134443,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74481] = 14, - ACTIONS(2846), 1, + [75196] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2944), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2948), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2950), 1, anon_sym_function, - STATE(33), 1, + STATE(1738), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2946), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132406,39 +134490,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74542] = 14, - ACTIONS(2846), 1, + [75257] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2922), 1, + anon_sym_table, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2932), 1, anon_sym_function, - STATE(130), 1, + ACTIONS(2934), 1, + anon_sym_opaque, + STATE(81), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132453,39 +134537,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74603] = 14, - ACTIONS(2789), 1, + [75318] = 14, + ACTIONS(2848), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2799), 1, + ACTIONS(2856), 1, + anon_sym_table, + ACTIONS(2858), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2809), 1, - anon_sym_opaque, - ACTIONS(2890), 1, - anon_sym_table, - ACTIONS(2894), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2896), 1, + ACTIONS(2866), 1, anon_sym_function, - STATE(2052), 1, + ACTIONS(2868), 1, + anon_sym_opaque, + STATE(1273), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2892), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132500,39 +134584,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74664] = 14, - ACTIONS(2846), 1, + [75379] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2990), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2994), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2996), 1, anon_sym_function, - STATE(141), 1, + STATE(90), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2992), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132547,39 +134631,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74725] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [75440] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, ACTIONS(2856), 1, - anon_sym_set, + anon_sym_table, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2866), 1, - anon_sym_opaque, - ACTIONS(2898), 1, - anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2864), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2866), 1, anon_sym_function, - STATE(128), 1, + ACTIONS(2868), 1, + anon_sym_opaque, + STATE(1282), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2862), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132594,39 +134678,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74786] = 14, - ACTIONS(2846), 1, - anon_sym_enum, + [75501] = 14, ACTIONS(2848), 1, + anon_sym_enum, + ACTIONS(2850), 1, anon_sym_record, - ACTIONS(2854), 1, - anon_sym_table, - ACTIONS(2856), 1, - anon_sym_set, ACTIONS(2858), 1, + anon_sym_set, + ACTIONS(2860), 1, anon_sym_union, - ACTIONS(2862), 1, + ACTIONS(2868), 1, + anon_sym_opaque, + ACTIONS(2936), 1, + anon_sym_table, + ACTIONS(2940), 1, anon_sym_vector, - ACTIONS(2864), 1, + ACTIONS(2942), 1, anon_sym_function, - ACTIONS(2866), 1, - anon_sym_opaque, - STATE(50), 1, + STATE(1273), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2852), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2860), 2, + ACTIONS(2938), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2854), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132641,39 +134725,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74847] = 14, - ACTIONS(2846), 1, + [75562] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2990), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2994), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2996), 1, anon_sym_function, - STATE(142), 1, + STATE(36), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2992), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132688,39 +134772,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74908] = 14, - ACTIONS(2789), 1, + [75623] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2791), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2797), 1, + ACTIONS(2922), 1, anon_sym_table, - ACTIONS(2799), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2801), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2805), 1, + ACTIONS(2930), 1, anon_sym_vector, - ACTIONS(2807), 1, + ACTIONS(2932), 1, anon_sym_function, - ACTIONS(2809), 1, + ACTIONS(2934), 1, anon_sym_opaque, - STATE(23), 1, + STATE(262), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2793), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2803), 2, + ACTIONS(2928), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2795), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132735,39 +134819,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [74969] = 14, - ACTIONS(2846), 1, + [75684] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2990), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2994), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2996), 1, anon_sym_function, - STATE(133), 1, + STATE(37), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2992), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132782,39 +134866,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [75030] = 14, - ACTIONS(2846), 1, + [75745] = 14, + ACTIONS(2914), 1, anon_sym_enum, - ACTIONS(2848), 1, + ACTIONS(2916), 1, anon_sym_record, - ACTIONS(2856), 1, + ACTIONS(2924), 1, anon_sym_set, - ACTIONS(2858), 1, + ACTIONS(2926), 1, anon_sym_union, - ACTIONS(2866), 1, + ACTIONS(2934), 1, anon_sym_opaque, - ACTIONS(2898), 1, + ACTIONS(2990), 1, anon_sym_table, - ACTIONS(2902), 1, + ACTIONS(2994), 1, anon_sym_vector, - ACTIONS(2904), 1, + ACTIONS(2996), 1, anon_sym_function, - STATE(132), 1, + STATE(79), 1, sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2850), 2, + ACTIONS(2918), 2, anon_sym_event, anon_sym_hook, - ACTIONS(2900), 2, + ACTIONS(2992), 2, anon_sym_list, anon_sym_file, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2852), 14, + ACTIONS(2920), 14, anon_sym_addr, anon_sym_any, anon_sym_bool, @@ -132829,24 +134913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_time, anon_sym_timer, sym_id, - [75091] = 8, - ACTIONS(608), 1, + [75806] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2409), 1, + ACTIONS(3006), 1, anon_sym_SEMI, - STATE(2573), 1, + STATE(2544), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -132855,7 +134939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -132869,24 +134953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75139] = 8, - ACTIONS(608), 1, + [75854] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2941), 1, + ACTIONS(3008), 1, anon_sym_SEMI, - STATE(2439), 1, + STATE(2646), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -132895,7 +134979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -132909,24 +134993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75187] = 8, - ACTIONS(608), 1, + [75902] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2581), 1, + ACTIONS(3010), 1, anon_sym_SEMI, - STATE(2531), 1, + STATE(2602), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -132935,7 +135019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -132949,24 +135033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75235] = 8, - ACTIONS(608), 1, + [75950] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2943), 1, + ACTIONS(3012), 1, anon_sym_SEMI, - STATE(2178), 1, + STATE(2710), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -132975,7 +135059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -132989,24 +135073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75283] = 8, - ACTIONS(608), 1, + [75998] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2945), 1, + ACTIONS(2568), 1, anon_sym_SEMI, - STATE(2299), 1, + STATE(2642), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133015,7 +135099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133029,24 +135113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75331] = 8, - ACTIONS(608), 1, + [76046] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2689), 1, + ACTIONS(3014), 1, anon_sym_SEMI, - STATE(2352), 1, + STATE(2454), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133055,7 +135139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133069,24 +135153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75379] = 8, - ACTIONS(608), 1, + [76094] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2947), 1, + ACTIONS(3016), 1, anon_sym_SEMI, - STATE(2540), 1, + STATE(2672), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133095,7 +135179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133109,24 +135193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75427] = 8, - ACTIONS(608), 1, + [76142] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2949), 1, + ACTIONS(3018), 1, anon_sym_SEMI, - STATE(2715), 1, + STATE(2597), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133135,7 +135219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133149,24 +135233,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75475] = 8, - ACTIONS(608), 1, + [76190] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2951), 1, + ACTIONS(3020), 1, anon_sym_SEMI, - STATE(2356), 1, + STATE(2599), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133175,7 +135259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133189,24 +135273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75523] = 8, - ACTIONS(608), 1, + [76238] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2953), 1, + ACTIONS(3022), 1, anon_sym_SEMI, - STATE(2763), 1, + STATE(2601), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133215,7 +135299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133229,24 +135313,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75571] = 8, - ACTIONS(608), 1, + [76286] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2955), 1, + ACTIONS(3024), 1, anon_sym_SEMI, - STATE(2368), 1, + STATE(2224), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133255,7 +135339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133269,24 +135353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75619] = 8, - ACTIONS(608), 1, + [76334] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2957), 1, + ACTIONS(3026), 1, anon_sym_SEMI, - STATE(2369), 1, + STATE(2815), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133295,7 +135379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133309,24 +135393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75667] = 8, - ACTIONS(608), 1, + [76382] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2959), 1, + ACTIONS(3028), 1, anon_sym_SEMI, - STATE(2501), 1, + STATE(2652), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133335,7 +135419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133349,24 +135433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75715] = 8, - ACTIONS(608), 1, + [76430] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2961), 1, + ACTIONS(2782), 1, anon_sym_SEMI, - STATE(2765), 1, + STATE(2607), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133375,7 +135459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133389,24 +135473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75763] = 8, - ACTIONS(608), 1, + [76478] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2963), 1, + ACTIONS(3030), 1, anon_sym_SEMI, - STATE(2607), 1, + STATE(2427), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133415,7 +135499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133429,24 +135513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75811] = 8, - ACTIONS(608), 1, + [76526] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2685), 1, + ACTIONS(3032), 1, anon_sym_SEMI, - STATE(2605), 1, + STATE(2797), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133455,7 +135539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133469,24 +135553,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75859] = 8, - ACTIONS(608), 1, + [76574] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2965), 1, + ACTIONS(3034), 1, anon_sym_SEMI, - STATE(2203), 1, + STATE(2653), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133495,7 +135579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133509,24 +135593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75907] = 8, - ACTIONS(608), 1, + [76622] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2967), 1, + ACTIONS(3036), 1, anon_sym_SEMI, - STATE(2296), 1, + STATE(2472), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133535,7 +135619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133549,24 +135633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [75955] = 8, - ACTIONS(608), 1, + [76670] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2969), 1, + ACTIONS(3038), 1, anon_sym_SEMI, - STATE(2204), 1, + STATE(2319), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133575,7 +135659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133589,24 +135673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76003] = 8, - ACTIONS(608), 1, + [76718] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2971), 1, + ACTIONS(3040), 1, anon_sym_SEMI, - STATE(2599), 1, + STATE(2283), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133615,7 +135699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133629,24 +135713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76051] = 8, - ACTIONS(608), 1, + [76766] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2973), 1, + ACTIONS(3042), 1, anon_sym_SEMI, - STATE(2611), 1, + STATE(2722), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133655,7 +135739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133669,24 +135753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76099] = 8, - ACTIONS(608), 1, + [76814] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2975), 1, + ACTIONS(3044), 1, anon_sym_SEMI, - STATE(2344), 1, + STATE(2621), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133695,7 +135779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133709,24 +135793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76147] = 8, - ACTIONS(608), 1, + [76862] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2977), 1, + ACTIONS(3046), 1, anon_sym_SEMI, - STATE(2799), 1, + STATE(2412), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133735,7 +135819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133749,24 +135833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76195] = 8, - ACTIONS(608), 1, + [76910] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2979), 1, + ACTIONS(3048), 1, anon_sym_SEMI, - STATE(2802), 1, + STATE(2630), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133775,7 +135859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133789,24 +135873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76243] = 8, - ACTIONS(608), 1, + [76958] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2981), 1, + ACTIONS(2448), 1, anon_sym_SEMI, - STATE(2615), 1, + STATE(2281), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133815,7 +135899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133829,24 +135913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76291] = 8, - ACTIONS(608), 1, + [77006] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2983), 1, + ACTIONS(3050), 1, anon_sym_SEMI, - STATE(2269), 1, + STATE(2824), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133855,7 +135939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133869,24 +135953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76339] = 8, - ACTIONS(608), 1, + [77054] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2985), 1, + ACTIONS(3052), 1, anon_sym_SEMI, - STATE(2616), 1, + STATE(2554), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133895,7 +135979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133909,24 +135993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76387] = 8, - ACTIONS(608), 1, + [77102] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2987), 1, + ACTIONS(3054), 1, anon_sym_SEMI, - STATE(2188), 1, + STATE(2400), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133935,7 +136019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133949,24 +136033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76435] = 8, - ACTIONS(608), 1, + [77150] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2989), 1, + ACTIONS(3056), 1, anon_sym_SEMI, - STATE(2757), 1, + STATE(2665), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -133975,7 +136059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -133989,24 +136073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76483] = 8, - ACTIONS(608), 1, + [77198] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2991), 1, + ACTIONS(2426), 1, anon_sym_SEMI, - STATE(2274), 1, + STATE(2265), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134015,7 +136099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134029,24 +136113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76531] = 8, - ACTIONS(608), 1, + [77246] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2707), 1, + ACTIONS(3058), 1, anon_sym_SEMI, - STATE(2471), 1, + STATE(2668), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134055,7 +136139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134069,24 +136153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76579] = 8, - ACTIONS(608), 1, + [77294] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2993), 1, + ACTIONS(3060), 1, anon_sym_SEMI, - STATE(2339), 1, + STATE(2476), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134095,7 +136179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134109,24 +136193,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76627] = 8, - ACTIONS(608), 1, + [77342] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2995), 1, + ACTIONS(3062), 1, anon_sym_SEMI, - STATE(2606), 1, + STATE(2731), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134135,7 +136219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134149,59 +136233,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76675] = 3, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(2997), 26, - anon_sym_enum, - anon_sym_record, - anon_sym_event, - anon_sym_addr, - anon_sym_any, - anon_sym_bool, - anon_sym_count, - anon_sym_double, - anon_sym_int, - anon_sym_interval, - anon_sym_string, - anon_sym_subnet, - anon_sym_pattern, - anon_sym_port, - anon_sym_table, - anon_sym_set, - anon_sym_time, - anon_sym_timer, - anon_sym_union, - anon_sym_list, - anon_sym_vector, - anon_sym_function, - anon_sym_hook, - anon_sym_file, - anon_sym_opaque, - sym_id, - [76713] = 8, - ACTIONS(608), 1, + [77390] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2999), 1, + ACTIONS(3064), 1, anon_sym_SEMI, - STATE(2768), 1, + STATE(2669), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134210,7 +136259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134224,24 +136273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76761] = 8, - ACTIONS(608), 1, + [77438] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3001), 1, + ACTIONS(3066), 1, anon_sym_SEMI, - STATE(2545), 1, + STATE(2671), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134250,7 +136299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134264,24 +136313,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76809] = 8, - ACTIONS(608), 1, + [77486] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3003), 1, + ACTIONS(2600), 1, anon_sym_SEMI, - STATE(2291), 1, + STATE(2530), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134290,7 +136339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134304,24 +136353,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76857] = 8, - ACTIONS(608), 1, + [77534] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3005), 1, + ACTIONS(3068), 1, anon_sym_SEMI, - STATE(2559), 1, + STATE(2673), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134330,7 +136379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134344,24 +136393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76905] = 8, - ACTIONS(608), 1, + [77582] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2613), 1, + ACTIONS(3070), 1, anon_sym_SEMI, - STATE(2772), 1, + STATE(2298), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134370,7 +136419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134384,24 +136433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [76953] = 8, - ACTIONS(608), 1, + [77630] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3007), 1, + ACTIONS(3072), 1, anon_sym_SEMI, - STATE(2556), 1, + STATE(2306), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134410,7 +136459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134424,24 +136473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77001] = 8, - ACTIONS(608), 1, + [77678] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2671), 1, + ACTIONS(3074), 1, anon_sym_SEMI, - STATE(2271), 1, + STATE(2386), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134450,7 +136499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134464,24 +136513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77049] = 8, - ACTIONS(608), 1, + [77726] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3009), 1, + ACTIONS(3076), 1, anon_sym_SEMI, - STATE(2774), 1, + STATE(2845), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134490,7 +136539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134504,24 +136553,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77097] = 8, - ACTIONS(608), 1, + [77774] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3011), 1, + ACTIONS(2500), 1, anon_sym_SEMI, - STATE(2474), 1, + STATE(2744), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134530,7 +136579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134544,24 +136593,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77145] = 8, - ACTIONS(608), 1, + [77822] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3013), 1, + ACTIONS(3078), 1, anon_sym_SEMI, - STATE(2773), 1, + STATE(2781), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134570,7 +136619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134584,24 +136633,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77193] = 8, - ACTIONS(608), 1, + [77870] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3015), 1, + ACTIONS(3080), 1, anon_sym_SEMI, - STATE(2499), 1, + STATE(2252), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134610,7 +136659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134624,24 +136673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77241] = 8, - ACTIONS(608), 1, + [77918] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3017), 1, + ACTIONS(3082), 1, anon_sym_SEMI, - STATE(2500), 1, + STATE(2600), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134650,7 +136699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134664,24 +136713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77289] = 8, - ACTIONS(608), 1, + [77966] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2453), 1, + ACTIONS(3084), 1, anon_sym_SEMI, - STATE(2825), 1, + STATE(2727), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134690,7 +136739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134704,24 +136753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77337] = 8, - ACTIONS(608), 1, + [78014] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3019), 1, + ACTIONS(3086), 1, anon_sym_SEMI, - STATE(2275), 1, + STATE(2290), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134730,7 +136779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134744,24 +136793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77385] = 8, - ACTIONS(608), 1, + [78062] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3021), 1, + ACTIONS(2610), 1, anon_sym_SEMI, - STATE(2821), 1, + STATE(2513), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134770,7 +136819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134784,24 +136833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77433] = 8, - ACTIONS(608), 1, + [78110] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3023), 1, + ACTIONS(2582), 1, anon_sym_SEMI, - STATE(2564), 1, + STATE(2861), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134810,7 +136859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134824,24 +136873,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77481] = 8, - ACTIONS(608), 1, + [78158] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3025), 1, + ACTIONS(3088), 1, anon_sym_SEMI, - STATE(2154), 1, + STATE(2720), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134850,7 +136899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134864,24 +136913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77529] = 8, - ACTIONS(608), 1, + [78206] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3027), 1, + ACTIONS(2532), 1, anon_sym_SEMI, - STATE(2824), 1, + STATE(2250), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134890,7 +136939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134904,24 +136953,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77577] = 8, - ACTIONS(608), 1, + [78254] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3029), 1, + ACTIONS(3090), 1, anon_sym_SEMI, - STATE(2554), 1, + STATE(2254), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134930,7 +136979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134944,24 +136993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77625] = 8, - ACTIONS(608), 1, + [78302] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3031), 1, + ACTIONS(3092), 1, anon_sym_SEMI, - STATE(2827), 1, + STATE(2798), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -134970,7 +137019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -134984,24 +137033,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77673] = 8, - ACTIONS(608), 1, + [78350] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2623), 1, + ACTIONS(3094), 1, anon_sym_SEMI, - STATE(2751), 1, + STATE(2804), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135010,7 +137059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135024,24 +137073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77721] = 8, - ACTIONS(608), 1, + [78398] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2755), 1, + ACTIONS(3096), 1, anon_sym_SEMI, - STATE(2553), 1, + STATE(2487), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135050,7 +137099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135064,24 +137113,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77769] = 8, - ACTIONS(608), 1, + [78446] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3033), 1, + ACTIONS(2552), 1, anon_sym_SEMI, - STATE(2281), 1, + STATE(2417), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135090,7 +137139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135104,24 +137153,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77817] = 8, - ACTIONS(608), 1, + [78494] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2529), 1, + ACTIONS(3098), 1, anon_sym_SEMI, - STATE(2165), 1, + STATE(2811), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135130,7 +137179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135144,24 +137193,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77865] = 8, - ACTIONS(608), 1, + [78542] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(3100), 26, + anon_sym_enum, + anon_sym_record, + anon_sym_event, + anon_sym_addr, + anon_sym_any, + anon_sym_bool, + anon_sym_count, + anon_sym_double, + anon_sym_int, + anon_sym_interval, + anon_sym_string, + anon_sym_subnet, + anon_sym_pattern, + anon_sym_port, + anon_sym_table, + anon_sym_set, + anon_sym_time, + anon_sym_timer, + anon_sym_union, + anon_sym_list, + anon_sym_vector, + anon_sym_function, + anon_sym_hook, + anon_sym_file, + anon_sym_opaque, + sym_id, + [78580] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3035), 1, + ACTIONS(3102), 1, anon_sym_SEMI, - STATE(2555), 1, + STATE(2817), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135170,7 +137254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135184,24 +137268,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77913] = 8, - ACTIONS(608), 1, + [78628] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3037), 1, + ACTIONS(3104), 1, anon_sym_SEMI, - STATE(2282), 1, + STATE(2812), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135210,7 +137294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135224,24 +137308,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [77961] = 8, - ACTIONS(608), 1, + [78676] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3039), 1, + ACTIONS(3106), 1, anon_sym_SEMI, - STATE(2305), 1, + STATE(2278), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135250,7 +137334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135264,24 +137348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78009] = 8, - ACTIONS(608), 1, + [78724] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3041), 1, + ACTIONS(2466), 1, anon_sym_SEMI, - STATE(2164), 1, + STATE(2311), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135290,7 +137374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135304,24 +137388,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78057] = 8, - ACTIONS(608), 1, + [78772] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3043), 1, + ACTIONS(3108), 1, anon_sym_SEMI, - STATE(2561), 1, + STATE(2280), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135330,7 +137414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135344,24 +137428,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78105] = 8, - ACTIONS(608), 1, + [78820] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3045), 1, + ACTIONS(3110), 1, anon_sym_SEMI, - STATE(2562), 1, + STATE(2577), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135370,7 +137454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135384,24 +137468,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78153] = 8, - ACTIONS(608), 1, + [78868] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3047), 1, + ACTIONS(2518), 1, anon_sym_SEMI, - STATE(2758), 1, + STATE(2715), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135410,7 +137494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135424,24 +137508,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78201] = 8, - ACTIONS(608), 1, + [78916] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(2653), 1, + ACTIONS(3112), 1, anon_sym_SEMI, - STATE(2187), 1, + STATE(2433), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135450,7 +137534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135464,24 +137548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78249] = 8, - ACTIONS(608), 1, + [78964] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3049), 1, + ACTIONS(3114), 1, anon_sym_SEMI, - STATE(2600), 1, + STATE(2489), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135490,7 +137574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135504,24 +137588,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78297] = 8, - ACTIONS(608), 1, + [79012] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3051), 1, + ACTIONS(3116), 1, anon_sym_SEMI, - STATE(2832), 1, + STATE(2376), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135530,7 +137614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135544,24 +137628,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78345] = 8, - ACTIONS(608), 1, + [79060] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3053), 1, + ACTIONS(3118), 1, anon_sym_SEMI, - STATE(2229), 1, + STATE(2598), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135570,7 +137654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135584,24 +137668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78393] = 8, - ACTIONS(608), 1, + [79108] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3055), 1, + ACTIONS(3120), 1, anon_sym_SEMI, - STATE(2726), 1, + STATE(2770), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135610,7 +137694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135624,24 +137708,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78441] = 8, - ACTIONS(608), 1, + [79156] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3057), 1, + ACTIONS(3122), 1, anon_sym_SEMI, - STATE(2205), 1, + STATE(2802), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135650,7 +137734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135664,24 +137748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78489] = 8, - ACTIONS(608), 1, + [79204] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3059), 1, + ACTIONS(3124), 1, anon_sym_SEMI, - STATE(2617), 1, + STATE(2255), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135690,7 +137774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135704,24 +137788,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78537] = 8, - ACTIONS(608), 1, + [79252] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3061), 1, + ACTIONS(3126), 1, anon_sym_SEMI, - STATE(2170), 1, + STATE(2461), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135730,7 +137814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135744,24 +137828,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78585] = 8, - ACTIONS(608), 1, + [79300] = 8, + ACTIONS(884), 1, anon_sym_AMPdeprecated, - ACTIONS(3063), 1, + ACTIONS(3128), 1, anon_sym_SEMI, - STATE(2190), 1, + STATE(2447), 1, sym_attr_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1632), 2, + STATE(1597), 2, sym_attr, aux_sym_attr_list_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(610), 8, + ACTIONS(886), 8, anon_sym_AMPbroker_allow_complex_type, anon_sym_AMPerror_handler, anon_sym_AMPis_assigned, @@ -135770,7 +137854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPoptional, anon_sym_AMPraw_output, anon_sym_AMPredef, - ACTIONS(612), 13, + ACTIONS(888), 13, anon_sym_AMPadd_func, anon_sym_AMPbackend, anon_sym_AMPbroker_store, @@ -135784,20 +137868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMPread_expire, anon_sym_AMPtype_column, anon_sym_AMPwrite_expire, - [78633] = 5, - ACTIONS(2579), 1, + [79348] = 5, + ACTIONS(3130), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1422), 2, + ACTIONS(1470), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1420), 20, + ACTIONS(1468), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135818,20 +137902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78672] = 5, - ACTIONS(3065), 1, + anon_sym_ATpragma, + [79388] = 5, + ACTIONS(2446), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1432), 2, + ACTIONS(1464), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1430), 20, + ACTIONS(1462), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135852,18 +137937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78711] = 4, + anon_sym_ATpragma, + [79428] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1524), 2, + ACTIONS(1634), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1522), 20, + ACTIONS(1632), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135884,18 +137970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78747] = 4, + anon_sym_ATpragma, + [79465] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1640), 2, + ACTIONS(1544), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1638), 20, + ACTIONS(1542), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135916,18 +138003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78783] = 4, + anon_sym_ATpragma, + [79502] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1628), 2, + ACTIONS(1580), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1626), 20, + ACTIONS(1578), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135948,18 +138036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78819] = 4, + anon_sym_ATpragma, + [79539] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1446), 2, + ACTIONS(1584), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1444), 20, + ACTIONS(1582), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -135980,18 +138069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78855] = 4, + anon_sym_ATpragma, + [79576] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1466), 2, + ACTIONS(1592), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1464), 20, + ACTIONS(1590), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136012,18 +138102,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78891] = 4, + anon_sym_ATpragma, + [79613] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1494), 2, + ACTIONS(1606), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1492), 20, + ACTIONS(1604), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136044,18 +138135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78927] = 4, + anon_sym_ATpragma, + [79650] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1500), 2, + ACTIONS(1610), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1498), 20, + ACTIONS(1608), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136076,18 +138168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78963] = 4, + anon_sym_ATpragma, + [79687] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1512), 2, + ACTIONS(1532), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1510), 20, + ACTIONS(1530), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136108,18 +138201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [78999] = 4, + anon_sym_ATpragma, + [79724] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1636), 2, + ACTIONS(1654), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1634), 20, + ACTIONS(1652), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136140,18 +138234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79035] = 4, + anon_sym_ATpragma, + [79761] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1516), 2, + ACTIONS(1476), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1514), 20, + ACTIONS(1474), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136172,18 +138267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79071] = 4, + anon_sym_ATpragma, + [79798] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1438), 2, + ACTIONS(1662), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1436), 20, + ACTIONS(1660), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136204,18 +138300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79107] = 4, + anon_sym_ATpragma, + [79835] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1520), 2, + ACTIONS(1666), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1518), 20, + ACTIONS(1664), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136236,18 +138333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79143] = 4, + anon_sym_ATpragma, + [79872] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1504), 2, + ACTIONS(1682), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1502), 20, + ACTIONS(1680), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136268,18 +138366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79179] = 4, + anon_sym_ATpragma, + [79909] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1578), 2, + ACTIONS(1488), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1576), 20, + ACTIONS(1486), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136300,18 +138399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79215] = 4, + anon_sym_ATpragma, + [79946] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1624), 2, + ACTIONS(1496), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1622), 20, + ACTIONS(1494), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136332,18 +138432,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79251] = 4, + anon_sym_ATpragma, + [79983] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1528), 2, + ACTIONS(1504), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1526), 20, + ACTIONS(1502), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136364,18 +138465,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79287] = 4, + anon_sym_ATpragma, + [80020] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1442), 2, + ACTIONS(1658), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1440), 20, + ACTIONS(1656), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136396,18 +138498,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79323] = 4, + anon_sym_ATpragma, + [80057] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1568), 2, + ACTIONS(1524), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1566), 20, + ACTIONS(1522), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136428,18 +138531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79359] = 4, + anon_sym_ATpragma, + [80094] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1536), 2, + ACTIONS(1528), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1534), 20, + ACTIONS(1526), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136460,18 +138564,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79395] = 4, + anon_sym_ATpragma, + [80131] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1508), 2, + ACTIONS(1536), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1506), 20, + ACTIONS(1534), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136492,7 +138597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79431] = 4, + anon_sym_ATpragma, + [80168] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -136503,7 +138609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1538), 20, + ACTIONS(1538), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136524,18 +138630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79467] = 4, + anon_sym_ATpragma, + [80205] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1490), 2, + ACTIONS(1552), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1488), 20, + ACTIONS(1550), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136556,18 +138663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79503] = 4, + anon_sym_ATpragma, + [80242] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1462), 2, + ACTIONS(1556), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1460), 20, + ACTIONS(1554), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136588,18 +138696,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79539] = 4, + anon_sym_ATpragma, + [80279] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1432), 2, + ACTIONS(1564), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1430), 20, + ACTIONS(1562), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136620,18 +138729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79575] = 4, + anon_sym_ATpragma, + [80316] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1532), 2, + ACTIONS(1568), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1530), 20, + ACTIONS(1566), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136652,18 +138762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79611] = 4, + anon_sym_ATpragma, + [80353] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1544), 2, + ACTIONS(1572), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1542), 20, + ACTIONS(1570), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136684,18 +138795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79647] = 4, + anon_sym_ATpragma, + [80390] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1458), 2, + ACTIONS(1576), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1456), 20, + ACTIONS(1574), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136716,18 +138828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79683] = 4, + anon_sym_ATpragma, + [80427] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1422), 2, + ACTIONS(1560), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1420), 20, + ACTIONS(1558), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136748,18 +138861,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79719] = 4, + anon_sym_ATpragma, + [80464] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1548), 2, + ACTIONS(1588), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1546), 20, + ACTIONS(1586), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136780,18 +138894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79755] = 4, + anon_sym_ATpragma, + [80501] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1454), 2, + ACTIONS(1500), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1452), 20, + ACTIONS(1498), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136812,18 +138927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79791] = 4, + anon_sym_ATpragma, + [80538] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1608), 2, + ACTIONS(1548), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1606), 20, + ACTIONS(1546), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136844,18 +138960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79827] = 4, + anon_sym_ATpragma, + [80575] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1620), 2, + ACTIONS(1470), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1618), 20, + ACTIONS(1468), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136876,18 +138993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79863] = 4, + anon_sym_ATpragma, + [80612] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1582), 2, + ACTIONS(1642), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1580), 20, + ACTIONS(1640), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136908,18 +139026,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79899] = 4, + anon_sym_ATpragma, + [80649] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1556), 2, + ACTIONS(1464), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1554), 20, + ACTIONS(1462), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136940,18 +139059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79935] = 4, + anon_sym_ATpragma, + [80686] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1616), 2, + ACTIONS(1646), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1614), 20, + ACTIONS(1644), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -136972,18 +139092,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [79971] = 4, + anon_sym_ATpragma, + [80723] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1552), 2, + ACTIONS(1480), 2, + anon_sym_ATload, + anon_sym_ATif, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(1478), 21, + anon_sym_module, + anon_sym_export, + anon_sym_RBRACE, + anon_sym_global, + anon_sym_option, + anon_sym_const, + anon_sym_redef, + anon_sym_type, + anon_sym_event, + anon_sym_function, + anon_sym_hook, + anon_sym_ATdeprecated, + anon_sym_ATload_DASHsigs, + anon_sym_ATload_DASHplugin, + anon_sym_ATunload, + anon_sym_ATprefixes, + anon_sym_ATifdef, + anon_sym_ATifndef, + anon_sym_ATendif, + anon_sym_ATelse, + anon_sym_ATpragma, + [80760] = 4, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(1508), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1550), 20, + ACTIONS(1506), 21, anon_sym_module, anon_sym_export, anon_sym_RBRACE, @@ -137004,44 +139158,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80007] = 14, - ACTIONS(626), 1, + anon_sym_ATpragma, + [80797] = 14, + ACTIONS(902), 1, aux_sym_constant_token1, - ACTIONS(638), 1, + ACTIONS(914), 1, sym_port, - ACTIONS(640), 1, + ACTIONS(916), 1, sym_floatp, - ACTIONS(3069), 1, + ACTIONS(3134), 1, sym_ipv6, - ACTIONS(3071), 1, + ACTIONS(3136), 1, sym_ipv4, - ACTIONS(3073), 1, + ACTIONS(3138), 1, aux_sym_string_token1, - STATE(4), 1, + STATE(5), 1, sym_string_directive, STATE(291), 1, sym_integer, - STATE(1898), 1, + STATE(1923), 1, sym_constant, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3067), 2, + ACTIONS(3132), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, - STATE(338), 2, + STATE(326), 2, sym_interval, sym_string, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(628), 4, + ACTIONS(904), 4, anon_sym_T, anon_sym_F, sym_hex, sym_hostname, - [80058] = 13, + [80848] = 15, ACTIONS(83), 1, anon_sym_ATload, ACTIONS(87), 1, @@ -137050,12 +139205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprefixes, ACTIONS(91), 1, anon_sym_ATif, - ACTIONS(3075), 1, + ACTIONS(97), 1, + anon_sym_ATpragma, + ACTIONS(3140), 1, anon_sym_LBRACE, - ACTIONS(3077), 1, + ACTIONS(3142), 1, anon_sym_ATdeprecated, - STATE(371), 1, + STATE(312), 1, sym_func_body, + STATE(313), 1, + sym_pragma, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -137068,14 +139227,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_ATendif, anon_sym_ATelse, - STATE(1808), 2, + STATE(1830), 2, sym_preproc_directive, aux_sym_func_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80105] = 13, + [80901] = 15, ACTIONS(83), 1, anon_sym_ATload, ACTIONS(87), 1, @@ -137084,11 +139243,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprefixes, ACTIONS(91), 1, anon_sym_ATif, - ACTIONS(3077), 1, - anon_sym_ATdeprecated, - ACTIONS(3079), 1, + ACTIONS(97), 1, + anon_sym_ATpragma, + ACTIONS(3140), 1, anon_sym_LBRACE, - STATE(1802), 1, + ACTIONS(3142), 1, + anon_sym_ATdeprecated, + STATE(313), 1, + sym_pragma, + STATE(356), 1, sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137102,14 +139265,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_ATendif, anon_sym_ATelse, - STATE(1809), 2, + STATE(1833), 2, sym_preproc_directive, aux_sym_func_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80152] = 13, + [80954] = 15, ACTIONS(83), 1, anon_sym_ATload, ACTIONS(87), 1, @@ -137118,11 +139281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprefixes, ACTIONS(91), 1, anon_sym_ATif, - ACTIONS(3077), 1, + ACTIONS(97), 1, + anon_sym_ATpragma, + ACTIONS(3142), 1, anon_sym_ATdeprecated, - ACTIONS(3079), 1, + ACTIONS(3144), 1, anon_sym_LBRACE, - STATE(1799), 1, + STATE(313), 1, + sym_pragma, + STATE(1792), 1, sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137136,14 +139303,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_ATendif, anon_sym_ATelse, - STATE(1806), 2, + STATE(1832), 2, sym_preproc_directive, aux_sym_func_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80199] = 13, + [81007] = 15, ACTIONS(83), 1, anon_sym_ATload, ACTIONS(87), 1, @@ -137152,11 +139319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprefixes, ACTIONS(91), 1, anon_sym_ATif, - ACTIONS(3075), 1, - anon_sym_LBRACE, - ACTIONS(3077), 1, + ACTIONS(97), 1, + anon_sym_ATpragma, + ACTIONS(3142), 1, anon_sym_ATdeprecated, - STATE(369), 1, + ACTIONS(3144), 1, + anon_sym_LBRACE, + STATE(313), 1, + sym_pragma, + STATE(1799), 1, sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137170,57 +139341,61 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_ATendif, anon_sym_ATelse, - STATE(1809), 2, + STATE(1833), 2, sym_preproc_directive, aux_sym_func_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80246] = 12, - ACTIONS(3081), 1, + [81060] = 14, + ACTIONS(3146), 1, anon_sym_LBRACE, - ACTIONS(3083), 1, + ACTIONS(3148), 1, anon_sym_ATdeprecated, - ACTIONS(3086), 1, + ACTIONS(3151), 1, anon_sym_ATload, - ACTIONS(3092), 1, + ACTIONS(3157), 1, anon_sym_ATload_DASHplugin, - ACTIONS(3095), 1, + ACTIONS(3160), 1, anon_sym_ATprefixes, - ACTIONS(3098), 1, + ACTIONS(3163), 1, anon_sym_ATif, + ACTIONS(3172), 1, + anon_sym_ATpragma, + STATE(313), 1, + sym_pragma, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3089), 2, + ACTIONS(3154), 2, anon_sym_ATload_DASHsigs, anon_sym_ATunload, - ACTIONS(3101), 2, + ACTIONS(3166), 2, anon_sym_ATifdef, anon_sym_ATifndef, - ACTIONS(3104), 2, + ACTIONS(3169), 2, anon_sym_ATendif, anon_sym_ATelse, - STATE(1809), 2, + STATE(1833), 2, sym_preproc_directive, aux_sym_func_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80290] = 4, + [81110] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3109), 2, + ACTIONS(3177), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3107), 10, + ACTIONS(3175), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -137231,18 +139406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80316] = 4, + anon_sym_ATpragma, + [81137] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3113), 2, + ACTIONS(3181), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3111), 10, + ACTIONS(3179), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -137253,18 +139429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80342] = 4, + anon_sym_ATpragma, + [81164] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3117), 2, + ACTIONS(3185), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3115), 10, + ACTIONS(3183), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -137275,18 +139452,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80368] = 4, + anon_sym_ATpragma, + [81191] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3121), 2, + ACTIONS(2340), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3119), 10, + ACTIONS(2338), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -137297,18 +139475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80394] = 4, + anon_sym_ATpragma, + [81218] = 4, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2277), 2, + ACTIONS(3189), 2, anon_sym_ATload, anon_sym_ATif, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(2275), 10, + ACTIONS(3187), 11, anon_sym_LBRACE, anon_sym_ATdeprecated, anon_sym_ATload_DASHsigs, @@ -137319,172 +139498,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATifndef, anon_sym_ATendif, anon_sym_ATelse, - [80420] = 7, - ACTIONS(3123), 1, + anon_sym_ATpragma, + [81245] = 7, + ACTIONS(3191), 1, anon_sym_LPAREN, - ACTIONS(3127), 1, + ACTIONS(3195), 1, aux_sym_string_token1, - STATE(529), 1, - sym_string, - STATE(535), 1, + STATE(381), 1, sym_string_directive, + STATE(383), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3125), 2, + ACTIONS(3193), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80446] = 7, - ACTIONS(3129), 1, + [81271] = 7, + ACTIONS(3197), 1, anon_sym_LPAREN, - ACTIONS(3133), 1, + ACTIONS(3201), 1, aux_sym_string_token1, - STATE(525), 1, + STATE(458), 1, sym_string, - STATE(528), 1, + STATE(481), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3131), 2, + ACTIONS(3199), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80472] = 7, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(3135), 1, + [81297] = 7, + ACTIONS(3203), 1, anon_sym_LPAREN, - STATE(824), 1, - sym_string_directive, - STATE(1767), 1, + ACTIONS(3207), 1, + aux_sym_string_token1, + STATE(428), 1, sym_string, + STATE(430), 1, + sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(3205), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80498] = 7, - ACTIONS(3137), 1, + [81323] = 7, + ACTIONS(3209), 1, anon_sym_LPAREN, - ACTIONS(3141), 1, + ACTIONS(3213), 1, aux_sym_string_token1, - STATE(431), 1, + STATE(409), 1, sym_string, - STATE(494), 1, + STATE(413), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3139), 2, + ACTIONS(3211), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80524] = 7, - ACTIONS(3143), 1, + [81349] = 7, + ACTIONS(3215), 1, anon_sym_LPAREN, - ACTIONS(3147), 1, + ACTIONS(3219), 1, aux_sym_string_token1, - STATE(427), 1, - sym_string, - STATE(470), 1, + STATE(530), 1, sym_string_directive, + STATE(607), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3145), 2, + ACTIONS(3217), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80550] = 7, - ACTIONS(3073), 1, - aux_sym_string_token1, - ACTIONS(3149), 1, + [81375] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - STATE(4), 1, - sym_string_directive, - STATE(293), 1, - sym_string, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3225), 1, + anon_sym_EQ, + STATE(2090), 1, + sym_capture_list, + STATE(2105), 1, + sym_func_params, + STATE(2294), 1, + sym_begin_lambda, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3067), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80576] = 7, - ACTIONS(3151), 1, + [81403] = 7, + ACTIONS(3227), 1, anon_sym_LPAREN, - ACTIONS(3155), 1, + ACTIONS(3231), 1, aux_sym_string_token1, - STATE(388), 1, - sym_string, - STATE(402), 1, + STATE(519), 1, sym_string_directive, + STATE(551), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3153), 2, + ACTIONS(3229), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80602] = 8, - ACTIONS(3157), 1, - anon_sym_LPAREN, - ACTIONS(3159), 1, + [81429] = 8, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3161), 1, - anon_sym_EQ, - STATE(1991), 1, - sym_func_params, - STATE(2107), 1, - sym_capture_list, - STATE(2408), 1, - sym_begin_lambda, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [80630] = 8, - ACTIONS(3157), 1, + ACTIONS(3233), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3163), 1, - anon_sym_EQ, - STATE(1991), 1, + ACTIONS(3235), 1, + sym_id, + STATE(2105), 1, sym_func_params, - STATE(2107), 1, - sym_capture_list, - STATE(2408), 1, + STATE(2112), 1, sym_begin_lambda, + STATE(2114), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -137492,37 +139653,37 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80658] = 7, - ACTIONS(3165), 1, + [81457] = 7, + ACTIONS(3237), 1, anon_sym_LPAREN, - ACTIONS(3169), 1, + ACTIONS(3241), 1, aux_sym_string_token1, - STATE(564), 1, + STATE(534), 1, sym_string, - STATE(595), 1, + STATE(569), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3167), 2, + ACTIONS(3239), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80684] = 8, - ACTIONS(3157), 1, + [81483] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3171), 1, + ACTIONS(3243), 1, anon_sym_EQ, - STATE(1991), 1, - sym_func_params, - STATE(2107), 1, + STATE(2090), 1, sym_capture_list, - STATE(2408), 1, + STATE(2105), 1, + sym_func_params, + STATE(2685), 1, sym_begin_lambda, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137531,191 +139692,210 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80712] = 8, - ACTIONS(3157), 1, + [81511] = 7, + ACTIONS(111), 1, + aux_sym_string_token1, + ACTIONS(3245), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3173), 1, - anon_sym_EQ, - STATE(1991), 1, - sym_func_params, - STATE(2107), 1, - sym_capture_list, - STATE(2385), 1, - sym_begin_lambda, + STATE(293), 1, + sym_string, + STATE(832), 1, + sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(99), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80740] = 7, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3179), 1, + [81537] = 7, + ACTIONS(3138), 1, aux_sym_string_token1, - STATE(538), 1, - sym_string, - STATE(613), 1, + ACTIONS(3247), 1, + anon_sym_LPAREN, + STATE(5), 1, sym_string_directive, + STATE(293), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3177), 2, + ACTIONS(3132), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80766] = 8, - ACTIONS(3157), 1, + [81563] = 7, + ACTIONS(3249), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3181), 1, - anon_sym_EQ, - STATE(1991), 1, - sym_func_params, - STATE(2107), 1, - sym_capture_list, - STATE(2385), 1, - sym_begin_lambda, + ACTIONS(3253), 1, + aux_sym_string_token1, + STATE(672), 1, + sym_string, + STATE(704), 1, + sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3251), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80794] = 7, - ACTIONS(3183), 1, + [81589] = 7, + ACTIONS(3255), 1, anon_sym_LPAREN, - ACTIONS(3187), 1, + ACTIONS(3259), 1, aux_sym_string_token1, - STATE(479), 1, + STATE(687), 1, sym_string_directive, - STATE(481), 1, + STATE(708), 1, sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3185), 2, + ACTIONS(3257), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80820] = 7, - ACTIONS(3189), 1, + [81615] = 7, + ACTIONS(3261), 1, anon_sym_LPAREN, - ACTIONS(3193), 1, + ACTIONS(3265), 1, aux_sym_string_token1, - STATE(387), 1, - sym_string, - STATE(393), 1, + STATE(537), 1, sym_string_directive, + STATE(545), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3191), 2, + ACTIONS(3263), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80846] = 7, - ACTIONS(109), 1, - aux_sym_string_token1, - ACTIONS(3195), 1, + [81641] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - STATE(293), 1, - sym_string, - STATE(824), 1, - sym_string_directive, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3267), 1, + anon_sym_EQ, + STATE(2090), 1, + sym_capture_list, + STATE(2105), 1, + sym_func_params, + STATE(2685), 1, + sym_begin_lambda, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80872] = 7, - ACTIONS(3197), 1, + [81669] = 7, + ACTIONS(3269), 1, anon_sym_LPAREN, - ACTIONS(3201), 1, + ACTIONS(3273), 1, aux_sym_string_token1, - STATE(381), 1, + STATE(494), 1, sym_string, - STATE(384), 1, + STATE(503), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3199), 2, + ACTIONS(3271), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80898] = 7, - ACTIONS(3203), 1, - anon_sym_LPAREN, - ACTIONS(3207), 1, + [81695] = 7, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(677), 1, - sym_string, - STATE(751), 1, + ACTIONS(3275), 1, + anon_sym_LPAREN, + STATE(832), 1, sym_string_directive, + STATE(1789), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3205), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80924] = 7, - ACTIONS(3209), 1, + [81721] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - ACTIONS(3213), 1, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3277), 1, + anon_sym_EQ, + STATE(2090), 1, + sym_capture_list, + STATE(2105), 1, + sym_func_params, + STATE(2294), 1, + sym_begin_lambda, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [81749] = 7, + ACTIONS(3279), 1, + anon_sym_LPAREN, + ACTIONS(3283), 1, aux_sym_string_token1, - STATE(616), 1, + STATE(432), 1, sym_string, - STATE(691), 1, + STATE(455), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3211), 2, + ACTIONS(3281), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80950] = 8, - ACTIONS(3157), 1, + [81775] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - ACTIONS(3159), 1, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3215), 1, + ACTIONS(3285), 1, anon_sym_EQ, - STATE(1991), 1, - sym_func_params, - STATE(2107), 1, + STATE(2090), 1, sym_capture_list, - STATE(2385), 1, + STATE(2105), 1, + sym_func_params, + STATE(2294), 1, sym_begin_lambda, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137724,19 +139904,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [80978] = 8, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3217), 1, + [81803] = 8, + ACTIONS(3221), 1, anon_sym_LPAREN, - ACTIONS(3219), 1, - sym_id, - STATE(1991), 1, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3287), 1, + anon_sym_EQ, + STATE(2090), 1, + sym_capture_list, + STATE(2105), 1, sym_func_params, - STATE(1997), 1, + STATE(2685), 1, sym_begin_lambda, - STATE(2011), 1, - sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -137744,16 +139924,16 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81006] = 7, - ACTIONS(2685), 1, + [81831] = 7, + ACTIONS(2600), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2603), 1, + STATE(2471), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137762,50 +139942,69 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81031] = 6, - ACTIONS(3201), 1, + [81856] = 6, + ACTIONS(3231), 1, aux_sym_string_token1, - STATE(382), 1, - sym_string, - STATE(384), 1, + STATE(519), 1, sym_string_directive, + STATE(555), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3199), 2, + ACTIONS(3229), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81054] = 6, - ACTIONS(109), 1, - aux_sym_string_token1, - STATE(824), 1, - sym_string_directive, - STATE(1766), 1, - sym_string, + [81879] = 7, + ACTIONS(2500), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2738), 1, + sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81077] = 7, - ACTIONS(3225), 1, + [81904] = 7, + ACTIONS(2582), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2755), 1, + sym_case_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [81929] = 7, + ACTIONS(3293), 1, anon_sym_RPAREN, - ACTIONS(3227), 1, + ACTIONS(3295), 1, sym_id, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2390), 1, + STATE(2453), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137814,9 +140013,17 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81102] = 4, - ACTIONS(3229), 1, - anon_sym_COLON, + [81954] = 7, + ACTIONS(3295), 1, + sym_id, + ACTIONS(3297), 1, + anon_sym_RPAREN, + STATE(1955), 1, + sym_formal_arg, + STATE(1959), 1, + aux_sym_formal_args_repeat1, + STATE(2661), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -137824,21 +140031,34 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1482), 4, - anon_sym_LBRACE, + [81979] = 7, + ACTIONS(2448), 1, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [81121] = 7, - ACTIONS(3227), 1, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2258), 1, + sym_case_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [82004] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3231), 1, + ACTIONS(3299), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2689), 1, + STATE(2364), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137847,48 +140067,50 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81146] = 4, - ACTIONS(3233), 1, - anon_sym_of, + [82029] = 6, + ACTIONS(3259), 1, + aux_sym_string_token1, + STATE(687), 1, + sym_string_directive, + STATE(712), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3257), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(480), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [81165] = 6, - ACTIONS(3207), 1, + [82052] = 6, + ACTIONS(3273), 1, aux_sym_string_token1, - STATE(733), 1, + STATE(495), 1, sym_string, - STATE(751), 1, + STATE(503), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3205), 2, + ACTIONS(3271), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81188] = 7, - ACTIONS(2529), 1, + [82075] = 7, + ACTIONS(2532), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2808), 1, + STATE(2248), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137897,17 +140119,17 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81213] = 7, - ACTIONS(3227), 1, - sym_id, - ACTIONS(3235), 1, - anon_sym_RPAREN, - STATE(1917), 1, - sym_formal_arg, - STATE(1940), 1, - aux_sym_formal_args_repeat1, - STATE(2793), 1, - sym_formal_args, + [82100] = 7, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_LPAREN, + STATE(2095), 1, + sym_begin_lambda, + STATE(2105), 1, + sym_func_params, + STATE(2114), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -137915,33 +140137,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81238] = 6, - ACTIONS(109), 1, + [82125] = 6, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(290), 1, + STATE(292), 1, sym_string, - STATE(824), 1, + STATE(832), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(97), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81261] = 7, - ACTIONS(3227), 1, + [82148] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3237), 1, + ACTIONS(3301), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2255), 1, + STATE(2288), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137950,31 +140172,16 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81286] = 4, - ACTIONS(3239), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - ACTIONS(1472), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [81305] = 7, - ACTIONS(3227), 1, + [82173] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3241), 1, + ACTIONS(3303), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2243), 1, + STATE(2675), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -137983,52 +140190,43 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81330] = 7, - ACTIONS(3227), 1, - sym_id, - ACTIONS(3243), 1, - anon_sym_RPAREN, - STATE(1917), 1, - sym_formal_arg, - STATE(1940), 1, - aux_sym_formal_args_repeat1, - STATE(2468), 1, - sym_formal_args, + [82198] = 6, + ACTIONS(3195), 1, + aux_sym_string_token1, + STATE(381), 1, + sym_string_directive, + STATE(384), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3193), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81355] = 6, - ACTIONS(3133), 1, + [82221] = 6, + ACTIONS(3213), 1, aux_sym_string_token1, - STATE(526), 1, + STATE(410), 1, sym_string, - STATE(528), 1, + STATE(413), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3131), 2, + ACTIONS(3211), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81378] = 7, - ACTIONS(2581), 1, - anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, - ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2527), 1, - sym_case_list, + [82244] = 4, + ACTIONS(3305), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138036,122 +140234,123 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81403] = 7, - ACTIONS(3227), 1, - sym_id, - ACTIONS(3245), 1, - anon_sym_RPAREN, - STATE(1917), 1, - sym_formal_arg, - STATE(1940), 1, - aux_sym_formal_args_repeat1, - STATE(2710), 1, - sym_formal_args, + ACTIONS(1510), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [82263] = 6, + ACTIONS(3309), 1, + anon_sym_EQ, + ACTIONS(3311), 1, + anon_sym_AMPdeprecated, + STATE(2182), 1, + sym_deprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3307), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81428] = 6, - ACTIONS(3127), 1, + [82286] = 6, + ACTIONS(3283), 1, aux_sym_string_token1, - STATE(530), 1, + STATE(434), 1, sym_string, - STATE(535), 1, + STATE(455), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3125), 2, + ACTIONS(3281), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81451] = 7, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, - ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2740), 1, - sym_case_list, + [82309] = 6, + ACTIONS(3138), 1, + aux_sym_string_token1, + STATE(5), 1, + sym_string_directive, + STATE(299), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3132), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81476] = 6, - ACTIONS(3249), 1, - anon_sym_EQ, - ACTIONS(3251), 1, - anon_sym_AMPdeprecated, - STATE(1974), 1, - sym_deprecated, + [82332] = 7, + ACTIONS(2552), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2415), 1, + sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3247), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81499] = 7, - ACTIONS(3227), 1, - sym_id, - ACTIONS(3253), 1, - anon_sym_RPAREN, - STATE(1917), 1, - sym_formal_arg, - STATE(1940), 1, - aux_sym_formal_args_repeat1, - STATE(2177), 1, - sym_formal_args, + [82357] = 6, + ACTIONS(3138), 1, + aux_sym_string_token1, + STATE(5), 1, + sym_string_directive, + STATE(292), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3132), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81524] = 6, - ACTIONS(3179), 1, - aux_sym_string_token1, - STATE(540), 1, - sym_string, - STATE(613), 1, - sym_string_directive, + [82380] = 4, + ACTIONS(3313), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3177), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81547] = 7, - ACTIONS(2653), 1, + ACTIONS(572), 4, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, + anon_sym_COMMA, + anon_sym_RBRACK, + [82399] = 7, ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2185), 1, - sym_case_list, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_LPAREN, + STATE(2105), 1, + sym_func_params, + STATE(2112), 1, + sym_begin_lambda, + STATE(2114), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138159,16 +140358,16 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81572] = 7, - ACTIONS(3227), 1, + [82424] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3255), 1, + ACTIONS(3315), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2241), 1, + STATE(2507), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138177,50 +140376,51 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81597] = 6, - ACTIONS(3073), 1, - aux_sym_string_token1, - STATE(4), 1, - sym_string_directive, - STATE(300), 1, - sym_string, + [82449] = 7, + ACTIONS(3295), 1, + sym_id, + ACTIONS(3317), 1, + anon_sym_RPAREN, + STATE(1955), 1, + sym_formal_arg, + STATE(1959), 1, + aux_sym_formal_args_repeat1, + STATE(2360), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3067), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81620] = 6, - ACTIONS(3169), 1, + [82474] = 6, + ACTIONS(3241), 1, aux_sym_string_token1, - STATE(566), 1, + STATE(539), 1, sym_string, - STATE(595), 1, + STATE(569), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3167), 2, + ACTIONS(3239), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81643] = 7, - ACTIONS(2671), 1, + [82497] = 7, + ACTIONS(2518), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2265), 1, + STATE(2703), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138229,16 +140429,16 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81668] = 7, - ACTIONS(3227), 1, + [82522] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3257), 1, + ACTIONS(3319), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2261), 1, + STATE(2576), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138247,33 +140447,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81693] = 6, - ACTIONS(3147), 1, + [82547] = 6, + ACTIONS(3253), 1, aux_sym_string_token1, - STATE(444), 1, + STATE(685), 1, sym_string, - STATE(470), 1, + STATE(704), 1, sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3145), 2, + ACTIONS(3251), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81716] = 7, - ACTIONS(2689), 1, + [82570] = 7, + ACTIONS(2782), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2348), 1, + STATE(2604), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138282,16 +140482,16 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81741] = 7, - ACTIONS(3227), 1, + [82595] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3259), 1, + ACTIONS(3321), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2520), 1, + STATE(2208), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138300,51 +140500,34 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81766] = 6, - ACTIONS(3213), 1, + [82620] = 6, + ACTIONS(3201), 1, aux_sym_string_token1, - STATE(681), 1, + STATE(460), 1, sym_string, - STATE(691), 1, - sym_string_directive, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3211), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [81789] = 6, - ACTIONS(3187), 1, - aux_sym_string_token1, - STATE(479), 1, + STATE(481), 1, sym_string_directive, - STATE(495), 1, - sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3185), 2, + ACTIONS(3199), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81812] = 7, - ACTIONS(2707), 1, - anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, - ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2464), 1, - sym_case_list, + [82643] = 7, + ACTIONS(3295), 1, + sym_id, + ACTIONS(3323), 1, + anon_sym_RPAREN, + STATE(1955), 1, + sym_formal_arg, + STATE(1959), 1, + aux_sym_formal_args_repeat1, + STATE(2659), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138352,69 +140535,52 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81837] = 7, - ACTIONS(2409), 1, + [82668] = 7, + ACTIONS(2568), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2567), 1, + STATE(2638), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [81862] = 7, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3217), 1, - anon_sym_LPAREN, - STATE(1991), 1, - sym_func_params, - STATE(1997), 1, - sym_begin_lambda, - STATE(2011), 1, - sym_capture_list, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [81887] = 6, - ACTIONS(3141), 1, - aux_sym_string_token1, - STATE(438), 1, - sym_string, - STATE(494), 1, - sym_string_directive, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [82693] = 7, + ACTIONS(2610), 1, + anon_sym_RBRACE, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2317), 1, + sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3139), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81910] = 7, - ACTIONS(2755), 1, + [82718] = 7, + ACTIONS(2426), 1, anon_sym_RBRACE, - ACTIONS(3221), 1, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - STATE(1902), 1, + STATE(1928), 1, aux_sym_case_list_repeat1, - STATE(2551), 1, + STATE(2236), 1, sym_case_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138423,33 +140589,34 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81935] = 6, - ACTIONS(3155), 1, - aux_sym_string_token1, - STATE(385), 1, - sym_string, - STATE(402), 1, - sym_string_directive, + [82743] = 7, + ACTIONS(3295), 1, + sym_id, + ACTIONS(3325), 1, + anon_sym_RPAREN, + STATE(1955), 1, + sym_formal_arg, + STATE(1959), 1, + aux_sym_formal_args_repeat1, + STATE(2256), 1, + sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3153), 2, - anon_sym_ATDIR, - anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81958] = 7, - ACTIONS(3227), 1, + [82768] = 7, + ACTIONS(3295), 1, sym_id, - ACTIONS(3261), 1, + ACTIONS(3327), 1, anon_sym_RPAREN, - STATE(1917), 1, + STATE(1955), 1, sym_formal_arg, - STATE(1940), 1, + STATE(1959), 1, aux_sym_formal_args_repeat1, - STATE(2742), 1, + STATE(2325), 1, sym_formal_args, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138458,51 +140625,43 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [81983] = 6, - ACTIONS(3193), 1, + [82793] = 6, + ACTIONS(3265), 1, aux_sym_string_token1, - STATE(390), 1, - sym_string, - STATE(393), 1, + STATE(537), 1, sym_string_directive, + STATE(553), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3191), 2, + ACTIONS(3263), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82006] = 6, - ACTIONS(3073), 1, + [82816] = 6, + ACTIONS(111), 1, aux_sym_string_token1, - STATE(4), 1, + STATE(832), 1, sym_string_directive, - STATE(290), 1, + STATE(1790), 1, sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3067), 2, + ACTIONS(99), 2, anon_sym_ATDIR, anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82029] = 7, - ACTIONS(2613), 1, - anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, - ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2770), 1, - sym_case_list, + [82839] = 4, + ACTIONS(3329), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138510,97 +140669,117 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82054] = 7, - ACTIONS(2453), 1, + ACTIONS(1516), 4, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3221), 1, - anon_sym_case, - ACTIONS(3223), 1, - anon_sym_default, - STATE(1902), 1, - aux_sym_case_list_repeat1, - STATE(2566), 1, - sym_case_list, + anon_sym_COMMA, + anon_sym_RBRACK, + [82858] = 6, + ACTIONS(3219), 1, + aux_sym_string_token1, + STATE(530), 1, + sym_string_directive, + STATE(610), 1, + sym_string, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3217), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82079] = 7, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3217), 1, - anon_sym_LPAREN, - STATE(1991), 1, - sym_func_params, - STATE(2010), 1, - sym_begin_lambda, - STATE(2011), 1, - sym_capture_list, + [82881] = 6, + ACTIONS(3207), 1, + aux_sym_string_token1, + STATE(404), 1, + sym_string, + STATE(430), 1, + sym_string_directive, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3205), 2, + anon_sym_ATDIR, + anon_sym_ATFILENAME, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82104] = 5, - ACTIONS(3263), 1, + [82904] = 7, + ACTIONS(2466), 1, anon_sym_RBRACE, - ACTIONS(3265), 1, + ACTIONS(3289), 1, + anon_sym_case, + ACTIONS(3291), 1, + anon_sym_default, + STATE(1928), 1, + aux_sym_case_list_repeat1, + STATE(2504), 1, + sym_case_list, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [82929] = 5, + ACTIONS(3331), 1, + anon_sym_RBRACE, + ACTIONS(3333), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, + STATE(1912), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82124] = 6, - ACTIONS(3267), 1, - anon_sym_copy, - ACTIONS(3269), 1, + [82949] = 5, + ACTIONS(3333), 1, sym_id, - STATE(1889), 1, - aux_sym_capture_list_repeat1, - STATE(1953), 1, - sym_capture, + ACTIONS(3335), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + STATE(1916), 2, + sym_type_spec, + aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82146] = 5, - ACTIONS(3265), 1, + [82969] = 5, + ACTIONS(3333), 1, sym_id, - ACTIONS(3271), 1, + ACTIONS(3337), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, + STATE(1925), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82166] = 6, - ACTIONS(3267), 1, - anon_sym_copy, - ACTIONS(3269), 1, + [82989] = 6, + ACTIONS(3339), 1, sym_id, - STATE(1884), 1, - aux_sym_capture_list_repeat1, - STATE(2060), 1, - sym_capture, + STATE(1922), 1, + aux_sym_enum_body_repeat1, + STATE(2055), 1, + sym_enum_body_elem, + STATE(2340), 1, + sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138608,45 +140787,44 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82188] = 5, - ACTIONS(3237), 1, + [83011] = 5, + ACTIONS(3299), 1, anon_sym_RBRACE, - ACTIONS(3265), 1, + ACTIONS(3333), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1893), 2, + STATE(1929), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82208] = 6, - ACTIONS(3273), 1, - anon_sym_enum, - ACTIONS(3275), 1, - anon_sym_record, - ACTIONS(3277), 1, - anon_sym_event, - ACTIONS(3279), 1, + [83031] = 5, + ACTIONS(3333), 1, sym_id, + ACTIONS(3341), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + STATE(1925), 2, + sym_type_spec, + aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82230] = 6, - ACTIONS(3281), 1, + [83051] = 6, + ACTIONS(3343), 1, anon_sym_copy, - ACTIONS(3284), 1, + ACTIONS(3346), 1, sym_id, - STATE(1889), 1, + STATE(1913), 1, aux_sym_capture_list_repeat1, - STATE(2684), 1, + STATE(2330), 1, sym_capture, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138655,15 +140833,15 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82252] = 6, - ACTIONS(3287), 1, + [83073] = 6, + ACTIONS(256), 1, anon_sym_RBRACE, - ACTIONS(3289), 1, - sym_id, - STATE(1890), 1, - aux_sym_enum_body_repeat1, - STATE(2506), 1, - sym_enum_body_elem, + ACTIONS(3349), 1, + anon_sym_case, + ACTIONS(3352), 1, + anon_sym_default, + STATE(1914), 1, + aux_sym_case_list_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138671,14 +140849,14 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82274] = 6, - ACTIONS(3292), 1, + [83095] = 6, + ACTIONS(3339), 1, sym_id, - STATE(1909), 1, + STATE(1922), 1, aux_sym_enum_body_repeat1, - STATE(2099), 1, + STATE(2055), 1, sym_enum_body_elem, - STATE(2760), 1, + STATE(2384), 1, sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138687,44 +140865,60 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82296] = 5, - ACTIONS(3294), 1, - anon_sym_RBRACE, - ACTIONS(3296), 1, + [83117] = 5, + ACTIONS(3333), 1, sym_id, + ACTIONS(3355), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, + STATE(1925), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82316] = 5, - ACTIONS(3265), 1, + [83137] = 6, + ACTIONS(3357), 1, + anon_sym_copy, + ACTIONS(3359), 1, sym_id, - ACTIONS(3299), 1, + STATE(1931), 1, + aux_sym_capture_list_repeat1, + STATE(1985), 1, + sym_capture, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [83159] = 5, + ACTIONS(3323), 1, anon_sym_RBRACE, + ACTIONS(3333), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, + STATE(1924), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82336] = 6, - ACTIONS(3292), 1, + [83179] = 6, + ACTIONS(3339), 1, sym_id, - STATE(1909), 1, + STATE(1922), 1, aux_sym_enum_body_repeat1, - STATE(2099), 1, + STATE(2055), 1, sym_enum_body_elem, - STATE(2239), 1, + STATE(2219), 1, sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138733,9 +140927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82358] = 4, - ACTIONS(3301), 1, - anon_sym_SLASH, + [83201] = 6, + ACTIONS(3361), 1, + anon_sym_enum, + ACTIONS(3363), 1, + anon_sym_record, + ACTIONS(3365), 1, + anon_sym_event, + ACTIONS(3367), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138743,18 +140943,14 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(1414), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_AMPdeprecated, - [82376] = 6, - ACTIONS(3292), 1, + [83223] = 6, + ACTIONS(3339), 1, sym_id, - STATE(1909), 1, + STATE(1922), 1, aux_sym_enum_body_repeat1, - STATE(2099), 1, + STATE(2055), 1, sym_enum_body_elem, - STATE(2181), 1, + STATE(2657), 1, sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138763,60 +140959,75 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82398] = 5, - ACTIONS(3265), 1, + [83245] = 6, + ACTIONS(3339), 1, sym_id, - ACTIONS(3303), 1, + ACTIONS(3369), 1, anon_sym_RBRACE, + STATE(1933), 1, + aux_sym_enum_body_repeat1, + STATE(2184), 1, + sym_enum_body_elem, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1885), 2, - sym_type_spec, - aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82418] = 5, - ACTIONS(3251), 1, + [83267] = 5, + ACTIONS(3311), 1, anon_sym_AMPdeprecated, - STATE(2061), 1, + STATE(2002), 1, sym_deprecated, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3305), 2, + ACTIONS(3371), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82438] = 6, - ACTIONS(3292), 1, + [83287] = 5, + ACTIONS(3333), 1, sym_id, - STATE(1909), 1, - aux_sym_enum_body_repeat1, - STATE(2099), 1, - sym_enum_body_elem, - STATE(2747), 1, - sym_enum_body, + ACTIONS(3373), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + STATE(1925), 2, + sym_type_spec, + aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82460] = 6, - ACTIONS(3277), 1, + [83307] = 5, + ACTIONS(3375), 1, + anon_sym_RBRACE, + ACTIONS(3377), 1, + sym_id, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + STATE(1925), 2, + sym_type_spec, + aux_sym_redef_record_decl_repeat1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [83327] = 6, + ACTIONS(3365), 1, anon_sym_event, - ACTIONS(3307), 1, + ACTIONS(3380), 1, anon_sym_enum, - ACTIONS(3309), 1, + ACTIONS(3382), 1, anon_sym_record, - ACTIONS(3311), 1, + ACTIONS(3384), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138825,29 +141036,29 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82482] = 5, - ACTIONS(3235), 1, + [83349] = 5, + ACTIONS(3317), 1, anon_sym_RBRACE, - ACTIONS(3265), 1, + ACTIONS(3333), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1883), 2, + STATE(1909), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82502] = 6, - ACTIONS(3221), 1, + [83369] = 6, + ACTIONS(3289), 1, anon_sym_case, - ACTIONS(3223), 1, + ACTIONS(3291), 1, anon_sym_default, - ACTIONS(3313), 1, + ACTIONS(3386), 1, anon_sym_RBRACE, - STATE(1904), 1, + STATE(1914), 1, aux_sym_case_list_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138856,30 +141067,24 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82524] = 5, - ACTIONS(3261), 1, - anon_sym_RBRACE, - ACTIONS(3265), 1, + [83391] = 5, + ACTIONS(3333), 1, sym_id, + ACTIONS(3388), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1906), 2, + STATE(1925), 2, sym_type_spec, aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82544] = 6, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3315), 1, - anon_sym_case, - ACTIONS(3318), 1, - anon_sym_default, - STATE(1904), 1, - aux_sym_case_list_repeat1, + [83411] = 4, + ACTIONS(3390), 1, + anon_sym_SLASH, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138887,45 +141092,51 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82566] = 5, - ACTIONS(3265), 1, - sym_id, - ACTIONS(3321), 1, + ACTIONS(1456), 3, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_AMPdeprecated, + [83429] = 6, + ACTIONS(3357), 1, + anon_sym_copy, + ACTIONS(3359), 1, + sym_id, + STATE(1913), 1, + aux_sym_capture_list_repeat1, + STATE(2005), 1, + sym_capture, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, - sym_type_spec, - aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82586] = 5, - ACTIONS(3265), 1, + [83451] = 6, + ACTIONS(3339), 1, sym_id, - ACTIONS(3323), 1, - anon_sym_RBRACE, + STATE(1922), 1, + aux_sym_enum_body_repeat1, + STATE(2055), 1, + sym_enum_body_elem, + STATE(2477), 1, + sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1892), 2, - sym_type_spec, - aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82606] = 6, - ACTIONS(3292), 1, + [83473] = 6, + ACTIONS(3392), 1, + anon_sym_RBRACE, + ACTIONS(3394), 1, sym_id, - STATE(1909), 1, + STATE(1933), 1, aux_sym_enum_body_repeat1, - STATE(2099), 1, + STATE(2764), 1, sym_enum_body_elem, - STATE(2639), 1, - sym_enum_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138933,30 +141144,38 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82628] = 5, - ACTIONS(3265), 1, - sym_id, - ACTIONS(3325), 1, + [83495] = 4, + ACTIONS(3399), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3397), 2, anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [83512] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - STATE(1905), 2, - sym_type_spec, - aux_sym_redef_record_decl_repeat1, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82648] = 6, - ACTIONS(3292), 1, - sym_id, - ACTIONS(3327), 1, + ACTIONS(3401), 3, anon_sym_RBRACE, - STATE(1890), 1, - aux_sym_enum_body_repeat1, - STATE(1976), 1, - sym_enum_body_elem, + anon_sym_case, + anon_sym_default, + [83527] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3403), 1, + anon_sym_LPAREN, + STATE(2678), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -138964,12 +141183,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82670] = 5, - ACTIONS(3159), 1, + [83546] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3329), 1, + ACTIONS(3405), 1, anon_sym_LPAREN, - STATE(2691), 1, + STATE(2679), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138978,12 +141197,24 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82689] = 5, - ACTIONS(3159), 1, + [83565] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + ACTIONS(208), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + [83580] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3331), 1, + ACTIONS(3407), 1, anon_sym_LPAREN, - STATE(2503), 1, + STATE(2693), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -138992,12 +141223,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82708] = 5, - ACTIONS(3159), 1, + [83599] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3333), 1, + ACTIONS(3409), 1, anon_sym_LPAREN, - STATE(2515), 1, + STATE(2694), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139006,7 +141237,13 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82727] = 3, + [83618] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3411), 1, + anon_sym_LPAREN, + STATE(2705), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139014,16 +141251,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3335), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COMMA, - [82742] = 5, - ACTIONS(3159), 1, + [83637] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3337), 1, + ACTIONS(3413), 1, anon_sym_LPAREN, - STATE(2330), 1, + STATE(2706), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139032,7 +141265,13 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82761] = 3, + [83656] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3415), 1, + anon_sym_LPAREN, + STATE(2717), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139040,16 +141279,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(251), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [82776] = 5, - ACTIONS(3159), 1, + [83675] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3339), 1, + ACTIONS(3417), 1, anon_sym_LPAREN, - STATE(2233), 1, + STATE(2718), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139058,33 +141293,41 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82795] = 4, - ACTIONS(3343), 1, - anon_sym_RPAREN, + [83694] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3419), 1, + anon_sym_LPAREN, + STATE(2729), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3341), 2, - anon_sym_SEMI, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82812] = 4, - ACTIONS(3347), 1, - anon_sym_EQ, + [83713] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3421), 1, + anon_sym_LPAREN, + STATE(2730), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3345), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82829] = 3, + [83732] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3423), 1, + anon_sym_LPAREN, + STATE(2740), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139092,17 +141335,13 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - ACTIONS(3349), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - [82844] = 5, - ACTIONS(3351), 1, - sym_id, - STATE(1920), 1, - aux_sym_formal_args_repeat1, - STATE(2092), 1, - sym_formal_arg, + [83751] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3425), 1, + anon_sym_LPAREN, + STATE(2741), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139110,25 +141349,40 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82863] = 4, - ACTIONS(3354), 1, - anon_sym_of, + [83770] = 5, + ACTIONS(3223), 1, + anon_sym_LBRACK, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(2751), 1, + sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(480), 2, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [83789] = 5, + ACTIONS(3429), 1, + anon_sym_COLON, + ACTIONS(3431), 1, anon_sym_COMMA, + ACTIONS(3433), 1, anon_sym_as, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82880] = 5, - ACTIONS(3159), 1, + [83808] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3356), 1, + ACTIONS(3435), 1, anon_sym_LPAREN, - STATE(2629), 1, + STATE(2762), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139137,12 +141391,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82899] = 5, - ACTIONS(3159), 1, + [83827] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3358), 1, + ACTIONS(3437), 1, anon_sym_LPAREN, - STATE(2630), 1, + STATE(2763), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139151,12 +141405,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82918] = 5, - ACTIONS(3159), 1, + [83846] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3360), 1, + ACTIONS(3439), 1, anon_sym_LPAREN, - STATE(2644), 1, + STATE(2773), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139165,12 +141419,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82937] = 5, - ACTIONS(3159), 1, + [83865] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3362), 1, + ACTIONS(3441), 1, anon_sym_LPAREN, - STATE(2645), 1, + STATE(2774), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139179,12 +141433,25 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82956] = 5, - ACTIONS(3364), 1, - anon_sym_COLON, - ACTIONS(3366), 1, + [83884] = 4, + ACTIONS(3445), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3443), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [83901] = 5, + ACTIONS(3431), 1, anon_sym_COMMA, - ACTIONS(3368), 1, + ACTIONS(3447), 1, + anon_sym_COLON, + ACTIONS(3449), 1, anon_sym_as, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139193,12 +141460,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82975] = 5, - ACTIONS(3159), 1, + [83920] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3370), 1, + ACTIONS(3451), 1, anon_sym_LPAREN, - STATE(2657), 1, + STATE(2551), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139207,13 +141474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [82994] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3372), 1, - anon_sym_LPAREN, - STATE(2668), 1, - sym_capture_list, + [83939] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139221,13 +141482,17 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83013] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3374), 1, - anon_sym_LPAREN, - STATE(2669), 1, - sym_capture_list, + ACTIONS(3453), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + [83954] = 5, + ACTIONS(3295), 1, + sym_id, + STATE(1962), 1, + sym_formal_arg, + STATE(1963), 1, + aux_sym_formal_args_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139235,41 +141500,52 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83032] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3376), 1, - anon_sym_LPAREN, - STATE(2680), 1, - sym_capture_list, + [83973] = 4, + ACTIONS(3455), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(1510), 2, + anon_sym_COMMA, + anon_sym_as, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83051] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3378), 1, - anon_sym_LPAREN, - STATE(2681), 1, - sym_capture_list, + [83990] = 4, + ACTIONS(3457), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(1516), 2, + anon_sym_COMMA, + anon_sym_as, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83070] = 5, - ACTIONS(3366), 1, + [84007] = 4, + ACTIONS(3459), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3443), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(3380), 1, - anon_sym_COLON, - ACTIONS(3382), 1, - anon_sym_as, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84024] = 5, + ACTIONS(3461), 1, + sym_id, + STATE(1963), 1, + aux_sym_formal_args_repeat1, + STATE(2053), 1, + sym_formal_arg, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139277,12 +141553,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83089] = 5, - ACTIONS(3159), 1, + [84043] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3384), 1, + ACTIONS(3464), 1, anon_sym_LPAREN, - STATE(2692), 1, + STATE(2563), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139291,12 +141567,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83108] = 5, - ACTIONS(3159), 1, + [84062] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3386), 1, + ACTIONS(3466), 1, anon_sym_LPAREN, - STATE(2702), 1, + STATE(2851), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139305,12 +141581,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83127] = 5, - ACTIONS(3159), 1, + [84081] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3388), 1, + ACTIONS(3468), 1, anon_sym_LPAREN, - STATE(2703), 1, + STATE(2244), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139319,12 +141595,25 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83146] = 5, - ACTIONS(3159), 1, + [84100] = 4, + ACTIONS(3470), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(572), 2, + anon_sym_COMMA, + anon_sym_as, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84117] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3390), 1, + ACTIONS(3472), 1, anon_sym_LPAREN, - STATE(2713), 1, + STATE(2887), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139333,12 +141622,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83165] = 5, - ACTIONS(3159), 1, + [84136] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3392), 1, + ACTIONS(3474), 1, anon_sym_LPAREN, - STATE(2714), 1, + STATE(2888), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139347,12 +141636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83184] = 5, - ACTIONS(3159), 1, + [84155] = 5, + ACTIONS(3223), 1, anon_sym_LBRACK, - ACTIONS(3394), 1, + ACTIONS(3476), 1, anon_sym_LPAREN, - STATE(2724), 1, + STATE(2752), 1, sym_capture_list, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139361,13 +141650,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83203] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, + [84174] = 4, + ACTIONS(3221), 1, anon_sym_LPAREN, - STATE(2725), 1, - sym_capture_list, + STATE(86), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139375,13 +141662,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83222] = 5, - ACTIONS(3227), 1, - sym_id, - STATE(1920), 1, - aux_sym_formal_args_repeat1, - STATE(1943), 1, - sym_formal_arg, + [84190] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3480), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139389,26 +141674,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83241] = 4, - ACTIONS(3398), 1, - anon_sym_COLON, + [84206] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1482), 2, + ACTIONS(3482), 2, anon_sym_COMMA, - anon_sym_as, + anon_sym_RBRACK, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83258] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3400), 1, + [84220] = 4, + ACTIONS(3484), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_capture_list, + STATE(369), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139416,53 +141697,45 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83277] = 4, - ACTIONS(3402), 1, - anon_sym_RPAREN, + [84236] = 4, + ACTIONS(3486), 1, + sym_id, + STATE(2215), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3341), 2, - anon_sym_SEMI, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83294] = 4, - ACTIONS(3404), 1, - anon_sym_COLON, + [84252] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(1472), 2, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3488), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83311] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_LPAREN, - STATE(2837), 1, - sym_capture_list, + [84266] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3490), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83330] = 5, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3408), 1, - anon_sym_LPAREN, - STATE(2656), 1, - sym_capture_list, + [84280] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2593), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139470,10 +141743,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83349] = 4, - ACTIONS(3323), 1, - anon_sym_RBRACE, - ACTIONS(3410), 1, + [84296] = 4, + ACTIONS(3494), 1, + anon_sym_COLON, + ACTIONS(3496), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139482,22 +141755,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83365] = 3, + [84312] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3498), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3412), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83379] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2314), 1, - sym_event_hdr, + [84328] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3500), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139505,33 +141779,32 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83395] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2557), 1, - sym_event_hdr, + [84344] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3502), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83411] = 3, + [84358] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3416), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, + ACTIONS(3504), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83425] = 4, - ACTIONS(3414), 1, + [84372] = 4, + ACTIONS(3492), 1, sym_id, - STATE(2581), 1, + STATE(2483), 1, sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139540,10 +141813,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83441] = 4, - ACTIONS(3418), 1, + [84388] = 4, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3420), 1, + ACTIONS(3508), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139552,11 +141825,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83457] = 4, - ACTIONS(3422), 1, - anon_sym_LPAREN, - STATE(1233), 1, - sym_func_params, + [84404] = 4, + ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(3510), 1, + anon_sym_as, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139564,11 +141837,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83473] = 4, - ACTIONS(3424), 1, - sym_id, - STATE(2055), 1, - aux_sym_stmt_repeat1, + [84420] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3512), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139576,11 +141849,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83489] = 4, - ACTIONS(3422), 1, - anon_sym_LPAREN, - STATE(1234), 1, - sym_func_params, + [84436] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3514), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139588,22 +141861,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83505] = 3, + [84452] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3516), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3426), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83519] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2754), 1, - sym_event_hdr, + [84468] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3520), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139611,11 +141885,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83535] = 4, - ACTIONS(3299), 1, - anon_sym_RBRACK, - ACTIONS(3410), 1, - anon_sym_COMMA, + [84484] = 4, + ACTIONS(3522), 1, + sym_id, + STATE(2049), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139623,34 +141897,32 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83551] = 4, - ACTIONS(3428), 1, - anon_sym_type, - STATE(1960), 1, - aux_sym_case_type_list_repeat1, + [84500] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3524), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83567] = 4, - ACTIONS(3299), 1, - anon_sym_RBRACE, - ACTIONS(3410), 1, - anon_sym_COMMA, + [84514] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3526), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83583] = 4, - ACTIONS(3431), 1, + [84528] = 4, + ACTIONS(3492), 1, sym_id, - STATE(2557), 1, + STATE(2654), 1, sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139659,11 +141931,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83599] = 4, - ACTIONS(3433), 1, + [84544] = 4, + ACTIONS(3528), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_func_params, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84560] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3435), 1, - anon_sym_in, + ACTIONS(3530), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139671,44 +141955,45 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83615] = 3, + [84576] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3532), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3437), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83629] = 3, + [84592] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3439), 2, + ACTIONS(3534), 2, anon_sym_PLUS_EQ, anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83643] = 3, + [84606] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3441), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, + ACTIONS(3536), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83657] = 4, - ACTIONS(480), 1, - anon_sym_EQ, - ACTIONS(3443), 1, - anon_sym_of, + [84620] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2808), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139716,35 +142001,44 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83673] = 4, - ACTIONS(3410), 1, + [84636] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3538), 2, anon_sym_COMMA, - ACTIONS(3445), 1, anon_sym_RBRACK, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84650] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3540), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83689] = 4, - ACTIONS(3447), 1, - anon_sym_COMMA, - ACTIONS(3449), 1, - anon_sym_in, + [84664] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3542), 2, + anon_sym_copy, + sym_id, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83705] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_RBRACK, + [84678] = 4, + ACTIONS(3544), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139752,10 +142046,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83721] = 4, - ACTIONS(3410), 1, + [84694] = 4, + ACTIONS(3506), 1, anon_sym_COMMA, - ACTIONS(3453), 1, + ACTIONS(3546), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139764,102 +142058,146 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83737] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3451), 1, - anon_sym_RBRACE, + [84710] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3548), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83753] = 3, + [84724] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(2295), 2, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3550), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83767] = 3, + [84738] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2469), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3455), 2, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84754] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3552), 2, anon_sym_RBRACE, anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83781] = 3, + [84768] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3287), 2, + ACTIONS(3554), 2, anon_sym_RBRACE, sym_id, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83795] = 4, - ACTIONS(3457), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, - anon_sym_COMMA, + [84782] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3556), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83811] = 3, + [84796] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3461), 2, - anon_sym_RBRACE, - sym_id, + ACTIONS(3558), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83825] = 3, + [84810] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3560), 2, + anon_sym_push, + anon_sym_pop, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84824] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2207), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3463), 2, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84840] = 4, + ACTIONS(3144), 1, anon_sym_LBRACE, + STATE(1271), 1, + sym_func_body, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [84856] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3562), 2, + anon_sym_PLUS_EQ, anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83839] = 4, - ACTIONS(3465), 1, - anon_sym_COMMA, - ACTIONS(3467), 1, - anon_sym_in, + [84870] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3564), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83855] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3469), 1, - anon_sym_RBRACK, + [84884] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2335), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139867,11 +142205,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83871] = 4, - ACTIONS(3471), 1, - anon_sym_COMMA, - ACTIONS(3473), 1, - anon_sym_in, + [84900] = 4, + ACTIONS(3544), 1, + anon_sym_LPAREN, + STATE(1251), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139879,34 +142217,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83887] = 3, + [84916] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3475), 2, + ACTIONS(3566), 2, anon_sym_PLUS_EQ, anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83901] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3477), 1, - anon_sym_RBRACK, + [84930] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3568), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83917] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3479), 1, - anon_sym_RBRACK, + [84944] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2592), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139914,11 +142251,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83933] = 4, - ACTIONS(3410), 1, + [84960] = 4, + ACTIONS(3496), 1, anon_sym_COMMA, - ACTIONS(3481), 1, - anon_sym_RBRACK, + ACTIONS(3570), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -139926,22 +142263,43 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83949] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3481), 1, - anon_sym_RBRACE, + [84976] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3572), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83965] = 4, - ACTIONS(3414), 1, + [84990] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3574), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85004] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3576), 2, + anon_sym_push, + anon_sym_pop, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85018] = 4, + ACTIONS(3492), 1, sym_id, - STATE(2392), 1, + STATE(2819), 1, sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139950,10 +142308,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83981] = 4, - ACTIONS(3422), 1, + [85034] = 4, + ACTIONS(3578), 1, anon_sym_LPAREN, - STATE(1231), 1, + STATE(1251), 1, sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139962,22 +142320,32 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [83997] = 4, - ACTIONS(3157), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_func_params, + [85050] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3580), 2, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85064] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(2348), 2, + anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84013] = 4, - ACTIONS(3483), 1, + [85078] = 4, + ACTIONS(3582), 1, anon_sym_LPAREN, - STATE(1272), 1, + STATE(369), 1, sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -139986,34 +142354,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84029] = 3, + [85094] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3485), 2, - anon_sym_LBRACE, + ACTIONS(3584), 2, + anon_sym_PLUS_EQ, anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84043] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3487), 1, - anon_sym_RBRACK, + [85108] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3586), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84059] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3489), 1, - anon_sym_RBRACK, + [85122] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2499), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140021,11 +142388,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84075] = 4, - ACTIONS(3410), 1, + [85138] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3491), 1, - anon_sym_RBRACK, + ACTIONS(3516), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140033,59 +142400,55 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84091] = 4, - ACTIONS(3493), 1, - anon_sym_COMMA, - ACTIONS(3495), 1, - anon_sym_in, + [85154] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3588), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84107] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3497), 1, - anon_sym_RBRACK, + [85168] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3590), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84123] = 4, - ACTIONS(3079), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_func_body, + [85182] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3592), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84139] = 4, - ACTIONS(3499), 1, - anon_sym_COMMA, - ACTIONS(3501), 1, - anon_sym_in, + [85196] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3594), 2, + anon_sym_push, + anon_sym_pop, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84155] = 4, - ACTIONS(1472), 1, - anon_sym_EQ, - ACTIONS(3503), 1, - anon_sym_COLON, + [85210] = 4, + ACTIONS(3596), 1, + anon_sym_LBRACK, + ACTIONS(3598), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140093,10 +142456,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84171] = 4, - ACTIONS(3505), 1, + [85226] = 4, + ACTIONS(3600), 1, anon_sym_COMMA, - ACTIONS(3507), 1, + ACTIONS(3602), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140105,23 +142468,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84187] = 4, - ACTIONS(3509), 1, - anon_sym_COMMA, - ACTIONS(3511), 1, - anon_sym_in, + [85242] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3604), 2, + anon_sym_SEMI, + anon_sym_RBRACE, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84203] = 4, - ACTIONS(3513), 1, - anon_sym_COMMA, - ACTIONS(3515), 1, - anon_sym_in, + [85256] = 4, + ACTIONS(3606), 1, + anon_sym_type, + STATE(2113), 1, + aux_sym_case_type_list_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140129,10 +142491,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84219] = 4, - ACTIONS(3517), 1, + [85272] = 4, + ACTIONS(3608), 1, anon_sym_COMMA, - ACTIONS(3519), 1, + ACTIONS(3610), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140141,11 +142503,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84235] = 4, - ACTIONS(3521), 1, + [85288] = 4, + ACTIONS(3544), 1, + anon_sym_LPAREN, + STATE(1250), 1, + sym_func_params, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85304] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3523), 1, - anon_sym_in, + ACTIONS(3612), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140153,10 +142527,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84251] = 4, - ACTIONS(3525), 1, + [85320] = 4, + ACTIONS(3614), 1, anon_sym_COMMA, - ACTIONS(3527), 1, + ACTIONS(3616), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140165,11 +142539,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84267] = 4, - ACTIONS(3529), 1, + [85336] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3531), 1, - anon_sym_in, + ACTIONS(3618), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140177,11 +142551,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84283] = 4, - ACTIONS(3079), 1, - anon_sym_LBRACE, - STATE(1259), 1, - sym_func_body, + [85352] = 4, + ACTIONS(3620), 1, + sym_id, + STATE(2049), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140189,11 +142563,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84299] = 4, - ACTIONS(3422), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_func_params, + [85368] = 4, + ACTIONS(3623), 1, + anon_sym_COMMA, + ACTIONS(3625), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140201,10 +142575,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84315] = 4, - ACTIONS(3410), 1, + [85384] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3533), 1, + ACTIONS(3627), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140213,35 +142587,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84331] = 4, - ACTIONS(3535), 1, - anon_sym_LBRACE, - STATE(352), 1, - sym_func_body, + [85400] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3629), 2, + anon_sym_RBRACE, + sym_id, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84347] = 4, - ACTIONS(3217), 1, - anon_sym_LPAREN, - STATE(1978), 1, - sym_func_params, + [85414] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3443), 2, + anon_sym_SEMI, + anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84363] = 4, - ACTIONS(3537), 1, - anon_sym_COMMA, - ACTIONS(3539), 1, - anon_sym_in, + [85428] = 4, + ACTIONS(1516), 1, + anon_sym_EQ, + ACTIONS(3631), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140249,11 +142621,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84379] = 4, - ACTIONS(3541), 1, + [85444] = 4, + ACTIONS(3369), 1, + anon_sym_RBRACE, + ACTIONS(3633), 1, anon_sym_COMMA, - ACTIONS(3543), 1, - anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140261,22 +142633,35 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84395] = 3, + [85460] = 4, + ACTIONS(3635), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3545), 2, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85476] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, + ACTIONS(3637), 1, anon_sym_RBRACK, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84409] = 4, - ACTIONS(3547), 1, + [85492] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3549), 1, - anon_sym_in, + ACTIONS(3639), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140284,11 +142669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84425] = 4, - ACTIONS(3551), 1, + [85508] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3553), 1, - anon_sym_in, + ACTIONS(3641), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140296,22 +142681,21 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84441] = 4, - ACTIONS(3555), 1, - anon_sym_COMMA, - ACTIONS(3557), 1, - anon_sym_in, + [85524] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3643), 2, + anon_sym_PLUS_EQ, + anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84457] = 4, - ACTIONS(3559), 1, + [85538] = 4, + ACTIONS(3645), 1, anon_sym_COMMA, - ACTIONS(3561), 1, + ACTIONS(3647), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140320,11 +142704,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84473] = 4, - ACTIONS(3563), 1, + [85554] = 3, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3649), 2, + anon_sym_push, + anon_sym_pop, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85568] = 4, + ACTIONS(3388), 1, + anon_sym_RBRACK, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3565), 1, - anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140332,10 +142727,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84489] = 4, - ACTIONS(3567), 1, + [85584] = 4, + ACTIONS(3651), 1, anon_sym_COMMA, - ACTIONS(3569), 1, + ACTIONS(3653), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140344,10 +142739,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84505] = 4, - ACTIONS(3571), 1, + [85600] = 4, + ACTIONS(3655), 1, anon_sym_COMMA, - ACTIONS(3573), 1, + ACTIONS(3657), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140356,11 +142751,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84521] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2583), 1, - sym_event_hdr, + [85616] = 4, + ACTIONS(3388), 1, + anon_sym_RBRACE, + ACTIONS(3478), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140368,21 +142763,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84537] = 3, + [85632] = 4, + ACTIONS(3544), 1, + anon_sym_LPAREN, + STATE(1253), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3575), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84551] = 4, - ACTIONS(3577), 1, + [85648] = 4, + ACTIONS(3659), 1, anon_sym_COMMA, - ACTIONS(3579), 1, + ACTIONS(3661), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140391,10 +142787,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84567] = 4, - ACTIONS(3581), 1, + [85664] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2215), 1, + sym_event_hdr, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85680] = 4, + ACTIONS(3663), 1, anon_sym_COMMA, - ACTIONS(3583), 1, + ACTIONS(3665), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140403,10 +142811,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84583] = 4, - ACTIONS(3585), 1, + [85696] = 4, + ACTIONS(3667), 1, anon_sym_COMMA, - ACTIONS(3587), 1, + ACTIONS(3669), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140415,10 +142823,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84599] = 4, - ACTIONS(3414), 1, + [85712] = 4, + ACTIONS(572), 1, + anon_sym_EQ, + ACTIONS(3671), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85728] = 4, + ACTIONS(3492), 1, sym_id, - STATE(2347), 1, + STATE(2839), 1, sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140427,10 +142847,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84615] = 4, - ACTIONS(3589), 1, + [85744] = 4, + ACTIONS(3673), 1, anon_sym_COMMA, - ACTIONS(3591), 1, + ACTIONS(3675), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140439,10 +142859,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84631] = 4, - ACTIONS(3593), 1, + [85760] = 4, + ACTIONS(3677), 1, anon_sym_COMMA, - ACTIONS(3595), 1, + ACTIONS(3679), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140451,10 +142871,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84647] = 4, - ACTIONS(3597), 1, + [85776] = 4, + ACTIONS(3681), 1, anon_sym_COMMA, - ACTIONS(3599), 1, + ACTIONS(3683), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140463,10 +142883,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84663] = 4, - ACTIONS(3601), 1, + [85792] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3603), 1, + ACTIONS(3685), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85808] = 4, + ACTIONS(3687), 1, + anon_sym_COMMA, + ACTIONS(3689), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140475,10 +142907,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84679] = 4, - ACTIONS(3605), 1, + [85824] = 4, + ACTIONS(3691), 1, anon_sym_COMMA, - ACTIONS(3607), 1, + ACTIONS(3693), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140487,10 +142919,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84695] = 4, - ACTIONS(3609), 1, + [85840] = 4, + ACTIONS(3695), 1, anon_sym_COMMA, - ACTIONS(3611), 1, + ACTIONS(3697), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140499,11 +142931,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84711] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2679), 1, - sym_event_hdr, + [85856] = 4, + ACTIONS(3699), 1, + anon_sym_COMMA, + ACTIONS(3701), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [85872] = 4, + ACTIONS(3703), 1, + anon_sym_COMMA, + ACTIONS(3705), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140511,10 +142955,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84727] = 4, - ACTIONS(3613), 1, + [85888] = 4, + ACTIONS(3707), 1, anon_sym_COMMA, - ACTIONS(3615), 1, + ACTIONS(3709), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140523,10 +142967,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84743] = 4, - ACTIONS(3617), 1, + [85904] = 4, + ACTIONS(3711), 1, anon_sym_COMMA, - ACTIONS(3619), 1, + ACTIONS(3713), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140535,10 +142979,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84759] = 4, - ACTIONS(3621), 1, + [85920] = 4, + ACTIONS(3715), 1, anon_sym_COMMA, - ACTIONS(3623), 1, + ACTIONS(3717), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140547,11 +142991,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84775] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2504), 1, - sym_event_hdr, + [85936] = 4, + ACTIONS(3719), 1, + anon_sym_COMMA, + ACTIONS(3721), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140559,11 +143003,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84791] = 4, - ACTIONS(3625), 1, - anon_sym_LBRACK, - ACTIONS(3627), 1, - sym_id, + [85952] = 4, + ACTIONS(1510), 1, + anon_sym_EQ, + ACTIONS(3723), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140571,11 +143015,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84807] = 4, - ACTIONS(3629), 1, - anon_sym_LPAREN, - STATE(336), 1, - sym_func_params, + [85968] = 4, + ACTIONS(3725), 1, + anon_sym_COMMA, + ACTIONS(3727), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140583,11 +143027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84823] = 4, - ACTIONS(3410), 1, + [85984] = 4, + ACTIONS(3729), 1, anon_sym_COMMA, - ACTIONS(3631), 1, - anon_sym_RBRACK, + ACTIONS(3731), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140595,10 +143039,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84839] = 4, - ACTIONS(3422), 1, + [86000] = 4, + ACTIONS(3221), 1, anon_sym_LPAREN, - STATE(1232), 1, + STATE(2029), 1, sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140607,10 +143051,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84855] = 4, - ACTIONS(3633), 1, + [86016] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3635), 1, + ACTIONS(3733), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140619,22 +143063,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84871] = 3, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3637), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [84885] = 4, - ACTIONS(3633), 1, + [86032] = 4, + ACTIONS(3735), 1, anon_sym_COMMA, - ACTIONS(3639), 1, - anon_sym_RBRACK, + ACTIONS(3737), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140642,11 +143075,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84901] = 4, - ACTIONS(3410), 1, + [86048] = 4, + ACTIONS(3739), 1, anon_sym_COMMA, - ACTIONS(3641), 1, - anon_sym_RBRACK, + ACTIONS(3741), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140654,11 +143087,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84917] = 4, - ACTIONS(3410), 1, + [86064] = 4, + ACTIONS(3743), 1, anon_sym_COMMA, - ACTIONS(3643), 1, - anon_sym_RBRACK, + ACTIONS(3745), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140666,11 +143099,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84933] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3645), 1, - anon_sym_RBRACK, + [86080] = 4, + ACTIONS(3747), 1, + anon_sym_LBRACE, + STATE(339), 1, + sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140678,10 +143111,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84949] = 4, - ACTIONS(3647), 1, + [86096] = 4, + ACTIONS(3544), 1, anon_sym_LPAREN, - STATE(46), 1, + STATE(1252), 1, sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140690,11 +143123,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84965] = 4, - ACTIONS(3410), 1, + [86112] = 4, + ACTIONS(3749), 1, anon_sym_COMMA, - ACTIONS(3649), 1, - anon_sym_RBRACK, + ACTIONS(3751), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140702,11 +143135,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84981] = 4, - ACTIONS(3651), 1, - anon_sym_COLON, - ACTIONS(3653), 1, + [86128] = 4, + ACTIONS(3753), 1, anon_sym_COMMA, + ACTIONS(3755), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140714,11 +143147,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [84997] = 4, - ACTIONS(3366), 1, + [86144] = 4, + ACTIONS(3757), 1, anon_sym_COMMA, - ACTIONS(3655), 1, - anon_sym_as, + ACTIONS(3759), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140726,11 +143159,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85013] = 4, - ACTIONS(3657), 1, - anon_sym_type, - STATE(1960), 1, - aux_sym_case_type_list_repeat1, + [86160] = 4, + ACTIONS(3761), 1, + anon_sym_COMMA, + ACTIONS(3763), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140738,11 +143171,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85029] = 4, - ACTIONS(3633), 1, + [86176] = 4, + ACTIONS(3765), 1, anon_sym_COMMA, - ACTIONS(3659), 1, - anon_sym_RBRACK, + ACTIONS(3767), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140750,11 +143183,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85045] = 4, - ACTIONS(3661), 1, - sym_id, - STATE(2072), 1, - aux_sym_stmt_repeat1, + [86192] = 4, + ACTIONS(3769), 1, + anon_sym_COMMA, + ACTIONS(3771), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140762,11 +143195,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85061] = 4, - ACTIONS(3535), 1, - anon_sym_LBRACE, - STATE(367), 1, - sym_func_body, + [86208] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3685), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140774,11 +143207,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85077] = 4, - ACTIONS(3663), 1, - anon_sym_LPAREN, - STATE(1233), 1, - sym_func_params, + [86224] = 4, + ACTIONS(3773), 1, + anon_sym_LBRACK, + ACTIONS(3775), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140786,32 +143219,21 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85093] = 3, + [86240] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3665), 2, - anon_sym_PLUS_EQ, + ACTIONS(3777), 2, + anon_sym_LBRACE, anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85107] = 3, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3667), 2, - anon_sym_copy, - sym_id, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [85121] = 4, - ACTIONS(3418), 1, + [86254] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3669), 1, + ACTIONS(3779), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140820,43 +143242,34 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85137] = 3, + [86270] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2474), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3671), 2, - anon_sym_RBRACE, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85151] = 3, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3673), 2, - anon_sym_RBRACE, + [86286] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [85165] = 3, + ACTIONS(3781), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3675), 2, - anon_sym_RBRACE, - sym_id, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85179] = 4, - ACTIONS(3410), 1, + [86302] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3677), 1, + ACTIONS(3783), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140865,10 +143278,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85195] = 4, - ACTIONS(3410), 1, + [86318] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3679), 1, + ACTIONS(3785), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140877,11 +143290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85211] = 4, - ACTIONS(3681), 1, - anon_sym_COMMA, - ACTIONS(3683), 1, - anon_sym_in, + [86334] = 4, + ACTIONS(3787), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140889,11 +143302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85227] = 4, - ACTIONS(3685), 1, - anon_sym_LBRACK, - ACTIONS(3687), 1, - sym_id, + [86350] = 4, + ACTIONS(3144), 1, + anon_sym_LBRACE, + STATE(1267), 1, + sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140901,11 +143314,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85243] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3689), 1, - anon_sym_RBRACK, + [86366] = 4, + ACTIONS(3789), 1, + anon_sym_type, + STATE(2113), 1, + aux_sym_case_type_list_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140913,11 +143326,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85259] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_RBRACK, + [86382] = 4, + ACTIONS(3233), 1, + anon_sym_LPAREN, + STATE(2029), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140925,11 +143338,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85275] = 4, - ACTIONS(3653), 1, + [86398] = 4, + ACTIONS(3792), 1, anon_sym_COMMA, - ACTIONS(3693), 1, - anon_sym_COLON, + ACTIONS(3794), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140937,11 +143350,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85291] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3695), 1, - anon_sym_RBRACK, + [86414] = 4, + ACTIONS(3747), 1, + anon_sym_LBRACE, + STATE(350), 1, + sym_func_body, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140949,10 +143362,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85307] = 4, - ACTIONS(3697), 1, + [86430] = 4, + ACTIONS(3796), 1, sym_id, - STATE(2072), 1, + STATE(1991), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140961,11 +143374,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85323] = 4, - ACTIONS(3700), 1, - anon_sym_LBRACK, - ACTIONS(3702), 1, - sym_id, + [86446] = 4, + ACTIONS(3233), 1, + anon_sym_LPAREN, + STATE(1289), 1, + sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -140973,21 +143386,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85339] = 3, + [86462] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3798), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3704), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85353] = 4, - ACTIONS(3633), 1, + [86478] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3706), 1, + ACTIONS(3800), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -140996,11 +143410,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85369] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3708), 1, + [86494] = 4, + ACTIONS(3373), 1, anon_sym_RBRACK, + ACTIONS(3478), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141008,11 +143422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85385] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2236), 1, - sym_event_hdr, + [86510] = 4, + ACTIONS(3373), 1, + anon_sym_RBRACE, + ACTIONS(3478), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141020,11 +143434,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85401] = 4, - ACTIONS(3710), 1, - anon_sym_LBRACK, - ACTIONS(3712), 1, - sym_id, + [86526] = 4, + ACTIONS(3802), 1, + anon_sym_COMMA, + ACTIONS(3804), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141032,11 +143446,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85417] = 4, - ACTIONS(3714), 1, - anon_sym_COMMA, - ACTIONS(3716), 1, - anon_sym_in, + [86542] = 4, + ACTIONS(3806), 1, + anon_sym_LBRACK, + ACTIONS(3808), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141044,10 +143458,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85433] = 4, - ACTIONS(3633), 1, + [86558] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3718), 1, + ACTIONS(3810), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141056,10 +143470,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85449] = 4, - ACTIONS(3633), 1, + [86574] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3720), 1, + ACTIONS(3812), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141068,21 +143482,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85465] = 3, + [86590] = 4, + ACTIONS(3492), 1, + sym_id, + STATE(2612), 1, + sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3722), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85479] = 4, - ACTIONS(3724), 1, + [86606] = 4, + ACTIONS(3814), 1, anon_sym_LBRACK, - ACTIONS(3726), 1, + ACTIONS(3816), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141091,11 +143506,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85495] = 4, - ACTIONS(1482), 1, - anon_sym_EQ, - ACTIONS(3728), 1, - anon_sym_COLON, + [86622] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3818), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141103,10 +143518,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85511] = 4, - ACTIONS(3633), 1, + [86638] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3730), 1, + ACTIONS(3820), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141115,11 +143530,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85527] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3732), 1, - anon_sym_RBRACK, + [86654] = 4, + ACTIONS(3822), 1, + anon_sym_LBRACK, + ACTIONS(3824), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141127,22 +143542,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85543] = 3, + [86670] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3826), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3734), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85557] = 4, - ACTIONS(3736), 1, - anon_sym_LBRACK, - ACTIONS(3738), 1, - sym_id, + [86686] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3828), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141150,11 +143566,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85573] = 4, - ACTIONS(3414), 1, + [86702] = 4, + ACTIONS(3830), 1, + anon_sym_LBRACK, + ACTIONS(3832), 1, sym_id, - STATE(2303), 1, - sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141162,11 +143578,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85589] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3740), 1, + [86718] = 4, + ACTIONS(3337), 1, anon_sym_RBRACK, + ACTIONS(3478), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141174,10 +143590,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85605] = 4, - ACTIONS(3633), 1, + [86734] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3742), 1, + ACTIONS(3834), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141186,21 +143602,22 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85621] = 3, + [86750] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3836), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3341), 2, - anon_sym_SEMI, - anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85635] = 4, - ACTIONS(3744), 1, + [86766] = 4, + ACTIONS(3838), 1, anon_sym_LBRACK, - ACTIONS(3746), 1, + ACTIONS(3840), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141209,10 +143626,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85651] = 4, - ACTIONS(3217), 1, + [86782] = 4, + ACTIONS(3842), 1, anon_sym_LPAREN, - STATE(1272), 1, + STATE(1289), 1, sym_func_params, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141221,10 +143638,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85667] = 4, - ACTIONS(3633), 1, + [86798] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3748), 1, + ACTIONS(3844), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141233,10 +143650,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85683] = 4, - ACTIONS(3633), 1, + [86814] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3750), 1, + ACTIONS(3846), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141245,22 +143662,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85699] = 4, - ACTIONS(3752), 1, - anon_sym_LPAREN, - STATE(336), 1, - sym_func_params, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [85715] = 4, - ACTIONS(3754), 1, + [86830] = 4, + ACTIONS(3848), 1, anon_sym_LBRACK, - ACTIONS(3756), 1, + ACTIONS(3850), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141269,11 +143674,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85731] = 4, - ACTIONS(3327), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, + [86846] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, + ACTIONS(3852), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141281,10 +143686,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85747] = 4, - ACTIONS(3633), 1, + [86862] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3758), 1, + ACTIONS(3854), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141293,11 +143698,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85763] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3760), 1, - anon_sym_RBRACK, + [86878] = 4, + ACTIONS(3856), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141305,11 +143710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85779] = 4, - ACTIONS(3762), 1, - anon_sym_LPAREN, - STATE(1272), 1, - sym_func_params, + [86894] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3860), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141317,11 +143722,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85795] = 4, - ACTIONS(3764), 1, - anon_sym_LBRACK, - ACTIONS(3766), 1, - sym_id, + [86910] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3862), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141329,11 +143734,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85811] = 4, - ACTIONS(3768), 1, - anon_sym_LPAREN, - STATE(1272), 1, - sym_func_params, + [86926] = 4, + ACTIONS(3864), 1, + anon_sym_LBRACK, + ACTIONS(3866), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141341,10 +143746,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85827] = 4, - ACTIONS(3633), 1, + [86942] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3770), 1, + ACTIONS(3868), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141353,10 +143758,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85843] = 4, - ACTIONS(3633), 1, + [86958] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3772), 1, + ACTIONS(3870), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141365,11 +143770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85859] = 4, - ACTIONS(3157), 1, - anon_sym_LPAREN, - STATE(1978), 1, - sym_func_params, + [86974] = 4, + ACTIONS(3872), 1, + anon_sym_LBRACK, + ACTIONS(3874), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141377,11 +143782,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85875] = 4, - ACTIONS(3774), 1, - anon_sym_LBRACK, - ACTIONS(3776), 1, - sym_id, + [86990] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3876), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141389,22 +143794,23 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85891] = 3, + [87006] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3878), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3778), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85905] = 4, - ACTIONS(3633), 1, - anon_sym_COMMA, - ACTIONS(3780), 1, - anon_sym_RBRACK, + [87022] = 4, + ACTIONS(3880), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141412,10 +143818,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85921] = 4, - ACTIONS(3633), 1, + [87038] = 4, + ACTIONS(3518), 1, anon_sym_COMMA, - ACTIONS(3782), 1, + ACTIONS(3884), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141424,11 +143830,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85937] = 4, - ACTIONS(3784), 1, - anon_sym_LBRACK, - ACTIONS(3786), 1, - sym_id, + [87054] = 4, + ACTIONS(3518), 1, + anon_sym_COMMA, + ACTIONS(3886), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141436,10 +143842,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85953] = 4, - ACTIONS(3633), 1, + [87070] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3788), 1, + ACTIONS(3888), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141448,11 +143854,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85969] = 4, - ACTIONS(3633), 1, + [87086] = 4, + ACTIONS(3478), 1, anon_sym_COMMA, - ACTIONS(3790), 1, - anon_sym_RBRACK, + ACTIONS(3888), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141460,11 +143866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [85985] = 4, - ACTIONS(3414), 1, + [87102] = 4, + ACTIONS(3890), 1, sym_id, - STATE(2413), 1, - sym_event_hdr, + STATE(2160), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141472,10 +143878,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86001] = 4, - ACTIONS(3792), 1, + [87118] = 4, + ACTIONS(3892), 1, sym_id, - STATE(2118), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141484,10 +143890,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86017] = 4, - ACTIONS(3323), 1, - anon_sym_RBRACK, - ACTIONS(3410), 1, + [87134] = 4, + ACTIONS(3337), 1, + anon_sym_RBRACE, + ACTIONS(3478), 1, anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141496,10 +143902,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86033] = 4, - ACTIONS(3794), 1, + [87150] = 4, + ACTIONS(3894), 1, sym_id, - STATE(2072), 1, + STATE(2163), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141508,22 +143914,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86049] = 3, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3796), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [86063] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3798), 1, - anon_sym_RBRACK, + [87166] = 4, + ACTIONS(3896), 1, + sym_id, + STATE(2049), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141531,11 +143926,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86079] = 4, - ACTIONS(3263), 1, - anon_sym_RBRACK, - ACTIONS(3410), 1, - anon_sym_COMMA, + [87182] = 4, + ACTIONS(3898), 1, + sym_id, + STATE(2165), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141543,11 +143938,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86095] = 4, - ACTIONS(3800), 1, - anon_sym_LBRACK, - ACTIONS(3802), 1, + [87198] = 4, + ACTIONS(3900), 1, sym_id, + STATE(2049), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141555,11 +143950,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86111] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RBRACK, + [87214] = 4, + ACTIONS(3902), 1, + sym_id, + STATE(2167), 1, + aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141567,10 +143962,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86127] = 4, - ACTIONS(3806), 1, + [87230] = 4, + ACTIONS(3904), 1, sym_id, - STATE(2125), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141579,10 +143974,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86143] = 4, - ACTIONS(3808), 1, + [87246] = 4, + ACTIONS(3906), 1, sym_id, - STATE(2072), 1, + STATE(2169), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141591,10 +143986,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86159] = 4, - ACTIONS(3810), 1, + [87262] = 4, + ACTIONS(3908), 1, sym_id, - STATE(2127), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141603,10 +143998,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86175] = 4, - ACTIONS(3812), 1, + [87278] = 4, + ACTIONS(3910), 1, sym_id, - STATE(2072), 1, + STATE(2171), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141615,10 +144010,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86191] = 4, - ACTIONS(3814), 1, + [87294] = 4, + ACTIONS(3912), 1, sym_id, - STATE(2129), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141627,10 +144022,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86207] = 4, - ACTIONS(3816), 1, + [87310] = 4, + ACTIONS(3914), 1, sym_id, - STATE(2072), 1, + STATE(2173), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141639,10 +144034,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86223] = 4, - ACTIONS(3818), 1, + [87326] = 4, + ACTIONS(3916), 1, sym_id, - STATE(2131), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141651,10 +144046,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86239] = 4, - ACTIONS(3820), 1, + [87342] = 4, + ACTIONS(3918), 1, sym_id, - STATE(2072), 1, + STATE(2175), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141663,10 +144058,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86255] = 4, - ACTIONS(3822), 1, + [87358] = 4, + ACTIONS(3920), 1, sym_id, - STATE(2133), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141675,10 +144070,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86271] = 4, - ACTIONS(3824), 1, + [87374] = 4, + ACTIONS(3922), 1, sym_id, - STATE(2072), 1, + STATE(2177), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141687,10 +144082,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86287] = 4, - ACTIONS(3826), 1, + [87390] = 4, + ACTIONS(3924), 1, sym_id, - STATE(2135), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141699,10 +144094,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86303] = 4, - ACTIONS(3828), 1, + [87406] = 4, + ACTIONS(3926), 1, sym_id, - STATE(2072), 1, + STATE(2179), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141711,10 +144106,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86319] = 4, - ACTIONS(3830), 1, + [87422] = 4, + ACTIONS(3928), 1, sym_id, - STATE(2137), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141723,10 +144118,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86335] = 4, - ACTIONS(3832), 1, + [87438] = 4, + ACTIONS(3930), 1, sym_id, - STATE(2072), 1, + STATE(2181), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141735,10 +144130,10 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86351] = 4, - ACTIONS(3834), 1, + [87454] = 4, + ACTIONS(3932), 1, sym_id, - STATE(2139), 1, + STATE(2049), 1, aux_sym_stmt_repeat1, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141747,35 +144142,33 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86367] = 4, - ACTIONS(3836), 1, - sym_id, - STATE(2072), 1, - aux_sym_stmt_repeat1, + [87470] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3934), 2, + anon_sym_RBRACE, + anon_sym_COMMA, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86383] = 4, - ACTIONS(3838), 1, - sym_id, - STATE(2141), 1, - aux_sym_stmt_repeat1, + [87484] = 3, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, + ACTIONS(3392), 2, + anon_sym_RBRACE, + sym_id, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86399] = 4, - ACTIONS(3840), 1, - sym_id, - STATE(2072), 1, - aux_sym_stmt_repeat1, + [87498] = 4, + ACTIONS(3633), 1, + anon_sym_COMMA, + ACTIONS(3936), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141783,11 +144176,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86415] = 4, - ACTIONS(3842), 1, - sym_id, - STATE(2143), 1, - aux_sym_stmt_repeat1, + [87514] = 4, + ACTIONS(3478), 1, + anon_sym_COMMA, + ACTIONS(3938), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141795,11 +144188,11 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86431] = 4, - ACTIONS(3844), 1, - sym_id, - STATE(2072), 1, - aux_sym_stmt_repeat1, + [87530] = 4, + ACTIONS(3940), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141807,11 +144200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86447] = 4, - ACTIONS(3410), 1, - anon_sym_COMMA, - ACTIONS(3804), 1, - anon_sym_RBRACE, + [87546] = 3, + ACTIONS(3944), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141819,11 +144210,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86463] = 4, - ACTIONS(3263), 1, + [87559] = 3, + ACTIONS(3946), 1, anon_sym_RBRACE, - ACTIONS(3410), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141831,22 +144220,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86479] = 3, + [87572] = 3, + ACTIONS(3948), 1, + anon_sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3846), 2, - anon_sym_PLUS_EQ, - anon_sym_EQ, ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86493] = 4, - ACTIONS(3414), 1, + [87585] = 3, + ACTIONS(3950), 1, sym_id, - STATE(2530), 1, - sym_event_hdr, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141854,11 +144240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86509] = 4, - ACTIONS(3414), 1, - sym_id, - STATE(2161), 1, - sym_event_hdr, + [87598] = 3, + ACTIONS(2111), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141866,9 +144250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86525] = 3, - ACTIONS(3848), 1, - anon_sym_LPAREN, + [87611] = 3, + ACTIONS(3952), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141876,9 +144260,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86538] = 3, - ACTIONS(3850), 1, - anon_sym_of, + [87624] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(3954), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [87637] = 3, + ACTIONS(3956), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141886,9 +144280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86551] = 3, - ACTIONS(3852), 1, - sym_id, + [87650] = 3, + ACTIONS(3958), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141896,9 +144290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86564] = 3, - ACTIONS(562), 1, - anon_sym_RBRACE, + [87663] = 3, + ACTIONS(3960), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141906,9 +144300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86577] = 3, - ACTIONS(2083), 1, - anon_sym_SEMI, + [87676] = 3, + ACTIONS(3962), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141916,9 +144310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86590] = 3, - ACTIONS(958), 1, - anon_sym_SEMI, + [87689] = 3, + ACTIONS(3964), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141926,9 +144320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86603] = 3, - ACTIONS(2297), 1, - anon_sym_LPAREN, + [87702] = 3, + ACTIONS(3966), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141936,8 +144330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86616] = 3, - ACTIONS(3854), 1, + [87715] = 3, + ACTIONS(3299), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141946,28 +144340,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86629] = 3, + [87728] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(3856), 1, + ACTIONS(3968), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [86642] = 3, - ACTIONS(3858), 1, - sym_id, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [86655] = 3, - ACTIONS(3860), 1, + [87741] = 3, + ACTIONS(3970), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -141976,9 +144360,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86668] = 3, - ACTIONS(833), 1, - anon_sym_RBRACE, + [87754] = 3, + ACTIONS(2448), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141986,9 +144370,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86681] = 3, - ACTIONS(833), 1, - anon_sym_SEMI, + [87767] = 3, + ACTIONS(3972), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -141996,9 +144380,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86694] = 3, - ACTIONS(2967), 1, - anon_sym_SEMI, + [87780] = 3, + ACTIONS(3974), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142006,9 +144390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86707] = 3, - ACTIONS(3862), 1, - anon_sym_LPAREN, + [87793] = 3, + ACTIONS(1342), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142016,8 +144400,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86720] = 3, - ACTIONS(3864), 1, + [87806] = 3, + ACTIONS(1342), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142026,9 +144410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86733] = 3, - ACTIONS(960), 1, - anon_sym_SEMI, + [87819] = 3, + ACTIONS(3976), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142036,8 +144420,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86746] = 3, - ACTIONS(3866), 1, + [87832] = 3, + ACTIONS(3978), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142046,19 +144430,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86759] = 3, + [87845] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(3868), 1, + ACTIONS(3980), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [86772] = 3, - ACTIONS(3870), 1, - anon_sym_RBRACE, + [87858] = 3, + ACTIONS(3982), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142066,18 +144450,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86785] = 3, + [87871] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(3872), 1, + ACTIONS(3984), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [86798] = 3, - ACTIONS(3874), 1, + [87884] = 3, + ACTIONS(3046), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142086,8 +144470,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86811] = 3, - ACTIONS(3876), 1, + [87897] = 3, + ACTIONS(3986), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142096,9 +144480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86824] = 3, - ACTIONS(3878), 1, - anon_sym_LBRACE, + [87910] = 3, + ACTIONS(1318), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142106,9 +144490,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86837] = 3, - ACTIONS(560), 1, - anon_sym_RBRACE, + [87923] = 3, + ACTIONS(3988), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142116,9 +144500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86850] = 3, - ACTIONS(3880), 1, - sym_id, + [87936] = 3, + ACTIONS(3070), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142126,9 +144510,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86863] = 3, - ACTIONS(1630), 1, - anon_sym_EQ, + [87949] = 3, + ACTIONS(3990), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142136,9 +144520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86876] = 3, - ACTIONS(2653), 1, - anon_sym_SEMI, + [87962] = 3, + ACTIONS(3337), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142146,9 +144530,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86889] = 3, - ACTIONS(3882), 1, - anon_sym_RPAREN, + [87975] = 3, + ACTIONS(3992), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142156,9 +144540,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86902] = 3, - ACTIONS(3884), 1, - anon_sym_SEMI, + [87988] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(3994), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [88001] = 3, + ACTIONS(3996), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142166,8 +144560,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86915] = 3, - ACTIONS(3886), 1, + [88014] = 3, + ACTIONS(3998), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142176,9 +144570,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86928] = 3, - ACTIONS(1762), 1, - anon_sym_RPAREN, + [88027] = 3, + ACTIONS(1412), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142186,9 +144580,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86941] = 3, - ACTIONS(3888), 1, - anon_sym_RBRACE, + [88040] = 3, + ACTIONS(4000), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142196,9 +144590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86954] = 3, - ACTIONS(2039), 1, - anon_sym_RBRACK, + [88053] = 3, + ACTIONS(4002), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142206,9 +144600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86967] = 3, - ACTIONS(3063), 1, - anon_sym_SEMI, + [88066] = 3, + ACTIONS(2446), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142216,19 +144610,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [86980] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(3890), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [88079] = 3, + ACTIONS(4004), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [86993] = 3, - ACTIONS(972), 1, - anon_sym_RBRACE, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [88092] = 3, + ACTIONS(4006), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142236,9 +144630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87006] = 3, - ACTIONS(3892), 1, - anon_sym_EQ, + [88105] = 3, + ACTIONS(1622), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142246,8 +144640,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87019] = 3, - ACTIONS(972), 1, + [88118] = 3, + ACTIONS(2532), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142256,8 +144650,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87032] = 3, - ACTIONS(3894), 1, + [88131] = 3, + ACTIONS(3128), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142266,8 +144660,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87045] = 3, - ACTIONS(3896), 1, + [88144] = 3, + ACTIONS(4008), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142276,9 +144670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87058] = 3, - ACTIONS(974), 1, - anon_sym_SEMI, + [88157] = 3, + ACTIONS(4010), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142286,9 +144680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87071] = 3, - ACTIONS(3898), 1, - sym_id, + [88170] = 3, + ACTIONS(1792), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142296,9 +144690,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87084] = 3, - ACTIONS(3900), 1, - sym_id, + [88183] = 3, + ACTIONS(1448), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142306,8 +144700,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87097] = 3, - ACTIONS(3237), 1, + [88196] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4012), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [88209] = 3, + ACTIONS(4014), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142316,9 +144720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87110] = 3, - ACTIONS(3902), 1, - sym_id, + [88222] = 3, + ACTIONS(3124), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142326,8 +144730,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87123] = 3, - ACTIONS(2965), 1, + [88235] = 3, + ACTIONS(3090), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142336,9 +144740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87136] = 3, - ACTIONS(3904), 1, - anon_sym_in, + [88248] = 3, + ACTIONS(4016), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142346,8 +144750,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87149] = 3, - ACTIONS(3906), 1, + [88261] = 3, + ACTIONS(4018), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142356,9 +144760,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87162] = 3, - ACTIONS(1644), 1, - anon_sym_RPAREN, + [88274] = 3, + ACTIONS(4020), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142366,9 +144770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87175] = 3, - ACTIONS(3908), 1, - sym_id, + [88287] = 3, + ACTIONS(3466), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142376,8 +144780,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87188] = 3, - ACTIONS(2969), 1, + [88300] = 3, + ACTIONS(3126), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142386,9 +144790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87201] = 3, - ACTIONS(3910), 1, - sym_id, + [88313] = 3, + ACTIONS(3110), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142396,8 +144800,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87214] = 3, - ACTIONS(3912), 1, + [88326] = 3, + ACTIONS(4022), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142406,8 +144810,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87227] = 3, - ACTIONS(3914), 1, + [88339] = 3, + ACTIONS(1414), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [88352] = 3, + ACTIONS(3086), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142416,8 +144830,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87240] = 3, - ACTIONS(3916), 1, + [88365] = 3, + ACTIONS(1414), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142426,8 +144840,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87253] = 3, - ACTIONS(962), 1, + [88378] = 3, + ACTIONS(3036), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142436,9 +144850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87266] = 3, - ACTIONS(3918), 1, - sym_id, + [88391] = 3, + ACTIONS(4024), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142446,8 +144860,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87279] = 3, - ACTIONS(3920), 1, + [88404] = 3, + ACTIONS(1690), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142456,9 +144870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87292] = 3, - ACTIONS(3922), 1, - anon_sym_RBRACE, + [88417] = 3, + ACTIONS(1394), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142466,9 +144880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87305] = 3, - ACTIONS(3633), 1, - anon_sym_COMMA, + [88430] = 3, + ACTIONS(1386), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142476,9 +144890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87318] = 3, - ACTIONS(518), 1, - anon_sym_RBRACE, + [88443] = 3, + ACTIONS(4026), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142486,9 +144900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87331] = 3, - ACTIONS(3924), 1, - anon_sym_LPAREN, + [88456] = 3, + ACTIONS(4028), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142496,8 +144910,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87344] = 3, - ACTIONS(520), 1, + [88469] = 3, + ACTIONS(1422), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142506,9 +144920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87357] = 3, - ACTIONS(3926), 1, - anon_sym_LPAREN, + [88482] = 3, + ACTIONS(4030), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142516,9 +144930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87370] = 3, - ACTIONS(3928), 1, - anon_sym_of, + [88495] = 3, + ACTIONS(508), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142526,9 +144940,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87383] = 3, - ACTIONS(3930), 1, - anon_sym_RBRACE, + [88508] = 3, + ACTIONS(3106), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142536,8 +144950,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87396] = 3, - ACTIONS(3932), 1, + [88521] = 3, + ACTIONS(4032), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142546,9 +144960,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87409] = 3, - ACTIONS(2365), 1, - anon_sym_COLON, + [88534] = 3, + ACTIONS(3072), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [88547] = 3, + ACTIONS(1318), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142556,8 +144980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87422] = 3, - ACTIONS(3039), 1, + [88560] = 3, + ACTIONS(1448), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142566,8 +144990,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87435] = 3, - ACTIONS(3934), 1, + [88573] = 3, + ACTIONS(4034), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142576,8 +145000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87448] = 3, - ACTIONS(3936), 1, + [88586] = 3, + ACTIONS(4036), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142586,8 +145010,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87461] = 3, - ACTIONS(2057), 1, + [88599] = 3, + ACTIONS(3006), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142596,8 +145020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87474] = 3, - ACTIONS(3938), 1, + [88612] = 3, + ACTIONS(4038), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142606,8 +145030,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87487] = 3, - ACTIONS(3940), 1, + [88625] = 3, + ACTIONS(4040), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142616,8 +145040,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87500] = 3, - ACTIONS(3942), 1, + [88638] = 3, + ACTIONS(4042), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142626,8 +145050,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87513] = 3, - ACTIONS(3944), 1, + [88651] = 3, + ACTIONS(4044), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142636,8 +145060,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87526] = 3, - ACTIONS(3946), 1, + [88664] = 3, + ACTIONS(4046), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142646,8 +145070,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87539] = 3, - ACTIONS(3948), 1, + [88677] = 3, + ACTIONS(4048), 1, anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142656,9 +145080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87552] = 3, - ACTIONS(3950), 1, - sym_id, + [88690] = 3, + ACTIONS(1798), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142666,8 +145090,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87565] = 3, - ACTIONS(3952), 1, + [88703] = 3, + ACTIONS(3108), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142676,9 +145100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87578] = 3, - ACTIONS(2983), 1, - anon_sym_SEMI, + [88716] = 3, + ACTIONS(4050), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142686,18 +145110,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87591] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(3954), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [88729] = 3, + ACTIONS(4052), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [87604] = 3, - ACTIONS(3956), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [88742] = 3, + ACTIONS(4054), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142706,9 +145130,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87617] = 3, - ACTIONS(3337), 1, - anon_sym_LPAREN, + [88755] = 3, + ACTIONS(4056), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142716,9 +145140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87630] = 3, - ACTIONS(781), 1, - anon_sym_RBRACE, + [88768] = 3, + ACTIONS(1422), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142726,8 +145150,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87643] = 3, - ACTIONS(3958), 1, + [88781] = 3, + ACTIONS(4058), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142736,8 +145160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87656] = 3, - ACTIONS(781), 1, + [88794] = 3, + ACTIONS(4060), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142746,8 +145170,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87669] = 3, - ACTIONS(3960), 1, + [88807] = 3, + ACTIONS(4062), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142756,8 +145180,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87682] = 3, - ACTIONS(3025), 1, + [88820] = 3, + ACTIONS(2610), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142766,9 +145190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87695] = 3, - ACTIONS(3299), 1, - anon_sym_RBRACE, + [88833] = 3, + ACTIONS(4064), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142776,18 +145200,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87708] = 3, - ACTIONS(3962), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + [88846] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4066), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [87721] = 3, - ACTIONS(3964), 1, + sym_zeekygen_next_comment, + sym_minor_comment, + [88859] = 3, + ACTIONS(4068), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142796,8 +145220,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87734] = 3, - ACTIONS(3966), 1, + [88872] = 3, + ACTIONS(4070), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142806,9 +145230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87747] = 3, - ACTIONS(3968), 1, - anon_sym_RPAREN, + [88885] = 3, + ACTIONS(1432), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142816,8 +145240,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87760] = 3, - ACTIONS(3970), 1, + [88898] = 3, + ACTIONS(4072), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142826,8 +145250,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87773] = 3, - ACTIONS(3972), 1, + [88911] = 3, + ACTIONS(4074), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142836,8 +145260,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87786] = 3, - ACTIONS(3974), 1, + [88924] = 3, + ACTIONS(4076), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142846,18 +145270,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87799] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(3976), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [88937] = 3, + ACTIONS(4078), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [87812] = 3, - ACTIONS(2359), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [88950] = 3, + ACTIONS(2416), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142866,9 +145290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87825] = 3, - ACTIONS(3978), 1, - anon_sym_LBRACE, + [88963] = 3, + ACTIONS(4080), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142876,9 +145300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87838] = 3, - ACTIONS(3980), 1, - anon_sym_LPAREN, + [88976] = 3, + ACTIONS(540), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142886,9 +145310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87851] = 3, - ACTIONS(3982), 1, - anon_sym_of, + [88989] = 3, + ACTIONS(4082), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142896,9 +145320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87864] = 3, - ACTIONS(3984), 1, - anon_sym_SEMI, + [89002] = 3, + ACTIONS(4084), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142906,8 +145330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87877] = 3, - ACTIONS(2671), 1, + [89015] = 3, + ACTIONS(3120), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142916,8 +145340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87890] = 3, - ACTIONS(3986), 1, + [89028] = 3, + ACTIONS(4086), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142926,9 +145350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87903] = 3, - ACTIONS(3299), 1, - anon_sym_RPAREN, + [89041] = 3, + ACTIONS(2466), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142936,9 +145360,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87916] = 3, - ACTIONS(1770), 1, - anon_sym_RPAREN, + [89054] = 3, + ACTIONS(4088), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142946,9 +145370,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87929] = 3, - ACTIONS(2079), 1, - anon_sym_SEMI, + [89067] = 3, + ACTIONS(542), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142956,9 +145380,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87942] = 3, - ACTIONS(3988), 1, - anon_sym_LBRACE, + [89080] = 3, + ACTIONS(504), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142966,8 +145390,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87955] = 3, - ACTIONS(3019), 1, + [89093] = 3, + ACTIONS(4090), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -142976,9 +145400,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87968] = 3, - ACTIONS(3990), 1, - sym_id, + [89106] = 3, + ACTIONS(2103), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142986,9 +145410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87981] = 3, - ACTIONS(3992), 1, - anon_sym_RPAREN, + [89119] = 3, + ACTIONS(4092), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -142996,9 +145420,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [87994] = 3, - ACTIONS(3467), 1, - anon_sym_in, + [89132] = 3, + ACTIONS(4094), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143006,9 +145430,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88007] = 3, - ACTIONS(3003), 1, - anon_sym_SEMI, + [89145] = 3, + ACTIONS(3616), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143016,9 +145440,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88020] = 3, - ACTIONS(3994), 1, - sym_id, + [89158] = 3, + ACTIONS(1398), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143026,8 +145450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88033] = 3, - ACTIONS(976), 1, + [89171] = 3, + ACTIONS(4096), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143036,9 +145460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88046] = 3, - ACTIONS(3996), 1, - sym_id, + [89184] = 3, + ACTIONS(2600), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143046,18 +145470,28 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88059] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(3998), 1, - sym_file, - ACTIONS(5), 4, + [89197] = 3, + ACTIONS(4098), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, + sym_nl, + [89210] = 3, + ACTIONS(3610), 1, + anon_sym_in, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [88072] = 3, - ACTIONS(4000), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [89223] = 3, + ACTIONS(4100), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143066,9 +145500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88085] = 3, - ACTIONS(4002), 1, - anon_sym_SEMI, + [89236] = 3, + ACTIONS(1440), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143076,8 +145510,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88098] = 3, - ACTIONS(4004), 1, + [89249] = 3, + ACTIONS(4102), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143086,8 +145520,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88111] = 3, - ACTIONS(976), 1, + [89262] = 3, + ACTIONS(1436), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143096,8 +145530,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88124] = 3, - ACTIONS(4006), 1, + [89275] = 3, + ACTIONS(4104), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143106,8 +145540,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88137] = 3, - ACTIONS(4008), 1, + [89288] = 3, + ACTIONS(4106), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143116,9 +145550,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88150] = 3, - ACTIONS(936), 1, - anon_sym_SEMI, + [89301] = 3, + ACTIONS(1676), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143126,9 +145560,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88163] = 3, - ACTIONS(978), 1, - anon_sym_SEMI, + [89314] = 3, + ACTIONS(4108), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143136,9 +145570,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88176] = 3, - ACTIONS(4010), 1, - anon_sym_of, + [89327] = 3, + ACTIONS(2115), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143146,9 +145580,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88189] = 3, - ACTIONS(4012), 1, - anon_sym_of, + [89340] = 3, + ACTIONS(4110), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143156,8 +145590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88202] = 3, - ACTIONS(3033), 1, + [89353] = 3, + ACTIONS(3016), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143166,9 +145600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88215] = 3, - ACTIONS(2991), 1, - anon_sym_SEMI, + [89366] = 3, + ACTIONS(4112), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143176,9 +145610,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88228] = 3, - ACTIONS(3037), 1, - anon_sym_SEMI, + [89379] = 3, + ACTIONS(4114), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143186,9 +145620,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88241] = 3, - ACTIONS(4014), 1, - anon_sym_SEMI, + [89392] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4116), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [89405] = 3, + ACTIONS(3506), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143196,9 +145640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88254] = 3, - ACTIONS(4016), 1, - anon_sym_SEMI, + [89418] = 3, + ACTIONS(4118), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143206,9 +145650,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88267] = 3, - ACTIONS(4018), 1, - anon_sym_EQ, + [89431] = 3, + ACTIONS(3038), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143216,9 +145660,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88280] = 3, - ACTIONS(4020), 1, - sym_id, + [89444] = 3, + ACTIONS(4120), 1, + anon_sym_type, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143226,9 +145670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88293] = 3, - ACTIONS(4022), 1, - sym_id, + [89457] = 3, + ACTIONS(1350), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143236,8 +145680,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88306] = 3, - ACTIONS(2071), 1, + [89470] = 3, + ACTIONS(1350), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143246,8 +145690,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88319] = 3, - ACTIONS(4024), 1, + [89483] = 3, + ACTIONS(2750), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143256,9 +145700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88332] = 3, - ACTIONS(582), 1, - anon_sym_RBRACE, + [89496] = 3, + ACTIONS(4122), 1, + anon_sym_PLUS_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143266,9 +145710,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88345] = 3, - ACTIONS(3001), 1, - anon_sym_SEMI, + [89509] = 3, + ACTIONS(2420), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143276,9 +145720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88358] = 3, - ACTIONS(530), 1, - anon_sym_RBRACE, + [89522] = 3, + ACTIONS(4124), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143286,9 +145730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88371] = 3, - ACTIONS(4026), 1, - anon_sym_SEMI, + [89535] = 3, + ACTIONS(3388), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143296,9 +145740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88384] = 3, - ACTIONS(4028), 1, - anon_sym_RBRACE, + [89548] = 3, + ACTIONS(4126), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143306,19 +145750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88397] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4030), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [88410] = 3, - ACTIONS(2103), 1, - anon_sym_SEMI, + [89561] = 3, + ACTIONS(3496), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143326,9 +145760,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88423] = 3, - ACTIONS(4032), 1, - sym_id, + [89574] = 3, + ACTIONS(3074), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143336,9 +145770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88436] = 3, - ACTIONS(4034), 1, - anon_sym_SEMI, + [89587] = 3, + ACTIONS(4128), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143346,19 +145780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88449] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4036), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [88462] = 3, - ACTIONS(4038), 1, - sym_id, + [89600] = 3, + ACTIONS(4130), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143366,9 +145790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88475] = 3, - ACTIONS(938), 1, - anon_sym_SEMI, + [89613] = 3, + ACTIONS(1600), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143376,8 +145800,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88488] = 3, - ACTIONS(4040), 1, + [89626] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4132), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [89639] = 3, + ACTIONS(4134), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143386,8 +145820,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88501] = 3, - ACTIONS(4042), 1, + [89652] = 3, + ACTIONS(4136), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143396,9 +145830,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88514] = 3, - ACTIONS(666), 1, - anon_sym_RBRACE, + [89665] = 3, + ACTIONS(4138), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143406,9 +145840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88527] = 3, - ACTIONS(666), 1, - anon_sym_SEMI, + [89678] = 3, + ACTIONS(4140), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143416,9 +145850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88540] = 3, - ACTIONS(4044), 1, - anon_sym_SEMI, + [89691] = 3, + ACTIONS(4142), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143426,8 +145860,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88553] = 3, - ACTIONS(934), 1, + [89704] = 3, + ACTIONS(3112), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143436,8 +145870,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88566] = 3, - ACTIONS(1901), 1, + [89717] = 3, + ACTIONS(1967), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143446,8 +145880,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88579] = 3, - ACTIONS(4046), 1, + [89730] = 3, + ACTIONS(4144), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143456,8 +145890,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88592] = 3, - ACTIONS(4048), 1, + [89743] = 3, + ACTIONS(4146), 1, anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143466,9 +145900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88605] = 3, - ACTIONS(4050), 1, - anon_sym_of, + [89756] = 3, + ACTIONS(528), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143476,8 +145910,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88618] = 3, - ACTIONS(4052), 1, + [89769] = 3, + ACTIONS(4148), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143486,8 +145920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88631] = 3, - ACTIONS(4054), 1, + [89782] = 3, + ACTIONS(4150), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143496,9 +145930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88644] = 3, - ACTIONS(652), 1, - anon_sym_RBRACE, + [89795] = 3, + ACTIONS(3337), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143506,8 +145940,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88657] = 3, - ACTIONS(4056), 1, + [89808] = 3, + ACTIONS(4152), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143516,9 +145950,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88670] = 3, - ACTIONS(652), 1, - anon_sym_SEMI, + [89821] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4154), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [89834] = 3, + ACTIONS(530), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143526,9 +145970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88683] = 3, - ACTIONS(4058), 1, - sym_id, + [89847] = 3, + ACTIONS(3388), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143536,9 +145980,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88696] = 3, - ACTIONS(821), 1, - anon_sym_RBRACE, + [89860] = 3, + ACTIONS(4156), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143546,8 +145990,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88709] = 3, - ACTIONS(4060), 1, + [89873] = 3, + ACTIONS(4158), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143556,8 +146000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88722] = 3, - ACTIONS(4062), 1, + [89886] = 3, + ACTIONS(4160), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143566,9 +146010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88735] = 3, - ACTIONS(4064), 1, - anon_sym_LPAREN, + [89899] = 3, + ACTIONS(4162), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143576,9 +146020,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88748] = 3, - ACTIONS(4066), 1, - anon_sym_EQ, + [89912] = 3, + ACTIONS(2087), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143586,9 +146030,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88761] = 3, - ACTIONS(3041), 1, - anon_sym_SEMI, + [89925] = 3, + ACTIONS(4164), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143596,18 +146040,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88774] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4068), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [88787] = 3, - ACTIONS(4070), 1, + [89938] = 3, + ACTIONS(4166), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143616,9 +146050,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88800] = 3, - ACTIONS(2045), 1, - anon_sym_RBRACE, + [89951] = 3, + ACTIONS(4168), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143626,8 +146060,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88813] = 3, - ACTIONS(4072), 1, + [89964] = 3, + ACTIONS(4170), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143636,8 +146070,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88826] = 3, - ACTIONS(4074), 1, + [89977] = 3, + ACTIONS(4172), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143646,8 +146080,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88839] = 3, - ACTIONS(4076), 1, + [89990] = 3, + ACTIONS(4174), 1, anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143656,9 +146090,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88852] = 3, - ACTIONS(488), 1, - anon_sym_RBRACE, + [90003] = 3, + ACTIONS(1400), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143666,9 +146100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88865] = 3, - ACTIONS(4078), 1, - anon_sym_LPAREN, + [90016] = 3, + ACTIONS(3054), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143676,9 +146110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88878] = 3, - ACTIONS(4080), 1, - anon_sym_LPAREN, + [90029] = 3, + ACTIONS(4176), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143686,8 +146120,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88891] = 3, - ACTIONS(3501), 1, + [90042] = 3, + ACTIONS(3653), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143696,8 +146130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88904] = 3, - ACTIONS(4082), 1, + [90055] = 3, + ACTIONS(4178), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143706,8 +146140,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88917] = 3, - ACTIONS(4084), 1, + [90068] = 3, + ACTIONS(4180), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143716,8 +146150,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88930] = 3, - ACTIONS(2689), 1, + [90081] = 3, + ACTIONS(2552), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143726,8 +146160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88943] = 3, - ACTIONS(4086), 1, + [90094] = 3, + ACTIONS(4182), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143736,9 +146170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88956] = 3, - ACTIONS(4088), 1, - anon_sym_SEMI, + [90107] = 3, + ACTIONS(4184), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143746,8 +146180,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88969] = 3, - ACTIONS(4090), 1, + [90120] = 3, + ACTIONS(4186), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143756,9 +146190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88982] = 3, - ACTIONS(1774), 1, - anon_sym_RPAREN, + [90133] = 3, + ACTIONS(4188), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143766,9 +146200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [88995] = 3, - ACTIONS(940), 1, - anon_sym_SEMI, + [90146] = 3, + ACTIONS(1772), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143776,8 +146210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89008] = 3, - ACTIONS(4092), 1, + [90159] = 3, + ACTIONS(4190), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143786,8 +146220,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89021] = 3, - ACTIONS(4094), 1, + [90172] = 3, + ACTIONS(4192), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143796,8 +146230,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89034] = 3, - ACTIONS(4096), 1, + [90185] = 3, + ACTIONS(4194), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143806,8 +146240,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89047] = 3, - ACTIONS(4098), 1, + [90198] = 3, + ACTIONS(4196), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143816,9 +146250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89060] = 3, - ACTIONS(3029), 1, - anon_sym_SEMI, + [90211] = 3, + ACTIONS(4198), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143826,9 +146260,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89073] = 3, - ACTIONS(2951), 1, - anon_sym_SEMI, + [90224] = 3, + ACTIONS(4200), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143836,9 +146270,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89086] = 3, - ACTIONS(490), 1, - anon_sym_RBRACE, + [90237] = 3, + ACTIONS(1672), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143846,8 +146280,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89099] = 3, - ACTIONS(821), 1, + [90250] = 3, + ACTIONS(2137), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143856,8 +146290,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89112] = 3, - ACTIONS(980), 1, + [90263] = 3, + ACTIONS(4202), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143866,9 +146300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89125] = 3, - ACTIONS(4100), 1, - anon_sym_LBRACE, + [90276] = 3, + ACTIONS(4204), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143876,9 +146310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89138] = 3, - ACTIONS(2091), 1, - anon_sym_SEMI, + [90289] = 3, + ACTIONS(4206), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143886,8 +146320,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89151] = 3, - ACTIONS(3515), 1, + [90302] = 3, + ACTIONS(3665), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143896,8 +146330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89164] = 3, - ACTIONS(980), 1, + [90315] = 3, + ACTIONS(4208), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143906,9 +146340,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89177] = 3, - ACTIONS(4102), 1, - anon_sym_RBRACE, + [90328] = 3, + ACTIONS(4210), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143916,9 +146350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89190] = 3, - ACTIONS(4104), 1, - anon_sym_LBRACE, + [90341] = 3, + ACTIONS(3030), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143926,8 +146360,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89203] = 3, - ACTIONS(4106), 1, + [90354] = 3, + ACTIONS(4212), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143936,8 +146370,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89216] = 3, - ACTIONS(982), 1, + [90367] = 3, + ACTIONS(3114), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143946,8 +146380,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89229] = 3, - ACTIONS(4108), 1, + [90380] = 3, + ACTIONS(4214), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143956,9 +146390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89242] = 3, - ACTIONS(2045), 1, - anon_sym_RBRACK, + [90393] = 3, + ACTIONS(4216), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143966,9 +146400,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89255] = 3, - ACTIONS(2945), 1, - anon_sym_SEMI, + [90406] = 3, + ACTIONS(4218), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -143976,8 +146410,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89268] = 3, - ACTIONS(4110), 1, + [90419] = 3, + ACTIONS(4220), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143986,8 +146420,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89281] = 3, - ACTIONS(4112), 1, + [90432] = 3, + ACTIONS(4222), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -143996,8 +146430,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89294] = 3, - ACTIONS(4114), 1, + [90445] = 3, + ACTIONS(4224), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144006,8 +146440,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89307] = 3, - ACTIONS(4116), 1, + [90458] = 3, + ACTIONS(4226), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144016,8 +146450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89320] = 3, - ACTIONS(2955), 1, + [90471] = 3, + ACTIONS(1390), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144026,9 +146460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89333] = 3, - ACTIONS(4118), 1, - anon_sym_type, + [90484] = 3, + ACTIONS(2119), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144036,9 +146470,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89346] = 3, - ACTIONS(4120), 1, - sym_id, + [90497] = 3, + ACTIONS(1895), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144046,9 +146480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89359] = 3, - ACTIONS(2957), 1, - anon_sym_SEMI, + [90510] = 3, + ACTIONS(1428), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144056,9 +146490,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89372] = 3, - ACTIONS(4122), 1, - anon_sym_SEMI, + [90523] = 3, + ACTIONS(4228), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144066,8 +146500,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89385] = 3, - ACTIONS(4124), 1, + [90536] = 3, + ACTIONS(1428), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144076,9 +146510,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89398] = 3, - ACTIONS(4126), 1, - sym_id, + [90549] = 3, + ACTIONS(1730), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144086,8 +146520,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89411] = 3, - ACTIONS(3527), 1, + [90562] = 3, + ACTIONS(3679), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144096,8 +146530,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89424] = 3, - ACTIONS(4128), 1, + [90575] = 3, + ACTIONS(512), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90588] = 3, + ACTIONS(4230), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144106,8 +146550,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89437] = 3, - ACTIONS(2095), 1, + [90601] = 3, + ACTIONS(3102), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144116,9 +146560,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89450] = 3, - ACTIONS(4130), 1, - anon_sym_COLON, + [90614] = 3, + ACTIONS(4232), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144126,8 +146570,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89463] = 3, - ACTIONS(4132), 1, + [90627] = 3, + ACTIONS(4234), 1, + sym_id, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90640] = 3, + ACTIONS(4236), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144136,8 +146590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89476] = 3, - ACTIONS(3061), 1, + [90653] = 3, + ACTIONS(2123), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144146,9 +146600,49 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89489] = 3, - ACTIONS(4134), 1, - anon_sym_in, + [90666] = 3, + ACTIONS(1430), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90679] = 3, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90692] = 3, + ACTIONS(4240), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90705] = 3, + ACTIONS(4242), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90718] = 3, + ACTIONS(4244), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144156,19 +146650,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89502] = 3, + [90731] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(4136), 1, + ACTIONS(4246), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [89515] = 3, - ACTIONS(4138), 1, - sym_id, + [90744] = 3, + ACTIONS(4248), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144176,9 +146670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89528] = 3, - ACTIONS(4140), 1, - anon_sym_LPAREN, + [90757] = 3, + ACTIONS(4250), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144186,9 +146680,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89541] = 3, - ACTIONS(4142), 1, - anon_sym_LPAREN, + [90770] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4252), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [90783] = 3, + ACTIONS(4254), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144196,9 +146700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89554] = 3, - ACTIONS(4144), 1, - anon_sym_LPAREN, + [90796] = 3, + ACTIONS(4256), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144206,9 +146710,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89567] = 3, - ACTIONS(4146), 1, - anon_sym_EQ, + [90809] = 3, + ACTIONS(4258), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144216,9 +146720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89580] = 3, - ACTIONS(538), 1, - anon_sym_RBRACE, + [90822] = 3, + ACTIONS(3693), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144226,9 +146730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89593] = 3, - ACTIONS(4148), 1, - anon_sym_EQ, + [90835] = 3, + ACTIONS(3060), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144236,8 +146740,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89606] = 3, - ACTIONS(773), 1, + [90848] = 3, + ACTIONS(1302), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144246,9 +146750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89619] = 3, - ACTIONS(540), 1, - anon_sym_RBRACE, + [90861] = 3, + ACTIONS(3317), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144256,8 +146760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89632] = 3, - ACTIONS(4150), 1, + [90874] = 3, + ACTIONS(4260), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144266,9 +146770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89645] = 3, - ACTIONS(4152), 1, - anon_sym_RBRACE, + [90887] = 3, + ACTIONS(3024), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144276,9 +146780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89658] = 3, - ACTIONS(4154), 1, - anon_sym_RPAREN, + [90900] = 3, + ACTIONS(4262), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144286,9 +146790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89671] = 3, - ACTIONS(3543), 1, - anon_sym_in, + [90913] = 3, + ACTIONS(4264), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144296,8 +146800,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89684] = 3, - ACTIONS(773), 1, + [90926] = 3, + ACTIONS(4266), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144306,18 +146810,68 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89697] = 3, - ACTIONS(3), 1, + [90939] = 3, + ACTIONS(4268), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, sym_nl, - ACTIONS(4156), 1, - sym_file, - ACTIONS(5), 4, + [90952] = 3, + ACTIONS(4270), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, + sym_nl, + [90965] = 3, + ACTIONS(4272), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [89710] = 3, - ACTIONS(2067), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90978] = 3, + ACTIONS(4274), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [90991] = 3, + ACTIONS(1180), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [91004] = 3, + ACTIONS(4276), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [91017] = 3, + ACTIONS(1402), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144326,8 +146880,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89723] = 3, - ACTIONS(4158), 1, + [91030] = 3, + ACTIONS(3705), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144336,18 +146890,28 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89736] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4160), 1, - sym_file, - ACTIONS(5), 4, + [91043] = 3, + ACTIONS(1334), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, + sym_nl, + [91056] = 3, + ACTIONS(2083), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [89749] = 3, - ACTIONS(4162), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [91069] = 3, + ACTIONS(4278), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144356,9 +146920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89762] = 3, - ACTIONS(4164), 1, - aux_sym_constant_token1, + [91082] = 3, + ACTIONS(3116), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144366,18 +146930,38 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89775] = 3, - ACTIONS(3), 1, + [91095] = 3, + ACTIONS(4280), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, sym_nl, - ACTIONS(4166), 1, - sym_file, - ACTIONS(5), 4, + [91108] = 3, + ACTIONS(4282), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, + sym_nl, + [91121] = 3, + ACTIONS(3096), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [89788] = 3, - ACTIONS(4168), 1, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [91134] = 3, + ACTIONS(4284), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144386,9 +146970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89801] = 3, - ACTIONS(578), 1, - anon_sym_RBRACE, + [91147] = 3, + ACTIONS(4286), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144396,8 +146980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89814] = 3, - ACTIONS(4170), 1, + [91160] = 3, + ACTIONS(4288), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144406,8 +146990,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89827] = 3, - ACTIONS(4172), 1, + [91173] = 3, + ACTIONS(4290), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144416,9 +147000,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89840] = 3, - ACTIONS(4174), 1, - sym_id, + [91186] = 3, + ACTIONS(4292), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144426,9 +147010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89853] = 3, - ACTIONS(2561), 1, - sym_id, + [91199] = 3, + ACTIONS(3118), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144436,8 +147020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89866] = 3, - ACTIONS(2943), 1, + [91212] = 3, + ACTIONS(1334), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144446,8 +147030,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89879] = 3, - ACTIONS(3557), 1, + [91225] = 3, + ACTIONS(3717), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144456,9 +147040,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89892] = 3, - ACTIONS(4176), 1, - anon_sym_EQ, + [91238] = 3, + ACTIONS(1408), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144466,9 +147050,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89905] = 3, - ACTIONS(4178), 1, - sym_id, + [91251] = 3, + ACTIONS(4294), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144476,8 +147060,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89918] = 3, - ACTIONS(4180), 1, + [91264] = 3, + ACTIONS(4296), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144486,9 +147070,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89931] = 3, - ACTIONS(765), 1, - anon_sym_RBRACE, + [91277] = 3, + ACTIONS(1180), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144496,8 +147080,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89944] = 3, - ACTIONS(4182), 1, + [91290] = 3, + ACTIONS(4298), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144506,8 +147090,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89957] = 3, - ACTIONS(765), 1, + [91303] = 3, + ACTIONS(4300), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144516,9 +147100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89970] = 3, - ACTIONS(4184), 1, - sym_id, + [91316] = 3, + ACTIONS(4302), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144526,8 +147110,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89983] = 3, - ACTIONS(4186), 1, + [91329] = 3, + ACTIONS(4304), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144536,8 +147120,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [89996] = 3, - ACTIONS(4188), 1, + [91342] = 3, + ACTIONS(4306), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144546,8 +147130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90009] = 3, - ACTIONS(4190), 1, + [91355] = 3, + ACTIONS(4308), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144556,8 +147140,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90022] = 3, - ACTIONS(4192), 1, + [91368] = 3, + ACTIONS(4310), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144566,9 +147150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90035] = 3, - ACTIONS(4194), 1, - anon_sym_in, + [91381] = 3, + ACTIONS(2083), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144576,9 +147160,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90048] = 3, - ACTIONS(4196), 1, - anon_sym_LPAREN, + [91394] = 3, + ACTIONS(1302), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144586,9 +147170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90061] = 3, - ACTIONS(4198), 1, - anon_sym_LPAREN, + [91407] = 3, + ACTIONS(4312), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144596,8 +147180,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90074] = 3, - ACTIONS(3569), 1, + [91420] = 3, + ACTIONS(3727), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144606,9 +147190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90087] = 3, - ACTIONS(3653), 1, - anon_sym_COMMA, + [91433] = 3, + ACTIONS(4314), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144616,9 +147200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90100] = 3, - ACTIONS(2691), 1, - sym_id, + [91446] = 3, + ACTIONS(4316), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144626,8 +147210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90113] = 3, - ACTIONS(4200), 1, + [91459] = 3, + ACTIONS(4318), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144636,19 +147220,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90126] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4202), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [90139] = 3, - ACTIONS(4204), 1, - anon_sym_in, + [91472] = 3, + ACTIONS(4320), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144656,18 +147230,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90152] = 3, + [91485] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(4206), 1, + ACTIONS(4322), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [90165] = 3, - ACTIONS(4208), 1, + [91498] = 3, + ACTIONS(4324), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144676,8 +147250,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90178] = 3, - ACTIONS(4210), 1, + [91511] = 3, + ACTIONS(4326), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [91524] = 3, + ACTIONS(4328), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144686,8 +147270,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90191] = 3, - ACTIONS(4212), 1, + [91537] = 3, + ACTIONS(4330), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144696,8 +147280,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90204] = 3, - ACTIONS(4214), 1, + [91550] = 3, + ACTIONS(4332), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144706,8 +147290,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90217] = 3, - ACTIONS(4216), 1, + [91563] = 3, + ACTIONS(4334), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144716,9 +147300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90230] = 3, - ACTIONS(4218), 1, - anon_sym_LBRACE, + [91576] = 3, + ACTIONS(3235), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144726,9 +147310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90243] = 3, - ACTIONS(4220), 1, - sym_id, + [91589] = 3, + ACTIONS(1378), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144736,9 +147320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90256] = 3, - ACTIONS(4222), 1, - anon_sym_LPAREN, + [91602] = 3, + ACTIONS(1378), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144746,8 +147330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90269] = 3, - ACTIONS(3583), 1, + [91615] = 3, + ACTIONS(3741), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144756,8 +147340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90282] = 3, - ACTIONS(4224), 1, + [91628] = 3, + ACTIONS(4336), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144766,9 +147350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90295] = 3, - ACTIONS(942), 1, - anon_sym_SEMI, + [91641] = 3, + ACTIONS(4338), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144776,8 +147360,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90308] = 3, - ACTIONS(4226), 1, + [91654] = 3, + ACTIONS(4340), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144786,9 +147370,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90321] = 3, - ACTIONS(4228), 1, - sym_id, + [91667] = 3, + ACTIONS(1398), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144796,8 +147380,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90334] = 3, - ACTIONS(4230), 1, + [91680] = 3, + ACTIONS(4342), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144806,9 +147390,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90347] = 3, - ACTIONS(2707), 1, - anon_sym_SEMI, + [91693] = 3, + ACTIONS(1800), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144816,9 +147400,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90360] = 3, - ACTIONS(2993), 1, - anon_sym_SEMI, + [91706] = 3, + ACTIONS(4344), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144826,8 +147410,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90373] = 3, - ACTIONS(4232), 1, + [91719] = 3, + ACTIONS(4346), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144836,8 +147420,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90386] = 3, - ACTIONS(4234), 1, + [91732] = 3, + ACTIONS(4348), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144846,8 +147430,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90399] = 3, - ACTIONS(4236), 1, + [91745] = 3, + ACTIONS(4350), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144856,8 +147440,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90412] = 3, - ACTIONS(4238), 1, + [91758] = 3, + ACTIONS(4352), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144866,9 +147450,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90425] = 3, - ACTIONS(1718), 1, - anon_sym_RPAREN, + [91771] = 3, + ACTIONS(4354), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144876,9 +147460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90438] = 3, - ACTIONS(3233), 1, - anon_sym_of, + [91784] = 3, + ACTIONS(1440), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144886,8 +147470,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90451] = 3, - ACTIONS(4240), 1, + [91797] = 3, + ACTIONS(4356), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144896,8 +147480,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90464] = 3, - ACTIONS(3595), 1, + [91810] = 3, + ACTIONS(3755), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144906,8 +147490,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90477] = 3, - ACTIONS(4242), 1, + [91823] = 3, + ACTIONS(4358), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144916,18 +147500,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90490] = 3, - ACTIONS(4244), 1, - anon_sym_PLUS_EQ, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + [91836] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4360), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [90503] = 3, - ACTIONS(4246), 1, + sym_zeekygen_next_comment, + sym_minor_comment, + [91849] = 3, + ACTIONS(4362), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144936,9 +147520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90516] = 3, - ACTIONS(3007), 1, - anon_sym_SEMI, + [91862] = 3, + ACTIONS(4364), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144946,8 +147530,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90529] = 3, - ACTIONS(4248), 1, + [91875] = 3, + ACTIONS(4366), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144956,9 +147540,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90542] = 3, - ACTIONS(3011), 1, - anon_sym_SEMI, + [91888] = 3, + ACTIONS(4368), 1, + aux_sym_constant_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144966,9 +147550,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90555] = 3, - ACTIONS(4250), 1, - anon_sym_PLUS_EQ, + [91901] = 3, + ACTIONS(3671), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -144976,8 +147560,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90568] = 3, - ACTIONS(4252), 1, + [91914] = 3, + ACTIONS(4370), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144986,8 +147570,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90581] = 3, - ACTIONS(4254), 1, + [91927] = 3, + ACTIONS(4372), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -144996,8 +147580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90594] = 3, - ACTIONS(4256), 1, + [91940] = 3, + ACTIONS(4374), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145006,8 +147590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90607] = 3, - ACTIONS(4258), 1, + [91953] = 3, + ACTIONS(4376), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145016,19 +147600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90620] = 3, - ACTIONS(984), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [90633] = 3, - ACTIONS(2581), 1, - anon_sym_SEMI, + [91966] = 3, + ACTIONS(4378), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145036,9 +147610,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90646] = 3, - ACTIONS(4260), 1, - sym_id, + [91979] = 3, + ACTIONS(4380), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145046,8 +147620,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90659] = 3, - ACTIONS(3607), 1, + [91992] = 3, + ACTIONS(3767), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145056,9 +147630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90672] = 3, - ACTIONS(4262), 1, - anon_sym_RPAREN, + [92005] = 3, + ACTIONS(1408), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145066,9 +147640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90685] = 3, - ACTIONS(3005), 1, - anon_sym_SEMI, + [92018] = 3, + ACTIONS(4382), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145076,8 +147650,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90698] = 3, - ACTIONS(4264), 1, + [92031] = 3, + ACTIONS(4384), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145086,9 +147660,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90711] = 3, - ACTIONS(984), 1, - anon_sym_SEMI, + [92044] = 3, + ACTIONS(4386), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145096,8 +147670,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90724] = 3, - ACTIONS(4266), 1, + [92057] = 3, + ACTIONS(4388), 1, anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145106,9 +147680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90737] = 3, - ACTIONS(2987), 1, - anon_sym_SEMI, + [92070] = 3, + ACTIONS(2774), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145116,9 +147690,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90750] = 3, - ACTIONS(986), 1, - anon_sym_SEMI, + [92083] = 3, + ACTIONS(4390), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145126,8 +147700,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90763] = 3, - ACTIONS(4268), 1, + [92096] = 3, + ACTIONS(4392), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145136,8 +147710,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90776] = 3, - ACTIONS(4270), 1, + [92109] = 3, + ACTIONS(4394), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145146,8 +147720,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90789] = 3, - ACTIONS(4272), 1, + [92122] = 3, + ACTIONS(4396), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145156,9 +147730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90802] = 3, - ACTIONS(4274), 1, - anon_sym_EQ, + [92135] = 3, + ACTIONS(4398), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145166,9 +147740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90815] = 3, - ACTIONS(2579), 1, - anon_sym_RPAREN, + [92148] = 3, + ACTIONS(4400), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145176,9 +147750,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90828] = 3, - ACTIONS(1496), 1, - anon_sym_of, + [92161] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4402), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [92174] = 3, + ACTIONS(4404), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145186,9 +147770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90841] = 3, - ACTIONS(3619), 1, - anon_sym_in, + [92187] = 3, + ACTIONS(4406), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145196,9 +147780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90854] = 3, - ACTIONS(4276), 1, - anon_sym_of, + [92200] = 3, + ACTIONS(4408), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145206,9 +147790,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90867] = 3, - ACTIONS(3023), 1, - anon_sym_SEMI, + [92213] = 3, + ACTIONS(4410), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145216,9 +147800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90880] = 3, - ACTIONS(4278), 1, - anon_sym_in, + [92226] = 3, + ACTIONS(4412), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145226,9 +147810,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90893] = 3, - ACTIONS(4280), 1, - anon_sym_RPAREN, + [92239] = 3, + ACTIONS(516), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145236,9 +147820,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90906] = 3, - ACTIONS(4282), 1, - anon_sym_in, + [92252] = 3, + ACTIONS(4414), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145246,9 +147830,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90919] = 3, - ACTIONS(3015), 1, - anon_sym_SEMI, + [92265] = 3, + ACTIONS(4416), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145256,8 +147840,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90932] = 3, - ACTIONS(4284), 1, + [92278] = 3, + ACTIONS(3464), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145266,9 +147850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90945] = 3, - ACTIONS(4286), 1, - anon_sym_LPAREN, + [92291] = 3, + ACTIONS(546), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145276,9 +147860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90958] = 3, - ACTIONS(4288), 1, - anon_sym_LPAREN, + [92304] = 3, + ACTIONS(3018), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145286,9 +147870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90971] = 3, - ACTIONS(4290), 1, - anon_sym_LPAREN, + [92317] = 3, + ACTIONS(1450), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145296,9 +147880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90984] = 3, - ACTIONS(4292), 1, - sym_id, + [92330] = 3, + ACTIONS(3020), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145306,9 +147890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [90997] = 3, - ACTIONS(4294), 1, - anon_sym_LPAREN, + [92343] = 3, + ACTIONS(548), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145316,9 +147900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91010] = 3, - ACTIONS(4296), 1, - sym_id, + [92356] = 3, + ACTIONS(3022), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145326,9 +147910,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91023] = 3, - ACTIONS(4298), 1, - sym_id, + [92369] = 3, + ACTIONS(4418), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145336,8 +147920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91036] = 3, - ACTIONS(4300), 1, + [92382] = 3, + ACTIONS(4420), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145346,9 +147930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91049] = 3, - ACTIONS(3017), 1, - anon_sym_SEMI, + [92395] = 3, + ACTIONS(4422), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145356,8 +147940,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91062] = 3, - ACTIONS(4302), 1, + [92408] = 3, + ACTIONS(4424), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145366,9 +147950,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91075] = 3, - ACTIONS(4304), 1, - anon_sym_SEMI, + [92421] = 3, + ACTIONS(1466), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145376,9 +147960,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91088] = 3, - ACTIONS(4306), 1, - anon_sym_SEMI, + [92434] = 3, + ACTIONS(4426), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145386,9 +147970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91101] = 3, - ACTIONS(4308), 1, - anon_sym_SEMI, + [92447] = 3, + ACTIONS(4428), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145396,9 +147980,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91114] = 3, - ACTIONS(2947), 1, - anon_sym_SEMI, + [92460] = 3, + ACTIONS(4430), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145406,9 +147990,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91127] = 3, - ACTIONS(3333), 1, - anon_sym_LPAREN, + [92473] = 3, + ACTIONS(4432), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145416,9 +148000,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91140] = 3, - ACTIONS(4310), 1, - anon_sym_RBRACE, + [92486] = 3, + ACTIONS(4434), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145426,9 +148010,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91153] = 3, - ACTIONS(4312), 1, - anon_sym_const, + [92499] = 3, + ACTIONS(2127), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145436,9 +148020,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91166] = 3, - ACTIONS(3459), 1, - anon_sym_COMMA, + [92512] = 3, + ACTIONS(4436), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145446,9 +148030,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91179] = 3, - ACTIONS(580), 1, - anon_sym_RBRACE, + [92525] = 3, + ACTIONS(2782), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145456,8 +148040,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91192] = 3, - ACTIONS(4314), 1, + [92538] = 3, + ACTIONS(4438), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145466,9 +148050,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91205] = 3, - ACTIONS(548), 1, - anon_sym_RBRACE, + [92551] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4440), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [92564] = 3, + ACTIONS(4442), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145476,9 +148070,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91218] = 3, - ACTIONS(2409), 1, - anon_sym_SEMI, + [92577] = 3, + ACTIONS(2320), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145486,8 +148080,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91231] = 3, - ACTIONS(550), 1, + [92590] = 3, + ACTIONS(4444), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145496,9 +148090,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91244] = 3, - ACTIONS(4316), 1, - anon_sym_EQ, + [92603] = 3, + ACTIONS(4446), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145506,9 +148100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91257] = 3, - ACTIONS(4318), 1, - anon_sym_RPAREN, + [92616] = 3, + ACTIONS(1418), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145516,9 +148110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91270] = 3, - ACTIONS(4320), 1, - anon_sym_PLUS_EQ, + [92629] = 3, + ACTIONS(1762), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145526,9 +148120,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91283] = 3, - ACTIONS(4322), 1, - anon_sym_LPAREN, + [92642] = 3, + ACTIONS(1740), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145536,9 +148130,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91296] = 3, - ACTIONS(4324), 1, - anon_sym_RBRACE, + [92655] = 3, + ACTIONS(4448), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145546,9 +148140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91309] = 3, - ACTIONS(4326), 1, - anon_sym_of, + [92668] = 3, + ACTIONS(4450), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145556,9 +148150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91322] = 3, - ACTIONS(4328), 1, - anon_sym_LBRACK, + [92681] = 3, + ACTIONS(4452), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145566,9 +148160,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91335] = 3, - ACTIONS(2063), 1, - anon_sym_SEMI, + [92694] = 3, + ACTIONS(1881), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145576,9 +148170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91348] = 3, - ACTIONS(4330), 1, - anon_sym_RPAREN, + [92707] = 3, + ACTIONS(510), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145586,9 +148180,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91361] = 3, - ACTIONS(4332), 1, - anon_sym_LBRACE, + [92720] = 3, + ACTIONS(4454), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145596,9 +148190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91374] = 3, - ACTIONS(3410), 1, - anon_sym_COMMA, + [92733] = 3, + ACTIONS(4456), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145606,19 +148200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91387] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4334), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [91400] = 3, - ACTIONS(4336), 1, - sym_id, + [92746] = 3, + ACTIONS(4458), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145626,19 +148210,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91413] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4338), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [91426] = 3, - ACTIONS(4340), 1, - sym_id, + [92759] = 3, + ACTIONS(3076), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145646,8 +148220,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91439] = 3, - ACTIONS(964), 1, + [92772] = 3, + ACTIONS(518), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145656,8 +148230,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91452] = 3, - ACTIONS(789), 1, + [92785] = 3, + ACTIONS(4460), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145666,9 +148240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91465] = 3, - ACTIONS(4342), 1, - anon_sym_LPAREN, + [92798] = 3, + ACTIONS(1362), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145676,8 +148250,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91478] = 3, - ACTIONS(789), 1, + [92811] = 3, + ACTIONS(1362), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145686,8 +148260,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91491] = 3, - ACTIONS(964), 1, + [92824] = 3, + ACTIONS(1246), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145696,9 +148270,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91504] = 3, - ACTIONS(1821), 1, - anon_sym_RPAREN, + [92837] = 3, + ACTIONS(3044), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145706,9 +148280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91517] = 3, - ACTIONS(4344), 1, - sym_id, + [92850] = 3, + ACTIONS(2087), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145716,9 +148290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91530] = 3, - ACTIONS(4346), 1, - anon_sym_RBRACK, + [92863] = 3, + ACTIONS(2518), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145726,9 +148300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91543] = 3, - ACTIONS(1424), 1, - anon_sym_RPAREN, + [92876] = 3, + ACTIONS(1396), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145736,9 +148310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91556] = 3, - ACTIONS(4348), 1, - sym_id, + [92889] = 3, + ACTIONS(1410), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145746,9 +148320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91569] = 3, - ACTIONS(4350), 1, - sym_id, + [92902] = 3, + ACTIONS(1406), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145756,9 +148330,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91582] = 3, - ACTIONS(4352), 1, - anon_sym_COLON, + [92915] = 3, + ACTIONS(4462), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145766,18 +148340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91595] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4354), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [91608] = 3, - ACTIONS(966), 1, + [92928] = 3, + ACTIONS(1424), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145786,9 +148350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91621] = 3, - ACTIONS(4356), 1, - sym_id, + [92941] = 3, + ACTIONS(3032), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145796,9 +148360,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91634] = 3, - ACTIONS(4358), 1, - anon_sym_LPAREN, + [92954] = 3, + ACTIONS(4464), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145806,8 +148370,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91647] = 3, - ACTIONS(4360), 1, + [92967] = 3, + ACTIONS(1442), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145816,9 +148380,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91660] = 3, - ACTIONS(2755), 1, - anon_sym_SEMI, + [92980] = 3, + ACTIONS(4466), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145826,8 +148390,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91673] = 3, - ACTIONS(4362), 1, + [92993] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4468), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [93006] = 3, + ACTIONS(1442), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145836,8 +148410,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91686] = 3, - ACTIONS(1734), 1, + [93019] = 3, + ACTIONS(1843), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145846,9 +148420,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91699] = 3, - ACTIONS(658), 1, - anon_sym_RBRACE, + [93032] = 3, + ACTIONS(4470), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145856,9 +148430,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91712] = 3, - ACTIONS(2941), 1, - anon_sym_SEMI, + [93045] = 3, + ACTIONS(3518), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145866,9 +148440,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91725] = 3, - ACTIONS(3035), 1, - anon_sym_SEMI, + [93058] = 3, + ACTIONS(4472), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145876,9 +148450,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91738] = 3, - ACTIONS(3049), 1, - anon_sym_SEMI, + [93071] = 3, + ACTIONS(4474), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145886,9 +148460,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91751] = 3, - ACTIONS(988), 1, - anon_sym_RBRACE, + [93084] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4476), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [93097] = 3, + ACTIONS(4478), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145896,9 +148480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91764] = 3, - ACTIONS(4364), 1, - anon_sym_COLON, + [93110] = 3, + ACTIONS(4480), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145906,9 +148490,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91777] = 3, - ACTIONS(988), 1, - anon_sym_SEMI, + [93123] = 3, + ACTIONS(3323), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145916,9 +148500,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91790] = 3, - ACTIONS(4366), 1, - anon_sym_SEMI, + [93136] = 3, + ACTIONS(522), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145926,8 +148510,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91803] = 3, - ACTIONS(990), 1, + [93149] = 3, + ACTIONS(3056), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145936,9 +148520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91816] = 3, - ACTIONS(946), 1, - anon_sym_SEMI, + [93162] = 3, + ACTIONS(4482), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145946,9 +148530,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91829] = 3, - ACTIONS(658), 1, - anon_sym_SEMI, + [93175] = 3, + ACTIONS(4484), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -145956,8 +148540,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91842] = 3, - ACTIONS(3043), 1, + [93188] = 3, + ACTIONS(1416), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145966,8 +148550,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91855] = 3, - ACTIONS(948), 1, + [93201] = 3, + ACTIONS(2099), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145976,8 +148560,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91868] = 3, - ACTIONS(3045), 1, + [93214] = 3, + ACTIONS(2568), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145986,8 +148570,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91881] = 3, - ACTIONS(4368), 1, + [93227] = 3, + ACTIONS(3050), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -145996,8 +148580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91894] = 3, - ACTIONS(4370), 1, + [93240] = 3, + ACTIONS(3058), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146006,9 +148590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91907] = 3, - ACTIONS(4372), 1, - sym_id, + [93253] = 3, + ACTIONS(1758), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146016,8 +148600,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91920] = 3, - ACTIONS(950), 1, + [93266] = 3, + ACTIONS(3064), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146026,9 +148610,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91933] = 3, - ACTIONS(4374), 1, - sym_id, + [93279] = 3, + ACTIONS(524), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146036,9 +148620,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91946] = 3, - ACTIONS(944), 1, - anon_sym_RBRACE, + [93292] = 3, + ACTIONS(3066), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146046,9 +148630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91959] = 3, - ACTIONS(952), 1, - anon_sym_RBRACE, + [93305] = 3, + ACTIONS(4486), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146056,9 +148640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91972] = 3, - ACTIONS(556), 1, - anon_sym_RBRACE, + [93318] = 3, + ACTIONS(4488), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146066,19 +148650,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [91985] = 3, - ACTIONS(4376), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + [93331] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4490), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [91998] = 3, - ACTIONS(478), 1, - anon_sym_RBRACE, + sym_zeekygen_next_comment, + sym_minor_comment, + [93344] = 3, + ACTIONS(4492), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146086,9 +148670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92011] = 3, - ACTIONS(4378), 1, - anon_sym_in, + [93357] = 3, + ACTIONS(3008), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146096,9 +148680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92024] = 3, - ACTIONS(4380), 1, - anon_sym_RBRACE, + [93370] = 3, + ACTIONS(3068), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146106,9 +148690,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92037] = 3, - ACTIONS(952), 1, - anon_sym_SEMI, + [93383] = 3, + ACTIONS(4494), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146116,9 +148700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92050] = 3, - ACTIONS(2075), 1, - anon_sym_SEMI, + [93396] = 3, + ACTIONS(4496), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146126,9 +148710,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92063] = 3, - ACTIONS(1572), 1, - anon_sym_LPAREN, + [93409] = 3, + ACTIONS(1444), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146136,9 +148720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92076] = 3, - ACTIONS(4382), 1, - sym_id, + [93422] = 3, + ACTIONS(4498), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146146,19 +148730,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92089] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4384), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [92102] = 3, - ACTIONS(4386), 1, - sym_id, + [93435] = 3, + ACTIONS(3470), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146166,9 +148740,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92115] = 3, - ACTIONS(4388), 1, - sym_id, + [93448] = 3, + ACTIONS(4500), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146176,9 +148750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92128] = 3, - ACTIONS(813), 1, - anon_sym_RBRACE, + [93461] = 3, + ACTIONS(1444), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146186,9 +148760,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92141] = 3, - ACTIONS(813), 1, - anon_sym_SEMI, + [93474] = 3, + ACTIONS(4502), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146196,9 +148770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92154] = 3, - ACTIONS(4390), 1, - sym_id, + [93487] = 3, + ACTIONS(4504), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146206,9 +148780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92167] = 3, - ACTIONS(4392), 1, - anon_sym_RBRACE, + [93500] = 3, + ACTIONS(4506), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146216,8 +148790,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92180] = 3, - ACTIONS(2971), 1, + [93513] = 3, + ACTIONS(1446), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146226,9 +148800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92193] = 3, - ACTIONS(4394), 1, - anon_sym_RBRACE, + [93526] = 3, + ACTIONS(4508), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146236,19 +148810,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92206] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4396), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [92219] = 3, - ACTIONS(2973), 1, - anon_sym_SEMI, + [93539] = 3, + ACTIONS(3478), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146256,9 +148820,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92232] = 3, - ACTIONS(4398), 1, - anon_sym_EQ, + [93552] = 3, + ACTIONS(3028), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146266,9 +148830,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92245] = 3, - ACTIONS(4400), 1, - anon_sym_RPAREN, + [93565] = 3, + ACTIONS(1310), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146276,9 +148840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92258] = 3, - ACTIONS(4402), 1, - sym_id, + [93578] = 3, + ACTIONS(3034), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146286,9 +148850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92271] = 3, - ACTIONS(3354), 1, - anon_sym_of, + [93591] = 3, + ACTIONS(4510), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146296,9 +148860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92284] = 3, - ACTIONS(3261), 1, - sym_id, + [93604] = 3, + ACTIONS(4512), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146306,9 +148870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92297] = 3, - ACTIONS(4404), 1, - sym_id, + [93617] = 3, + ACTIONS(1310), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146316,9 +148880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92310] = 3, - ACTIONS(4406), 1, - anon_sym_of, + [93630] = 3, + ACTIONS(3062), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146326,9 +148890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92323] = 3, - ACTIONS(4408), 1, - anon_sym_of, + [93643] = 3, + ACTIONS(4514), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146336,9 +148900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92336] = 3, - ACTIONS(2685), 1, - anon_sym_SEMI, + [93656] = 3, + ACTIONS(3373), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146346,8 +148910,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92349] = 3, - ACTIONS(2989), 1, + [93669] = 3, + ACTIONS(3082), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146356,8 +148920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92362] = 3, - ACTIONS(1716), 1, + [93682] = 3, + ACTIONS(3373), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146366,9 +148930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92375] = 3, - ACTIONS(4410), 1, - anon_sym_SEMI, + [93695] = 3, + ACTIONS(2358), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146376,9 +148940,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92388] = 3, - ACTIONS(954), 1, - anon_sym_SEMI, + [93708] = 3, + ACTIONS(4516), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146386,9 +148950,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92401] = 3, - ACTIONS(2963), 1, - anon_sym_SEMI, + [93721] = 3, + ACTIONS(4518), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146396,9 +148960,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92414] = 3, - ACTIONS(4412), 1, - anon_sym_of, + [93734] = 3, + ACTIONS(4520), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146406,9 +148970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92427] = 3, - ACTIONS(992), 1, - anon_sym_RBRACE, + [93747] = 3, + ACTIONS(4522), 1, + anon_sym_const, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146416,8 +148980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92440] = 3, - ACTIONS(2953), 1, + [93760] = 3, + ACTIONS(1404), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146426,9 +148990,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92453] = 3, - ACTIONS(992), 1, - anon_sym_SEMI, + [93773] = 3, + ACTIONS(4524), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146436,8 +149000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92466] = 3, - ACTIONS(4414), 1, + [93786] = 3, + ACTIONS(3092), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146446,8 +149010,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92479] = 3, - ACTIONS(994), 1, + [93799] = 3, + ACTIONS(4526), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146456,8 +149020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92492] = 3, - ACTIONS(2961), 1, + [93812] = 3, + ACTIONS(4528), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146466,8 +149030,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92505] = 3, - ACTIONS(1478), 1, + [93825] = 3, + ACTIONS(4530), 1, anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146476,8 +149040,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92518] = 3, - ACTIONS(2981), 1, + [93838] = 3, + ACTIONS(4532), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146486,8 +149050,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92531] = 3, - ACTIONS(4416), 1, + [93851] = 3, + ACTIONS(4534), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146496,9 +149060,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92544] = 3, - ACTIONS(528), 1, - anon_sym_RBRACE, + [93864] = 3, + ACTIONS(4536), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146506,9 +149070,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92557] = 3, - ACTIONS(2999), 1, - anon_sym_SEMI, + [93877] = 3, + ACTIONS(4538), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146516,9 +149080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92570] = 3, - ACTIONS(2985), 1, - anon_sym_SEMI, + [93890] = 3, + ACTIONS(4540), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146526,8 +149090,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92583] = 3, - ACTIONS(4418), 1, + [93903] = 3, + ACTIONS(3012), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146536,8 +149100,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92596] = 3, - ACTIONS(4420), 1, + [93916] = 3, + ACTIONS(2141), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146546,9 +149110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92609] = 3, - ACTIONS(4422), 1, - anon_sym_SEMI, + [93929] = 3, + ACTIONS(3405), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146556,9 +149120,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92622] = 3, - ACTIONS(4424), 1, - sym_id, + [93942] = 3, + ACTIONS(4542), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146566,9 +149130,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92635] = 3, - ACTIONS(4426), 1, - anon_sym_EQ, + [93955] = 3, + ACTIONS(4544), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146576,9 +149140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92648] = 3, - ACTIONS(2039), 1, - anon_sym_RBRACE, + [93968] = 3, + ACTIONS(4546), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146586,9 +149150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92661] = 3, - ACTIONS(4428), 1, - anon_sym_type, + [93981] = 3, + ACTIONS(4548), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146596,8 +149160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92674] = 3, - ACTIONS(568), 1, + [93994] = 3, + ACTIONS(552), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146606,9 +149170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92687] = 3, - ACTIONS(3013), 1, - anon_sym_SEMI, + [94007] = 3, + ACTIONS(4550), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146616,9 +149180,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92700] = 3, - ACTIONS(570), 1, - anon_sym_RBRACE, + [94020] = 3, + ACTIONS(4552), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146626,9 +149190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92713] = 3, - ACTIONS(4430), 1, - anon_sym_LPAREN, + [94033] = 3, + ACTIONS(4554), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146636,9 +149200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92726] = 3, - ACTIONS(4432), 1, - anon_sym_of, + [94046] = 3, + ACTIONS(4556), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146646,9 +149210,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92739] = 3, - ACTIONS(2453), 1, - anon_sym_SEMI, + [94059] = 3, + ACTIONS(4558), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146656,18 +149220,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92752] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4434), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [92765] = 3, - ACTIONS(3358), 1, + [94072] = 3, + ACTIONS(4560), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146676,9 +149230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92778] = 3, - ACTIONS(4436), 1, - anon_sym_LPAREN, + [94085] = 3, + ACTIONS(3042), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146686,9 +149240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92791] = 3, - ACTIONS(4438), 1, - anon_sym_LBRACK, + [94098] = 3, + ACTIONS(4562), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146696,9 +149250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92804] = 3, - ACTIONS(3683), 1, - anon_sym_in, + [94111] = 3, + ACTIONS(4564), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146706,9 +149260,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92817] = 3, - ACTIONS(4440), 1, - sym_id, + [94124] = 3, + ACTIONS(3409), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146716,8 +149270,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92830] = 3, - ACTIONS(4442), 1, + [94137] = 3, + ACTIONS(4566), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146726,9 +149280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92843] = 3, - ACTIONS(498), 1, - anon_sym_RBRACE, + [94150] = 3, + ACTIONS(4568), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146736,9 +149290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92856] = 3, - ACTIONS(4444), 1, - anon_sym_RBRACE, + [94163] = 3, + ACTIONS(3084), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146746,8 +149300,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92869] = 3, - ACTIONS(4446), 1, + [94176] = 3, + ACTIONS(4570), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146756,8 +149310,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92882] = 3, - ACTIONS(4448), 1, + [94189] = 3, + ACTIONS(4572), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [94202] = 3, + ACTIONS(4574), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146766,9 +149330,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92895] = 3, - ACTIONS(3323), 1, - anon_sym_RBRACE, + [94215] = 3, + ACTIONS(4576), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146776,8 +149340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92908] = 3, - ACTIONS(4450), 1, + [94228] = 3, + ACTIONS(4578), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146786,9 +149350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92921] = 3, - ACTIONS(1598), 1, - anon_sym_EQ, + [94241] = 3, + ACTIONS(558), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146796,8 +149360,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92934] = 3, - ACTIONS(500), 1, + [94254] = 3, + ACTIONS(1438), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146806,9 +149370,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92947] = 3, - ACTIONS(4452), 1, - anon_sym_RBRACK, + [94267] = 3, + ACTIONS(4580), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146816,8 +149380,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92960] = 3, - ACTIONS(3362), 1, + [94280] = 3, + ACTIONS(3413), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146826,8 +149390,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92973] = 3, - ACTIONS(4454), 1, + [94293] = 3, + ACTIONS(4582), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146836,8 +149400,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92986] = 3, - ACTIONS(4456), 1, + [94306] = 3, + ACTIONS(4584), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146846,9 +149410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [92999] = 3, - ACTIONS(4458), 1, - anon_sym_RBRACE, + [94319] = 3, + ACTIONS(4586), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146856,8 +149420,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93012] = 3, - ACTIONS(4460), 1, + [94332] = 3, + ACTIONS(4588), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146866,9 +149430,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93025] = 3, - ACTIONS(4462), 1, - anon_sym_LBRACE, + [94345] = 3, + ACTIONS(4590), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146876,8 +149440,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93038] = 3, - ACTIONS(4464), 1, + [94358] = 3, + ACTIONS(4592), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146886,8 +149450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93051] = 3, - ACTIONS(4466), 1, + [94371] = 3, + ACTIONS(4594), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146896,8 +149460,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93064] = 3, - ACTIONS(4468), 1, + [94384] = 3, + ACTIONS(4596), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146906,9 +149470,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93077] = 3, - ACTIONS(2099), 1, - anon_sym_SEMI, + [94397] = 3, + ACTIONS(4598), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146916,9 +149480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93090] = 3, - ACTIONS(4470), 1, - sym_id, + [94410] = 3, + ACTIONS(1438), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146926,9 +149490,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93103] = 3, - ACTIONS(4472), 1, - anon_sym_LBRACE, + [94423] = 3, + ACTIONS(4600), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146936,8 +149500,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93116] = 3, - ACTIONS(3370), 1, + [94436] = 3, + ACTIONS(3417), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146946,8 +149510,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93129] = 3, - ACTIONS(4474), 1, + [94449] = 3, + ACTIONS(4602), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146956,8 +149520,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93142] = 3, - ACTIONS(4476), 1, + [94462] = 3, + ACTIONS(4604), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146966,8 +149530,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93155] = 3, - ACTIONS(2529), 1, + [94475] = 3, + ACTIONS(4606), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146976,8 +149540,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93168] = 3, - ACTIONS(4478), 1, + [94488] = 3, + ACTIONS(4608), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -146986,9 +149550,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93181] = 3, - ACTIONS(4480), 1, - sym_id, + [94501] = 3, + ACTIONS(4610), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -146996,8 +149560,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93194] = 3, - ACTIONS(4482), 1, + [94514] = 3, + ACTIONS(4612), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147006,8 +149570,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93207] = 3, - ACTIONS(4484), 1, + [94527] = 3, + ACTIONS(4614), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147016,8 +149580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93220] = 3, - ACTIONS(4486), 1, + [94540] = 3, + ACTIONS(4616), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147026,9 +149590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93233] = 3, - ACTIONS(4488), 1, - sym_id, + [94553] = 3, + ACTIONS(3313), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147036,8 +149600,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93246] = 3, - ACTIONS(3053), 1, + [94566] = 3, + ACTIONS(1388), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147046,19 +149610,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93259] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4490), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [93272] = 3, - ACTIONS(3374), 1, - anon_sym_LPAREN, + [94579] = 3, + ACTIONS(3078), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147066,8 +149620,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93285] = 3, - ACTIONS(4492), 1, + [94592] = 3, + ACTIONS(3421), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147076,9 +149630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93298] = 3, - ACTIONS(4494), 1, - anon_sym_LBRACK, + [94605] = 3, + ACTIONS(4618), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147086,9 +149640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93311] = 3, - ACTIONS(4496), 1, - sym_id, + [94618] = 3, + ACTIONS(4620), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147096,8 +149650,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93324] = 3, - ACTIONS(4498), 1, + [94631] = 3, + ACTIONS(4622), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147106,8 +149660,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93337] = 3, - ACTIONS(4500), 1, + [94644] = 3, + ACTIONS(4624), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147116,8 +149670,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93350] = 3, - ACTIONS(4502), 1, + [94657] = 3, + ACTIONS(4626), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147126,8 +149680,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93363] = 3, - ACTIONS(4504), 1, + [94670] = 3, + ACTIONS(4628), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147136,8 +149690,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93376] = 3, - ACTIONS(4506), 1, + [94683] = 3, + ACTIONS(4630), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147146,9 +149700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93389] = 3, - ACTIONS(4508), 1, - anon_sym_LPAREN, + [94696] = 3, + ACTIONS(4632), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147156,8 +149710,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93402] = 3, - ACTIONS(805), 1, + [94709] = 3, + ACTIONS(1426), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147166,9 +149720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93415] = 3, - ACTIONS(805), 1, - anon_sym_SEMI, + [94722] = 3, + ACTIONS(4634), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147176,8 +149730,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93428] = 3, - ACTIONS(3378), 1, + [94735] = 3, + ACTIONS(3425), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147186,8 +149740,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93441] = 3, - ACTIONS(4510), 1, + [94748] = 3, + ACTIONS(4636), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147196,9 +149750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93454] = 3, - ACTIONS(4512), 1, - anon_sym_LPAREN, + [94761] = 3, + ACTIONS(4638), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147206,8 +149760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93467] = 3, - ACTIONS(4514), 1, + [94774] = 3, + ACTIONS(4640), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147216,9 +149770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93480] = 3, - ACTIONS(3418), 1, - anon_sym_COMMA, + [94787] = 3, + ACTIONS(1426), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147226,8 +149780,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93493] = 3, - ACTIONS(4516), 1, + [94800] = 3, + ACTIONS(4642), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147236,8 +149790,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93506] = 3, - ACTIONS(4518), 1, + [94813] = 3, + ACTIONS(4644), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147246,8 +149800,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93519] = 3, - ACTIONS(4520), 1, + [94826] = 3, + ACTIONS(4646), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147256,19 +149810,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93532] = 3, - ACTIONS(4522), 1, - ts_builtin_sym_end, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + [94839] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4648), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [93545] = 3, - ACTIONS(4524), 1, - anon_sym_RPAREN, + sym_zeekygen_next_comment, + sym_minor_comment, + [94852] = 3, + ACTIONS(4650), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147276,8 +149830,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93558] = 3, - ACTIONS(4526), 1, + [94865] = 3, + ACTIONS(4652), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147286,8 +149840,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93571] = 3, - ACTIONS(3384), 1, + [94878] = 3, + ACTIONS(3476), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147296,8 +149850,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93584] = 3, - ACTIONS(4528), 1, + [94891] = 3, + ACTIONS(4654), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147306,18 +149860,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93597] = 3, + [94904] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(4530), 1, + ACTIONS(4656), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [93610] = 3, - ACTIONS(4532), 1, + [94917] = 3, + ACTIONS(4658), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147326,9 +149880,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93623] = 3, - ACTIONS(4534), 1, - anon_sym_LBRACK, + [94930] = 3, + ACTIONS(1392), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147336,8 +149890,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93636] = 3, - ACTIONS(4536), 1, + [94943] = 3, + ACTIONS(4660), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147346,8 +149900,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93649] = 3, - ACTIONS(4538), 1, + [94956] = 3, + ACTIONS(4662), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147356,8 +149910,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93662] = 3, - ACTIONS(4540), 1, + [94969] = 3, + ACTIONS(4664), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147366,9 +149920,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93675] = 3, - ACTIONS(1863), 1, - anon_sym_RPAREN, + [94982] = 3, + ACTIONS(2426), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147376,9 +149930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93688] = 3, - ACTIONS(4542), 1, - anon_sym_LBRACK, + [94995] = 3, + ACTIONS(3080), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147386,9 +149940,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93701] = 3, - ACTIONS(4544), 1, - anon_sym_LBRACE, + [95008] = 3, + ACTIONS(4666), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147396,8 +149950,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93714] = 3, - ACTIONS(3388), 1, + [95021] = 3, + ACTIONS(3437), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147406,8 +149960,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93727] = 3, - ACTIONS(4546), 1, + [95034] = 3, + ACTIONS(4668), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147416,9 +149970,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93740] = 3, - ACTIONS(2623), 1, - anon_sym_SEMI, + [95047] = 3, + ACTIONS(3633), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147426,8 +149980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93753] = 3, - ACTIONS(4548), 1, + [95060] = 3, + ACTIONS(4670), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147436,8 +149990,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93766] = 3, - ACTIONS(4550), 1, + [95073] = 3, + ACTIONS(4672), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147446,8 +150000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93779] = 3, - ACTIONS(4552), 1, + [95086] = 3, + ACTIONS(4674), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147456,8 +150010,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93792] = 3, - ACTIONS(4554), 1, + [95099] = 3, + ACTIONS(4676), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147466,8 +150020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93805] = 3, - ACTIONS(4556), 1, + [95112] = 3, + ACTIONS(4678), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147476,9 +150030,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93818] = 3, - ACTIONS(4558), 1, - anon_sym_RPAREN, + [95125] = 3, + ACTIONS(1420), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147486,9 +150040,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93831] = 3, - ACTIONS(2265), 1, - anon_sym_of, + [95138] = 3, + ACTIONS(564), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147496,9 +150050,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93844] = 3, - ACTIONS(4560), 1, - sym_id, + [95151] = 3, + ACTIONS(560), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147506,8 +150060,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93857] = 3, - ACTIONS(3392), 1, + [95164] = 3, + ACTIONS(3441), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147516,8 +150070,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93870] = 3, - ACTIONS(4562), 1, + [95177] = 3, + ACTIONS(4680), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147526,9 +150080,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93883] = 3, - ACTIONS(4564), 1, - anon_sym_SEMI, + [95190] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4682), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [95203] = 3, + ACTIONS(4684), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147536,9 +150100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93896] = 3, - ACTIONS(4566), 1, - sym_id, + [95216] = 3, + ACTIONS(3122), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147546,9 +150110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93909] = 3, - ACTIONS(1662), 1, - anon_sym_RPAREN, + [95229] = 3, + ACTIONS(4686), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147556,8 +150120,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93922] = 3, - ACTIONS(4568), 1, + [95242] = 3, + ACTIONS(4688), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147566,9 +150130,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93935] = 3, - ACTIONS(4570), 1, - sym_id, + [95255] = 3, + ACTIONS(4690), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147576,9 +150140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93948] = 3, - ACTIONS(4572), 1, - anon_sym_LPAREN, + [95268] = 3, + ACTIONS(4692), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147586,9 +150150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93961] = 3, - ACTIONS(1758), 1, - anon_sym_RPAREN, + [95281] = 3, + ACTIONS(4694), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147596,9 +150160,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93974] = 3, - ACTIONS(3443), 1, - anon_sym_of, + [95294] = 3, + ACTIONS(492), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147606,8 +150170,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [93987] = 3, - ACTIONS(4574), 1, + [95307] = 3, + ACTIONS(4696), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147616,9 +150180,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94000] = 3, - ACTIONS(3396), 1, - anon_sym_LPAREN, + [95320] = 3, + ACTIONS(4698), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147626,8 +150190,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94013] = 3, - ACTIONS(4576), 1, + [95333] = 3, + ACTIONS(4700), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147636,9 +150200,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94026] = 3, - ACTIONS(4578), 1, - anon_sym_SEMI, + [95346] = 3, + ACTIONS(4702), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147646,9 +150210,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94039] = 3, - ACTIONS(4580), 1, - sym_id, + [95359] = 3, + ACTIONS(4704), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147656,9 +150220,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94052] = 3, - ACTIONS(4582), 1, - anon_sym_LPAREN, + [95372] = 3, + ACTIONS(3026), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147666,9 +150230,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94065] = 3, - ACTIONS(4584), 1, - sym_id, + [95385] = 3, + ACTIONS(554), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147676,9 +150240,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94078] = 3, - ACTIONS(4586), 1, - sym_id, + [95398] = 3, + ACTIONS(3098), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147686,9 +150250,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94091] = 3, - ACTIONS(2299), 1, - anon_sym_of, + [95411] = 3, + ACTIONS(1322), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147696,9 +150260,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94104] = 3, - ACTIONS(3047), 1, - anon_sym_SEMI, + [95424] = 3, + ACTIONS(4706), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147706,9 +150270,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94117] = 3, - ACTIONS(4588), 1, - sym_id, + [95437] = 3, + ACTIONS(4708), 1, + anon_sym_PLUS_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147716,9 +150280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94130] = 3, - ACTIONS(4590), 1, - anon_sym_RBRACE, + [95450] = 3, + ACTIONS(4710), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147726,9 +150290,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94143] = 3, - ACTIONS(4592), 1, - sym_id, + [95463] = 3, + ACTIONS(4712), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147736,9 +150300,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94156] = 3, - ACTIONS(4594), 1, - sym_id, + [95476] = 3, + ACTIONS(4714), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147746,9 +150310,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94169] = 3, - ACTIONS(4596), 1, - anon_sym_LPAREN, + [95489] = 3, + ACTIONS(4716), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147756,9 +150320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94182] = 3, - ACTIONS(4598), 1, - anon_sym_LPAREN, + [95502] = 3, + ACTIONS(4718), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147766,9 +150330,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94195] = 3, - ACTIONS(2087), 1, - anon_sym_SEMI, + [95515] = 3, + ACTIONS(4720), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147776,8 +150340,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94208] = 3, - ACTIONS(968), 1, + [95528] = 3, + ACTIONS(4722), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147786,9 +150350,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94221] = 3, - ACTIONS(4600), 1, - sym_id, + [95541] = 3, + ACTIONS(4724), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147796,9 +150360,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94234] = 3, - ACTIONS(3323), 1, - anon_sym_RPAREN, + [95554] = 3, + ACTIONS(4726), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147806,19 +150370,29 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94247] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4602), 1, - sym_file, - ACTIONS(5), 4, + [95567] = 3, + ACTIONS(3104), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_zeekygen_next_comment, + sym_minor_comment, + ACTIONS(3), 3, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, + sym_nl, + [95580] = 3, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - [94260] = 3, - ACTIONS(4604), 1, - anon_sym_in, + ACTIONS(3), 3, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_nl, + [95593] = 3, + ACTIONS(2131), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147826,9 +150400,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94273] = 3, - ACTIONS(4606), 1, - anon_sym_PLUS_EQ, + [95606] = 3, + ACTIONS(4730), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147836,9 +150410,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94286] = 3, - ACTIONS(4608), 1, - anon_sym_EQ, + [95619] = 3, + ACTIONS(1322), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147846,9 +150420,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94299] = 3, - ACTIONS(3263), 1, - anon_sym_RBRACE, + [95632] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4732), 1, + sym_file, + ACTIONS(5), 4, + sym_zeekygen_head_comment, + sym_zeekygen_prev_comment, + sym_zeekygen_next_comment, + sym_minor_comment, + [95645] = 3, + ACTIONS(4734), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147856,9 +150440,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94312] = 3, - ACTIONS(4610), 1, - sym_id, + [95658] = 3, + ACTIONS(4736), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147866,9 +150450,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94325] = 3, - ACTIONS(4612), 1, - anon_sym_RPAREN, + [95671] = 3, + ACTIONS(4738), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147876,9 +150460,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94338] = 3, - ACTIONS(4614), 1, - anon_sym_LBRACK, + [95684] = 3, + ACTIONS(4740), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147886,9 +150470,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94351] = 3, - ACTIONS(968), 1, - anon_sym_SEMI, + [95697] = 3, + ACTIONS(1668), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147896,9 +150480,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94364] = 3, - ACTIONS(4616), 1, - sym_id, + [95710] = 3, + ACTIONS(4742), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147906,8 +150490,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94377] = 3, - ACTIONS(841), 1, + [95723] = 3, + ACTIONS(1370), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147916,8 +150500,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94390] = 3, - ACTIONS(841), 1, + [95736] = 3, + ACTIONS(4744), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147926,8 +150510,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94403] = 3, - ACTIONS(4618), 1, + [95749] = 3, + ACTIONS(498), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147936,9 +150520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94416] = 3, - ACTIONS(4620), 1, - sym_id, + [95762] = 3, + ACTIONS(1370), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147946,9 +150530,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94429] = 3, - ACTIONS(956), 1, - anon_sym_SEMI, + [95775] = 3, + ACTIONS(500), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147956,9 +150540,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94442] = 3, - ACTIONS(970), 1, - anon_sym_SEMI, + [95788] = 3, + ACTIONS(4746), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147966,18 +150550,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94455] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4622), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [94468] = 3, - ACTIONS(4624), 1, + [95801] = 3, + ACTIONS(4748), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -147986,9 +150560,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94481] = 3, - ACTIONS(4626), 1, - anon_sym_COLON, + [95814] = 3, + ACTIONS(3014), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -147996,8 +150570,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94494] = 3, - ACTIONS(3031), 1, + [95827] = 3, + ACTIONS(4750), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148006,8 +150580,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94507] = 3, - ACTIONS(4628), 1, + [95840] = 3, + ACTIONS(2107), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148016,9 +150590,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94520] = 3, - ACTIONS(2613), 1, - anon_sym_SEMI, + [95853] = 3, + ACTIONS(4752), 1, + anon_sym_in, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148026,9 +150600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94533] = 3, - ACTIONS(4630), 1, - anon_sym_SEMI, + [95866] = 3, + ACTIONS(4754), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148036,8 +150610,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94546] = 3, - ACTIONS(1646), 1, + [95879] = 3, + ACTIONS(4756), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148046,18 +150620,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94559] = 3, - ACTIONS(3), 1, - sym_nl, - ACTIONS(4632), 1, - sym_file, - ACTIONS(5), 4, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_zeekygen_next_comment, - sym_minor_comment, - [94572] = 3, - ACTIONS(4634), 1, + [95892] = 3, + ACTIONS(2582), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148066,9 +150630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94585] = 3, - ACTIONS(3009), 1, - anon_sym_SEMI, + [95905] = 3, + ACTIONS(4758), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148076,9 +150640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94598] = 3, - ACTIONS(996), 1, - anon_sym_RBRACE, + [95918] = 3, + ACTIONS(4760), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148086,8 +150650,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94611] = 3, - ACTIONS(4636), 1, + [95931] = 3, + ACTIONS(4762), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148096,9 +150660,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94624] = 3, - ACTIONS(996), 1, - anon_sym_SEMI, + [95944] = 3, + ACTIONS(4764), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148106,9 +150670,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94637] = 3, - ACTIONS(4638), 1, - anon_sym_SEMI, + [95957] = 3, + ACTIONS(4766), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148116,8 +150680,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94650] = 3, - ACTIONS(998), 1, + [95970] = 3, + ACTIONS(4768), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148126,9 +150690,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94663] = 3, - ACTIONS(4640), 1, - anon_sym_of, + [95983] = 3, + ACTIONS(4770), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148136,9 +150700,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94676] = 3, - ACTIONS(4642), 1, - anon_sym_in, + [95996] = 3, + ACTIONS(4772), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148146,9 +150710,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94689] = 3, - ACTIONS(4644), 1, - anon_sym_EQ, + [96009] = 3, + ACTIONS(4774), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148156,9 +150720,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94702] = 3, - ACTIONS(4646), 1, - anon_sym_RPAREN, + [96022] = 3, + ACTIONS(4776), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148166,8 +150730,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94715] = 3, - ACTIONS(4648), 1, + [96035] = 3, + ACTIONS(4778), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148176,8 +150740,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94728] = 3, - ACTIONS(4650), 1, + [96048] = 3, + ACTIONS(4780), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148186,9 +150750,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94741] = 3, - ACTIONS(4652), 1, - sym_id, + [96061] = 3, + ACTIONS(4782), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148196,8 +150760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94754] = 3, - ACTIONS(4654), 1, + [96074] = 3, + ACTIONS(4784), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148206,9 +150770,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94767] = 3, - ACTIONS(3021), 1, - anon_sym_SEMI, + [96087] = 3, + ACTIONS(4786), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148216,9 +150780,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94780] = 3, - ACTIONS(4656), 1, - anon_sym_LPAREN, + [96100] = 3, + ACTIONS(1434), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148226,8 +150790,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94793] = 3, - ACTIONS(4658), 1, + [96113] = 3, + ACTIONS(4788), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148236,9 +150800,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94806] = 3, - ACTIONS(4660), 1, - anon_sym_LBRACK, + [96126] = 3, + ACTIONS(4790), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148246,8 +150810,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94819] = 3, - ACTIONS(2977), 1, + [96139] = 3, + ACTIONS(2500), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148256,9 +150820,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94832] = 3, - ACTIONS(4662), 1, - anon_sym_LPAREN, + [96152] = 3, + ACTIONS(4792), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148266,9 +150830,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94845] = 3, - ACTIONS(3057), 1, - anon_sym_SEMI, + [96165] = 3, + ACTIONS(4794), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148276,9 +150840,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94858] = 3, - ACTIONS(4664), 1, - sym_id, + [96178] = 3, + ACTIONS(4796), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148286,9 +150850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94871] = 3, - ACTIONS(4666), 1, - anon_sym_LPAREN, + [96191] = 3, + ACTIONS(4798), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148296,9 +150860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94884] = 3, - ACTIONS(4668), 1, - anon_sym_of, + [96204] = 3, + ACTIONS(4800), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148306,9 +150870,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94897] = 3, - ACTIONS(3263), 1, - anon_sym_RPAREN, + [96217] = 3, + ACTIONS(4802), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148316,8 +150880,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94910] = 3, - ACTIONS(4670), 1, + [96230] = 3, + ACTIONS(4804), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148326,9 +150890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94923] = 3, - ACTIONS(2979), 1, - anon_sym_SEMI, + [96243] = 3, + ACTIONS(4806), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148336,39 +150900,19 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94936] = 3, + [96256] = 3, ACTIONS(3), 1, sym_nl, - ACTIONS(4672), 1, + ACTIONS(4808), 1, sym_file, ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_zeekygen_next_comment, sym_minor_comment, - [94949] = 3, - ACTIONS(4674), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [94962] = 3, - ACTIONS(4676), 1, - sym_id, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [94975] = 3, - ACTIONS(4678), 1, - anon_sym_SEMI, + [96269] = 3, + ACTIONS(1246), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148376,8 +150920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [94988] = 3, - ACTIONS(4680), 1, + [96282] = 3, + ACTIONS(4810), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148386,9 +150930,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95001] = 3, - ACTIONS(4682), 1, - anon_sym_of, + [96295] = 3, + ACTIONS(4812), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148396,8 +150940,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95014] = 3, - ACTIONS(4684), 1, + [96308] = 3, + ACTIONS(1392), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148406,8 +150950,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95027] = 3, - ACTIONS(4686), 1, + [96321] = 3, + ACTIONS(4814), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148416,19 +150960,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95040] = 3, - ACTIONS(4688), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95053] = 3, - ACTIONS(4690), 1, - anon_sym_of, + [96334] = 3, + ACTIONS(534), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148436,38 +150970,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95066] = 3, - ACTIONS(4692), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [96347] = 3, + ACTIONS(3), 1, sym_nl, - [95079] = 3, - ACTIONS(4694), 1, - sym_id, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + ACTIONS(4816), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [95092] = 3, - ACTIONS(960), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95105] = 3, - ACTIONS(4696), 1, + [96360] = 3, + ACTIONS(4818), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148476,8 +150990,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95118] = 3, - ACTIONS(3235), 1, + [96373] = 3, + ACTIONS(4820), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148486,8 +151000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95131] = 3, - ACTIONS(4698), 1, + [96386] = 3, + ACTIONS(4822), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148496,28 +151010,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95144] = 3, - ACTIONS(4700), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95157] = 3, - ACTIONS(508), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95170] = 3, - ACTIONS(4702), 1, + [96399] = 3, + ACTIONS(4824), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148526,38 +151020,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95183] = 3, - ACTIONS(4704), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [96412] = 3, + ACTIONS(3), 1, sym_nl, - [95196] = 3, - ACTIONS(4706), 1, - sym_id, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + ACTIONS(4826), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [95209] = 3, - ACTIONS(4708), 1, - sym_id, - ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95222] = 3, - ACTIONS(4710), 1, + [96425] = 3, + ACTIONS(4828), 1, sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148566,38 +151040,18 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95235] = 3, - ACTIONS(510), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, + [96438] = 3, + ACTIONS(3), 1, sym_nl, - [95248] = 3, - ACTIONS(3027), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + ACTIONS(4830), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, - [95261] = 3, - ACTIONS(4712), 1, - anon_sym_SEMI, - ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, - ACTIONS(3), 3, - sym_zeekygen_head_comment, - sym_zeekygen_prev_comment, - sym_nl, - [95274] = 3, - ACTIONS(4714), 1, + [96451] = 3, + ACTIONS(4832), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148606,8 +151060,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95287] = 3, - ACTIONS(4716), 1, + [96464] = 3, + ACTIONS(4834), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148616,9 +151070,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95300] = 3, - ACTIONS(4718), 1, - anon_sym_SEMI, + [96477] = 3, + ACTIONS(4836), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148626,9 +151080,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95313] = 3, - ACTIONS(944), 1, - anon_sym_SEMI, + [96490] = 3, + ACTIONS(2362), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148636,8 +151090,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95326] = 3, - ACTIONS(2949), 1, + [96503] = 3, + ACTIONS(3052), 1, anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148646,9 +151100,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95339] = 3, - ACTIONS(4720), 1, - anon_sym_SEMI, + [96516] = 3, + ACTIONS(4838), 1, + sym_id, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148656,9 +151110,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95352] = 3, - ACTIONS(4722), 1, - anon_sym_SEMI, + [96529] = 3, + ACTIONS(4840), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148666,8 +151120,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95365] = 3, - ACTIONS(4724), 1, + [96542] = 3, + ACTIONS(4842), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148676,8 +151130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95378] = 3, - ACTIONS(4726), 1, + [96555] = 3, + ACTIONS(4844), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148686,8 +151140,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95391] = 3, - ACTIONS(4728), 1, + [96568] = 3, + ACTIONS(4846), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148696,9 +151150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95404] = 3, - ACTIONS(3055), 1, - anon_sym_SEMI, + [96581] = 3, + ACTIONS(536), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148706,9 +151160,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95417] = 3, - ACTIONS(576), 1, - anon_sym_RBRACE, + [96594] = 3, + ACTIONS(4848), 1, + aux_sym_pragma_token1, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148716,9 +151170,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95430] = 3, - ACTIONS(3219), 1, - sym_id, + [96607] = 3, + ACTIONS(2145), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148726,9 +151180,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95443] = 3, - ACTIONS(4730), 1, - anon_sym_RBRACE, + [96620] = 3, + ACTIONS(4850), 1, + anon_sym_of, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148736,9 +151190,9 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95456] = 3, - ACTIONS(4732), 1, - sym_id, + [96633] = 3, + ACTIONS(4852), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_zeekygen_next_comment, sym_minor_comment, @@ -148746,8 +151200,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95469] = 3, - ACTIONS(3400), 1, + [96646] = 3, + ACTIONS(3474), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148756,8 +151210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95482] = 3, - ACTIONS(4734), 1, + [96659] = 3, + ACTIONS(4854), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_zeekygen_next_comment, @@ -148766,2050 +151220,2085 @@ static const uint16_t ts_small_parse_table[] = { sym_zeekygen_head_comment, sym_zeekygen_prev_comment, sym_nl, - [95495] = 3, - ACTIONS(4736), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_zeekygen_next_comment, - sym_minor_comment, - ACTIONS(3), 3, + [96672] = 3, + ACTIONS(3), 1, + sym_nl, + ACTIONS(4856), 1, + sym_file, + ACTIONS(5), 4, sym_zeekygen_head_comment, sym_zeekygen_prev_comment, - sym_nl, + sym_zeekygen_next_comment, + sym_minor_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(809)] = 0, - [SMALL_STATE(810)] = 76, - [SMALL_STATE(811)] = 152, - [SMALL_STATE(812)] = 234, - [SMALL_STATE(813)] = 316, - [SMALL_STATE(814)] = 395, - [SMALL_STATE(815)] = 474, - [SMALL_STATE(816)] = 547, - [SMALL_STATE(817)] = 617, - [SMALL_STATE(818)] = 687, - [SMALL_STATE(819)] = 785, - [SMALL_STATE(820)] = 873, - [SMALL_STATE(821)] = 953, - [SMALL_STATE(822)] = 1033, - [SMALL_STATE(823)] = 1103, - [SMALL_STATE(824)] = 1199, - [SMALL_STATE(825)] = 1269, - [SMALL_STATE(826)] = 1363, - [SMALL_STATE(827)] = 1461, - [SMALL_STATE(828)] = 1541, - [SMALL_STATE(829)] = 1621, - [SMALL_STATE(830)] = 1715, - [SMALL_STATE(831)] = 1805, - [SMALL_STATE(832)] = 1893, - [SMALL_STATE(833)] = 1967, - [SMALL_STATE(834)] = 2041, - [SMALL_STATE(835)] = 2118, - [SMALL_STATE(836)] = 2195, - [SMALL_STATE(837)] = 2266, - [SMALL_STATE(838)] = 2336, - [SMALL_STATE(839)] = 2412, - [SMALL_STATE(840)] = 2490, - [SMALL_STATE(841)] = 2568, - [SMALL_STATE(842)] = 2664, - [SMALL_STATE(843)] = 2756, - [SMALL_STATE(844)] = 2834, - [SMALL_STATE(845)] = 2910, - [SMALL_STATE(846)] = 2996, - [SMALL_STATE(847)] = 3084, - [SMALL_STATE(848)] = 3180, - [SMALL_STATE(849)] = 3272, - [SMALL_STATE(850)] = 3350, - [SMALL_STATE(851)] = 3444, - [SMALL_STATE(852)] = 3530, - [SMALL_STATE(853)] = 3626, - [SMALL_STATE(854)] = 3693, - [SMALL_STATE(855)] = 3768, - [SMALL_STATE(856)] = 3835, - [SMALL_STATE(857)] = 3929, - [SMALL_STATE(858)] = 4023, - [SMALL_STATE(859)] = 4149, - [SMALL_STATE(860)] = 4275, - [SMALL_STATE(861)] = 4395, - [SMALL_STATE(862)] = 4516, - [SMALL_STATE(863)] = 4633, - [SMALL_STATE(864)] = 4753, - [SMALL_STATE(865)] = 4870, - [SMALL_STATE(866)] = 4987, - [SMALL_STATE(867)] = 5104, - [SMALL_STATE(868)] = 5221, - [SMALL_STATE(869)] = 5338, - [SMALL_STATE(870)] = 5455, - [SMALL_STATE(871)] = 5572, - [SMALL_STATE(872)] = 5689, - [SMALL_STATE(873)] = 5806, - [SMALL_STATE(874)] = 5923, - [SMALL_STATE(875)] = 6040, - [SMALL_STATE(876)] = 6157, - [SMALL_STATE(877)] = 6274, - [SMALL_STATE(878)] = 6391, - [SMALL_STATE(879)] = 6508, - [SMALL_STATE(880)] = 6622, - [SMALL_STATE(881)] = 6736, - [SMALL_STATE(882)] = 6850, - [SMALL_STATE(883)] = 6964, - [SMALL_STATE(884)] = 7078, - [SMALL_STATE(885)] = 7192, - [SMALL_STATE(886)] = 7306, - [SMALL_STATE(887)] = 7420, - [SMALL_STATE(888)] = 7534, - [SMALL_STATE(889)] = 7648, - [SMALL_STATE(890)] = 7762, - [SMALL_STATE(891)] = 7876, - [SMALL_STATE(892)] = 7990, - [SMALL_STATE(893)] = 8104, - [SMALL_STATE(894)] = 8218, - [SMALL_STATE(895)] = 8332, - [SMALL_STATE(896)] = 8446, - [SMALL_STATE(897)] = 8560, - [SMALL_STATE(898)] = 8674, - [SMALL_STATE(899)] = 8788, - [SMALL_STATE(900)] = 8902, - [SMALL_STATE(901)] = 9016, - [SMALL_STATE(902)] = 9130, - [SMALL_STATE(903)] = 9244, - [SMALL_STATE(904)] = 9358, - [SMALL_STATE(905)] = 9472, - [SMALL_STATE(906)] = 9586, - [SMALL_STATE(907)] = 9697, - [SMALL_STATE(908)] = 9808, - [SMALL_STATE(909)] = 9919, - [SMALL_STATE(910)] = 10030, - [SMALL_STATE(911)] = 10141, - [SMALL_STATE(912)] = 10252, - [SMALL_STATE(913)] = 10360, - [SMALL_STATE(914)] = 10468, - [SMALL_STATE(915)] = 10576, - [SMALL_STATE(916)] = 10684, - [SMALL_STATE(917)] = 10792, - [SMALL_STATE(918)] = 10900, - [SMALL_STATE(919)] = 11008, - [SMALL_STATE(920)] = 11116, - [SMALL_STATE(921)] = 11224, - [SMALL_STATE(922)] = 11332, - [SMALL_STATE(923)] = 11440, - [SMALL_STATE(924)] = 11548, - [SMALL_STATE(925)] = 11656, - [SMALL_STATE(926)] = 11764, - [SMALL_STATE(927)] = 11872, - [SMALL_STATE(928)] = 11980, - [SMALL_STATE(929)] = 12088, - [SMALL_STATE(930)] = 12196, - [SMALL_STATE(931)] = 12304, - [SMALL_STATE(932)] = 12412, - [SMALL_STATE(933)] = 12520, - [SMALL_STATE(934)] = 12628, - [SMALL_STATE(935)] = 12736, - [SMALL_STATE(936)] = 12844, - [SMALL_STATE(937)] = 12952, - [SMALL_STATE(938)] = 13060, - [SMALL_STATE(939)] = 13168, - [SMALL_STATE(940)] = 13276, - [SMALL_STATE(941)] = 13384, - [SMALL_STATE(942)] = 13492, - [SMALL_STATE(943)] = 13600, - [SMALL_STATE(944)] = 13708, - [SMALL_STATE(945)] = 13816, - [SMALL_STATE(946)] = 13924, - [SMALL_STATE(947)] = 14032, - [SMALL_STATE(948)] = 14140, - [SMALL_STATE(949)] = 14248, - [SMALL_STATE(950)] = 14356, - [SMALL_STATE(951)] = 14464, - [SMALL_STATE(952)] = 14572, - [SMALL_STATE(953)] = 14680, - [SMALL_STATE(954)] = 14788, - [SMALL_STATE(955)] = 14896, - [SMALL_STATE(956)] = 15004, - [SMALL_STATE(957)] = 15112, - [SMALL_STATE(958)] = 15220, - [SMALL_STATE(959)] = 15328, - [SMALL_STATE(960)] = 15436, - [SMALL_STATE(961)] = 15544, - [SMALL_STATE(962)] = 15652, - [SMALL_STATE(963)] = 15760, - [SMALL_STATE(964)] = 15868, - [SMALL_STATE(965)] = 15976, - [SMALL_STATE(966)] = 16084, - [SMALL_STATE(967)] = 16192, - [SMALL_STATE(968)] = 16300, - [SMALL_STATE(969)] = 16408, - [SMALL_STATE(970)] = 16516, - [SMALL_STATE(971)] = 16624, - [SMALL_STATE(972)] = 16732, - [SMALL_STATE(973)] = 16840, - [SMALL_STATE(974)] = 16948, - [SMALL_STATE(975)] = 17056, - [SMALL_STATE(976)] = 17164, - [SMALL_STATE(977)] = 17272, - [SMALL_STATE(978)] = 17380, - [SMALL_STATE(979)] = 17488, - [SMALL_STATE(980)] = 17596, - [SMALL_STATE(981)] = 17704, - [SMALL_STATE(982)] = 17812, - [SMALL_STATE(983)] = 17920, - [SMALL_STATE(984)] = 18028, - [SMALL_STATE(985)] = 18136, - [SMALL_STATE(986)] = 18244, - [SMALL_STATE(987)] = 18352, - [SMALL_STATE(988)] = 18460, - [SMALL_STATE(989)] = 18568, - [SMALL_STATE(990)] = 18676, - [SMALL_STATE(991)] = 18784, - [SMALL_STATE(992)] = 18892, - [SMALL_STATE(993)] = 19000, - [SMALL_STATE(994)] = 19108, - [SMALL_STATE(995)] = 19216, - [SMALL_STATE(996)] = 19324, - [SMALL_STATE(997)] = 19432, - [SMALL_STATE(998)] = 19540, - [SMALL_STATE(999)] = 19648, - [SMALL_STATE(1000)] = 19756, - [SMALL_STATE(1001)] = 19864, - [SMALL_STATE(1002)] = 19972, - [SMALL_STATE(1003)] = 20080, - [SMALL_STATE(1004)] = 20188, - [SMALL_STATE(1005)] = 20296, - [SMALL_STATE(1006)] = 20404, - [SMALL_STATE(1007)] = 20512, - [SMALL_STATE(1008)] = 20620, - [SMALL_STATE(1009)] = 20728, - [SMALL_STATE(1010)] = 20836, - [SMALL_STATE(1011)] = 20944, - [SMALL_STATE(1012)] = 21052, - [SMALL_STATE(1013)] = 21160, - [SMALL_STATE(1014)] = 21268, - [SMALL_STATE(1015)] = 21376, - [SMALL_STATE(1016)] = 21484, - [SMALL_STATE(1017)] = 21592, - [SMALL_STATE(1018)] = 21700, - [SMALL_STATE(1019)] = 21808, - [SMALL_STATE(1020)] = 21916, - [SMALL_STATE(1021)] = 22024, - [SMALL_STATE(1022)] = 22132, - [SMALL_STATE(1023)] = 22240, - [SMALL_STATE(1024)] = 22348, - [SMALL_STATE(1025)] = 22456, - [SMALL_STATE(1026)] = 22564, - [SMALL_STATE(1027)] = 22672, - [SMALL_STATE(1028)] = 22780, - [SMALL_STATE(1029)] = 22888, - [SMALL_STATE(1030)] = 22996, - [SMALL_STATE(1031)] = 23104, - [SMALL_STATE(1032)] = 23212, - [SMALL_STATE(1033)] = 23320, - [SMALL_STATE(1034)] = 23428, - [SMALL_STATE(1035)] = 23536, - [SMALL_STATE(1036)] = 23644, - [SMALL_STATE(1037)] = 23752, - [SMALL_STATE(1038)] = 23860, - [SMALL_STATE(1039)] = 23968, - [SMALL_STATE(1040)] = 24076, - [SMALL_STATE(1041)] = 24184, - [SMALL_STATE(1042)] = 24292, - [SMALL_STATE(1043)] = 24400, - [SMALL_STATE(1044)] = 24508, - [SMALL_STATE(1045)] = 24616, - [SMALL_STATE(1046)] = 24724, - [SMALL_STATE(1047)] = 24832, - [SMALL_STATE(1048)] = 24940, - [SMALL_STATE(1049)] = 25048, - [SMALL_STATE(1050)] = 25156, - [SMALL_STATE(1051)] = 25264, - [SMALL_STATE(1052)] = 25372, - [SMALL_STATE(1053)] = 25480, - [SMALL_STATE(1054)] = 25588, - [SMALL_STATE(1055)] = 25696, - [SMALL_STATE(1056)] = 25804, - [SMALL_STATE(1057)] = 25912, - [SMALL_STATE(1058)] = 26020, - [SMALL_STATE(1059)] = 26128, - [SMALL_STATE(1060)] = 26236, - [SMALL_STATE(1061)] = 26344, - [SMALL_STATE(1062)] = 26452, - [SMALL_STATE(1063)] = 26560, - [SMALL_STATE(1064)] = 26668, - [SMALL_STATE(1065)] = 26776, - [SMALL_STATE(1066)] = 26884, - [SMALL_STATE(1067)] = 26992, - [SMALL_STATE(1068)] = 27100, - [SMALL_STATE(1069)] = 27208, - [SMALL_STATE(1070)] = 27316, - [SMALL_STATE(1071)] = 27424, - [SMALL_STATE(1072)] = 27532, - [SMALL_STATE(1073)] = 27640, - [SMALL_STATE(1074)] = 27748, - [SMALL_STATE(1075)] = 27856, - [SMALL_STATE(1076)] = 27964, - [SMALL_STATE(1077)] = 28072, - [SMALL_STATE(1078)] = 28180, - [SMALL_STATE(1079)] = 28288, - [SMALL_STATE(1080)] = 28396, - [SMALL_STATE(1081)] = 28504, - [SMALL_STATE(1082)] = 28612, - [SMALL_STATE(1083)] = 28720, - [SMALL_STATE(1084)] = 28828, - [SMALL_STATE(1085)] = 28936, - [SMALL_STATE(1086)] = 29044, - [SMALL_STATE(1087)] = 29152, - [SMALL_STATE(1088)] = 29260, - [SMALL_STATE(1089)] = 29368, - [SMALL_STATE(1090)] = 29476, - [SMALL_STATE(1091)] = 29584, - [SMALL_STATE(1092)] = 29692, - [SMALL_STATE(1093)] = 29800, - [SMALL_STATE(1094)] = 29908, - [SMALL_STATE(1095)] = 30016, - [SMALL_STATE(1096)] = 30124, - [SMALL_STATE(1097)] = 30232, - [SMALL_STATE(1098)] = 30340, - [SMALL_STATE(1099)] = 30448, - [SMALL_STATE(1100)] = 30556, - [SMALL_STATE(1101)] = 30664, - [SMALL_STATE(1102)] = 30772, - [SMALL_STATE(1103)] = 30880, - [SMALL_STATE(1104)] = 30988, - [SMALL_STATE(1105)] = 31096, - [SMALL_STATE(1106)] = 31204, - [SMALL_STATE(1107)] = 31312, - [SMALL_STATE(1108)] = 31420, - [SMALL_STATE(1109)] = 31528, - [SMALL_STATE(1110)] = 31636, - [SMALL_STATE(1111)] = 31744, - [SMALL_STATE(1112)] = 31852, - [SMALL_STATE(1113)] = 31960, - [SMALL_STATE(1114)] = 32068, - [SMALL_STATE(1115)] = 32176, - [SMALL_STATE(1116)] = 32284, - [SMALL_STATE(1117)] = 32392, - [SMALL_STATE(1118)] = 32500, - [SMALL_STATE(1119)] = 32608, - [SMALL_STATE(1120)] = 32716, - [SMALL_STATE(1121)] = 32824, - [SMALL_STATE(1122)] = 32932, - [SMALL_STATE(1123)] = 33040, - [SMALL_STATE(1124)] = 33148, - [SMALL_STATE(1125)] = 33256, - [SMALL_STATE(1126)] = 33364, - [SMALL_STATE(1127)] = 33472, - [SMALL_STATE(1128)] = 33580, - [SMALL_STATE(1129)] = 33688, - [SMALL_STATE(1130)] = 33796, - [SMALL_STATE(1131)] = 33904, - [SMALL_STATE(1132)] = 34012, - [SMALL_STATE(1133)] = 34120, - [SMALL_STATE(1134)] = 34228, - [SMALL_STATE(1135)] = 34336, - [SMALL_STATE(1136)] = 34444, - [SMALL_STATE(1137)] = 34552, - [SMALL_STATE(1138)] = 34660, - [SMALL_STATE(1139)] = 34768, - [SMALL_STATE(1140)] = 34876, - [SMALL_STATE(1141)] = 34984, - [SMALL_STATE(1142)] = 35092, - [SMALL_STATE(1143)] = 35200, - [SMALL_STATE(1144)] = 35308, - [SMALL_STATE(1145)] = 35416, - [SMALL_STATE(1146)] = 35524, - [SMALL_STATE(1147)] = 35632, - [SMALL_STATE(1148)] = 35740, - [SMALL_STATE(1149)] = 35848, - [SMALL_STATE(1150)] = 35956, - [SMALL_STATE(1151)] = 36064, - [SMALL_STATE(1152)] = 36172, - [SMALL_STATE(1153)] = 36280, - [SMALL_STATE(1154)] = 36388, - [SMALL_STATE(1155)] = 36496, - [SMALL_STATE(1156)] = 36604, - [SMALL_STATE(1157)] = 36712, - [SMALL_STATE(1158)] = 36820, - [SMALL_STATE(1159)] = 36928, - [SMALL_STATE(1160)] = 37036, - [SMALL_STATE(1161)] = 37144, - [SMALL_STATE(1162)] = 37252, - [SMALL_STATE(1163)] = 37360, - [SMALL_STATE(1164)] = 37468, - [SMALL_STATE(1165)] = 37576, - [SMALL_STATE(1166)] = 37640, - [SMALL_STATE(1167)] = 37748, - [SMALL_STATE(1168)] = 37856, - [SMALL_STATE(1169)] = 37964, - [SMALL_STATE(1170)] = 38072, - [SMALL_STATE(1171)] = 38180, - [SMALL_STATE(1172)] = 38288, - [SMALL_STATE(1173)] = 38396, - [SMALL_STATE(1174)] = 38504, - [SMALL_STATE(1175)] = 38612, - [SMALL_STATE(1176)] = 38720, - [SMALL_STATE(1177)] = 38828, - [SMALL_STATE(1178)] = 38936, - [SMALL_STATE(1179)] = 39044, - [SMALL_STATE(1180)] = 39152, - [SMALL_STATE(1181)] = 39260, - [SMALL_STATE(1182)] = 39368, - [SMALL_STATE(1183)] = 39476, - [SMALL_STATE(1184)] = 39584, - [SMALL_STATE(1185)] = 39692, - [SMALL_STATE(1186)] = 39800, - [SMALL_STATE(1187)] = 39908, - [SMALL_STATE(1188)] = 40016, - [SMALL_STATE(1189)] = 40124, - [SMALL_STATE(1190)] = 40232, - [SMALL_STATE(1191)] = 40340, - [SMALL_STATE(1192)] = 40448, - [SMALL_STATE(1193)] = 40556, - [SMALL_STATE(1194)] = 40664, - [SMALL_STATE(1195)] = 40772, - [SMALL_STATE(1196)] = 40880, - [SMALL_STATE(1197)] = 40988, - [SMALL_STATE(1198)] = 41096, - [SMALL_STATE(1199)] = 41204, - [SMALL_STATE(1200)] = 41312, - [SMALL_STATE(1201)] = 41420, - [SMALL_STATE(1202)] = 41528, - [SMALL_STATE(1203)] = 41636, - [SMALL_STATE(1204)] = 41744, - [SMALL_STATE(1205)] = 41852, - [SMALL_STATE(1206)] = 41960, - [SMALL_STATE(1207)] = 42068, - [SMALL_STATE(1208)] = 42176, - [SMALL_STATE(1209)] = 42284, - [SMALL_STATE(1210)] = 42392, - [SMALL_STATE(1211)] = 42500, - [SMALL_STATE(1212)] = 42608, - [SMALL_STATE(1213)] = 42716, - [SMALL_STATE(1214)] = 42824, - [SMALL_STATE(1215)] = 42932, - [SMALL_STATE(1216)] = 43040, - [SMALL_STATE(1217)] = 43148, - [SMALL_STATE(1218)] = 43256, - [SMALL_STATE(1219)] = 43364, - [SMALL_STATE(1220)] = 43472, - [SMALL_STATE(1221)] = 43580, - [SMALL_STATE(1222)] = 43633, - [SMALL_STATE(1223)] = 43728, - [SMALL_STATE(1224)] = 43823, - [SMALL_STATE(1225)] = 43918, - [SMALL_STATE(1226)] = 44013, - [SMALL_STATE(1227)] = 44108, - [SMALL_STATE(1228)] = 44162, - [SMALL_STATE(1229)] = 44216, - [SMALL_STATE(1230)] = 44270, - [SMALL_STATE(1231)] = 44324, - [SMALL_STATE(1232)] = 44385, - [SMALL_STATE(1233)] = 44446, - [SMALL_STATE(1234)] = 44507, - [SMALL_STATE(1235)] = 44568, - [SMALL_STATE(1236)] = 44618, - [SMALL_STATE(1237)] = 44670, - [SMALL_STATE(1238)] = 44728, - [SMALL_STATE(1239)] = 44780, - [SMALL_STATE(1240)] = 44838, - [SMALL_STATE(1241)] = 44892, - [SMALL_STATE(1242)] = 44941, - [SMALL_STATE(1243)] = 44990, - [SMALL_STATE(1244)] = 45041, - [SMALL_STATE(1245)] = 45090, - [SMALL_STATE(1246)] = 45139, - [SMALL_STATE(1247)] = 45188, - [SMALL_STATE(1248)] = 45239, - [SMALL_STATE(1249)] = 45288, - [SMALL_STATE(1250)] = 45337, - [SMALL_STATE(1251)] = 45388, - [SMALL_STATE(1252)] = 45445, - [SMALL_STATE(1253)] = 45496, - [SMALL_STATE(1254)] = 45545, - [SMALL_STATE(1255)] = 45594, - [SMALL_STATE(1256)] = 45643, - [SMALL_STATE(1257)] = 45700, - [SMALL_STATE(1258)] = 45749, - [SMALL_STATE(1259)] = 45798, - [SMALL_STATE(1260)] = 45847, - [SMALL_STATE(1261)] = 45896, - [SMALL_STATE(1262)] = 45945, - [SMALL_STATE(1263)] = 45994, - [SMALL_STATE(1264)] = 46043, - [SMALL_STATE(1265)] = 46092, - [SMALL_STATE(1266)] = 46141, - [SMALL_STATE(1267)] = 46190, - [SMALL_STATE(1268)] = 46239, - [SMALL_STATE(1269)] = 46288, - [SMALL_STATE(1270)] = 46337, - [SMALL_STATE(1271)] = 46386, - [SMALL_STATE(1272)] = 46435, - [SMALL_STATE(1273)] = 46484, - [SMALL_STATE(1274)] = 46533, - [SMALL_STATE(1275)] = 46582, - [SMALL_STATE(1276)] = 46631, - [SMALL_STATE(1277)] = 46697, - [SMALL_STATE(1278)] = 46745, - [SMALL_STATE(1279)] = 46823, - [SMALL_STATE(1280)] = 46881, - [SMALL_STATE(1281)] = 46947, - [SMALL_STATE(1282)] = 47023, - [SMALL_STATE(1283)] = 47091, - [SMALL_STATE(1284)] = 47149, - [SMALL_STATE(1285)] = 47221, - [SMALL_STATE(1286)] = 47293, - [SMALL_STATE(1287)] = 47371, - [SMALL_STATE(1288)] = 47447, - [SMALL_STATE(1289)] = 47501, - [SMALL_STATE(1290)] = 47579, - [SMALL_STATE(1291)] = 47657, - [SMALL_STATE(1292)] = 47735, - [SMALL_STATE(1293)] = 47813, - [SMALL_STATE(1294)] = 47891, - [SMALL_STATE(1295)] = 47969, - [SMALL_STATE(1296)] = 48047, - [SMALL_STATE(1297)] = 48125, - [SMALL_STATE(1298)] = 48203, - [SMALL_STATE(1299)] = 48277, - [SMALL_STATE(1300)] = 48331, - [SMALL_STATE(1301)] = 48401, - [SMALL_STATE(1302)] = 48479, - [SMALL_STATE(1303)] = 48535, - [SMALL_STATE(1304)] = 48583, - [SMALL_STATE(1305)] = 48661, - [SMALL_STATE(1306)] = 48739, - [SMALL_STATE(1307)] = 48803, - [SMALL_STATE(1308)] = 48869, - [SMALL_STATE(1309)] = 48943, - [SMALL_STATE(1310)] = 49021, - [SMALL_STATE(1311)] = 49091, - [SMALL_STATE(1312)] = 49147, - [SMALL_STATE(1313)] = 49211, - [SMALL_STATE(1314)] = 49289, - [SMALL_STATE(1315)] = 49367, - [SMALL_STATE(1316)] = 49445, - [SMALL_STATE(1317)] = 49520, - [SMALL_STATE(1318)] = 49565, - [SMALL_STATE(1319)] = 49640, - [SMALL_STATE(1320)] = 49689, - [SMALL_STATE(1321)] = 49734, - [SMALL_STATE(1322)] = 49806, - [SMALL_STATE(1323)] = 49878, - [SMALL_STATE(1324)] = 49950, - [SMALL_STATE(1325)] = 50018, - [SMALL_STATE(1326)] = 50072, - [SMALL_STATE(1327)] = 50144, - [SMALL_STATE(1328)] = 50206, - [SMALL_STATE(1329)] = 50270, - [SMALL_STATE(1330)] = 50342, - [SMALL_STATE(1331)] = 50414, - [SMALL_STATE(1332)] = 50482, - [SMALL_STATE(1333)] = 50536, - [SMALL_STATE(1334)] = 50608, - [SMALL_STATE(1335)] = 50680, - [SMALL_STATE(1336)] = 50742, - [SMALL_STATE(1337)] = 50814, - [SMALL_STATE(1338)] = 50886, - [SMALL_STATE(1339)] = 50958, - [SMALL_STATE(1340)] = 51030, - [SMALL_STATE(1341)] = 51102, - [SMALL_STATE(1342)] = 51174, - [SMALL_STATE(1343)] = 51246, - [SMALL_STATE(1344)] = 51318, - [SMALL_STATE(1345)] = 51390, - [SMALL_STATE(1346)] = 51462, - [SMALL_STATE(1347)] = 51534, - [SMALL_STATE(1348)] = 51606, - [SMALL_STATE(1349)] = 51678, - [SMALL_STATE(1350)] = 51750, - [SMALL_STATE(1351)] = 51822, - [SMALL_STATE(1352)] = 51894, - [SMALL_STATE(1353)] = 51966, - [SMALL_STATE(1354)] = 52038, - [SMALL_STATE(1355)] = 52110, - [SMALL_STATE(1356)] = 52182, - [SMALL_STATE(1357)] = 52254, - [SMALL_STATE(1358)] = 52326, - [SMALL_STATE(1359)] = 52398, - [SMALL_STATE(1360)] = 52470, - [SMALL_STATE(1361)] = 52542, - [SMALL_STATE(1362)] = 52614, - [SMALL_STATE(1363)] = 52686, - [SMALL_STATE(1364)] = 52758, - [SMALL_STATE(1365)] = 52830, - [SMALL_STATE(1366)] = 52902, - [SMALL_STATE(1367)] = 52974, - [SMALL_STATE(1368)] = 53046, - [SMALL_STATE(1369)] = 53118, - [SMALL_STATE(1370)] = 53190, - [SMALL_STATE(1371)] = 53262, - [SMALL_STATE(1372)] = 53334, - [SMALL_STATE(1373)] = 53406, - [SMALL_STATE(1374)] = 53478, - [SMALL_STATE(1375)] = 53550, - [SMALL_STATE(1376)] = 53622, - [SMALL_STATE(1377)] = 53694, - [SMALL_STATE(1378)] = 53766, - [SMALL_STATE(1379)] = 53838, - [SMALL_STATE(1380)] = 53910, - [SMALL_STATE(1381)] = 53982, - [SMALL_STATE(1382)] = 54054, - [SMALL_STATE(1383)] = 54126, - [SMALL_STATE(1384)] = 54198, - [SMALL_STATE(1385)] = 54270, - [SMALL_STATE(1386)] = 54342, - [SMALL_STATE(1387)] = 54414, - [SMALL_STATE(1388)] = 54486, - [SMALL_STATE(1389)] = 54558, - [SMALL_STATE(1390)] = 54630, - [SMALL_STATE(1391)] = 54702, - [SMALL_STATE(1392)] = 54774, - [SMALL_STATE(1393)] = 54846, - [SMALL_STATE(1394)] = 54918, - [SMALL_STATE(1395)] = 54990, - [SMALL_STATE(1396)] = 55062, - [SMALL_STATE(1397)] = 55134, - [SMALL_STATE(1398)] = 55206, - [SMALL_STATE(1399)] = 55278, - [SMALL_STATE(1400)] = 55350, - [SMALL_STATE(1401)] = 55422, - [SMALL_STATE(1402)] = 55494, - [SMALL_STATE(1403)] = 55566, - [SMALL_STATE(1404)] = 55638, - [SMALL_STATE(1405)] = 55710, - [SMALL_STATE(1406)] = 55782, - [SMALL_STATE(1407)] = 55854, - [SMALL_STATE(1408)] = 55926, - [SMALL_STATE(1409)] = 55998, - [SMALL_STATE(1410)] = 56070, - [SMALL_STATE(1411)] = 56142, - [SMALL_STATE(1412)] = 56214, - [SMALL_STATE(1413)] = 56286, - [SMALL_STATE(1414)] = 56358, - [SMALL_STATE(1415)] = 56430, - [SMALL_STATE(1416)] = 56502, - [SMALL_STATE(1417)] = 56574, - [SMALL_STATE(1418)] = 56646, - [SMALL_STATE(1419)] = 56718, - [SMALL_STATE(1420)] = 56790, - [SMALL_STATE(1421)] = 56862, - [SMALL_STATE(1422)] = 56934, - [SMALL_STATE(1423)] = 57006, - [SMALL_STATE(1424)] = 57078, - [SMALL_STATE(1425)] = 57150, - [SMALL_STATE(1426)] = 57222, - [SMALL_STATE(1427)] = 57294, - [SMALL_STATE(1428)] = 57366, - [SMALL_STATE(1429)] = 57438, - [SMALL_STATE(1430)] = 57510, - [SMALL_STATE(1431)] = 57582, - [SMALL_STATE(1432)] = 57654, - [SMALL_STATE(1433)] = 57726, - [SMALL_STATE(1434)] = 57798, - [SMALL_STATE(1435)] = 57870, - [SMALL_STATE(1436)] = 57942, - [SMALL_STATE(1437)] = 58014, - [SMALL_STATE(1438)] = 58086, - [SMALL_STATE(1439)] = 58158, - [SMALL_STATE(1440)] = 58230, - [SMALL_STATE(1441)] = 58302, - [SMALL_STATE(1442)] = 58374, - [SMALL_STATE(1443)] = 58446, - [SMALL_STATE(1444)] = 58518, - [SMALL_STATE(1445)] = 58590, - [SMALL_STATE(1446)] = 58662, - [SMALL_STATE(1447)] = 58734, - [SMALL_STATE(1448)] = 58806, - [SMALL_STATE(1449)] = 58878, - [SMALL_STATE(1450)] = 58950, - [SMALL_STATE(1451)] = 59022, - [SMALL_STATE(1452)] = 59094, - [SMALL_STATE(1453)] = 59166, - [SMALL_STATE(1454)] = 59238, - [SMALL_STATE(1455)] = 59310, - [SMALL_STATE(1456)] = 59382, - [SMALL_STATE(1457)] = 59454, - [SMALL_STATE(1458)] = 59526, - [SMALL_STATE(1459)] = 59598, - [SMALL_STATE(1460)] = 59670, - [SMALL_STATE(1461)] = 59742, - [SMALL_STATE(1462)] = 59814, - [SMALL_STATE(1463)] = 59886, - [SMALL_STATE(1464)] = 59958, - [SMALL_STATE(1465)] = 60030, - [SMALL_STATE(1466)] = 60102, - [SMALL_STATE(1467)] = 60174, - [SMALL_STATE(1468)] = 60246, - [SMALL_STATE(1469)] = 60318, - [SMALL_STATE(1470)] = 60390, - [SMALL_STATE(1471)] = 60462, - [SMALL_STATE(1472)] = 60534, - [SMALL_STATE(1473)] = 60606, - [SMALL_STATE(1474)] = 60678, - [SMALL_STATE(1475)] = 60750, - [SMALL_STATE(1476)] = 60822, - [SMALL_STATE(1477)] = 60894, - [SMALL_STATE(1478)] = 60966, - [SMALL_STATE(1479)] = 61038, - [SMALL_STATE(1480)] = 61110, - [SMALL_STATE(1481)] = 61182, - [SMALL_STATE(1482)] = 61254, - [SMALL_STATE(1483)] = 61326, - [SMALL_STATE(1484)] = 61398, - [SMALL_STATE(1485)] = 61470, - [SMALL_STATE(1486)] = 61542, - [SMALL_STATE(1487)] = 61614, - [SMALL_STATE(1488)] = 61686, - [SMALL_STATE(1489)] = 61758, - [SMALL_STATE(1490)] = 61830, - [SMALL_STATE(1491)] = 61902, - [SMALL_STATE(1492)] = 61974, - [SMALL_STATE(1493)] = 62046, - [SMALL_STATE(1494)] = 62118, - [SMALL_STATE(1495)] = 62190, - [SMALL_STATE(1496)] = 62262, - [SMALL_STATE(1497)] = 62334, - [SMALL_STATE(1498)] = 62406, - [SMALL_STATE(1499)] = 62478, - [SMALL_STATE(1500)] = 62550, - [SMALL_STATE(1501)] = 62622, - [SMALL_STATE(1502)] = 62694, - [SMALL_STATE(1503)] = 62766, - [SMALL_STATE(1504)] = 62838, - [SMALL_STATE(1505)] = 62910, - [SMALL_STATE(1506)] = 62982, - [SMALL_STATE(1507)] = 63054, - [SMALL_STATE(1508)] = 63126, - [SMALL_STATE(1509)] = 63198, - [SMALL_STATE(1510)] = 63270, - [SMALL_STATE(1511)] = 63342, - [SMALL_STATE(1512)] = 63414, - [SMALL_STATE(1513)] = 63486, - [SMALL_STATE(1514)] = 63558, - [SMALL_STATE(1515)] = 63630, - [SMALL_STATE(1516)] = 63702, - [SMALL_STATE(1517)] = 63774, - [SMALL_STATE(1518)] = 63846, - [SMALL_STATE(1519)] = 63918, - [SMALL_STATE(1520)] = 63990, - [SMALL_STATE(1521)] = 64062, - [SMALL_STATE(1522)] = 64134, - [SMALL_STATE(1523)] = 64206, - [SMALL_STATE(1524)] = 64278, - [SMALL_STATE(1525)] = 64350, - [SMALL_STATE(1526)] = 64422, - [SMALL_STATE(1527)] = 64494, - [SMALL_STATE(1528)] = 64566, - [SMALL_STATE(1529)] = 64638, - [SMALL_STATE(1530)] = 64710, - [SMALL_STATE(1531)] = 64782, - [SMALL_STATE(1532)] = 64854, - [SMALL_STATE(1533)] = 64926, - [SMALL_STATE(1534)] = 64998, - [SMALL_STATE(1535)] = 65070, - [SMALL_STATE(1536)] = 65142, - [SMALL_STATE(1537)] = 65214, - [SMALL_STATE(1538)] = 65286, - [SMALL_STATE(1539)] = 65358, - [SMALL_STATE(1540)] = 65430, - [SMALL_STATE(1541)] = 65502, - [SMALL_STATE(1542)] = 65574, - [SMALL_STATE(1543)] = 65646, - [SMALL_STATE(1544)] = 65718, - [SMALL_STATE(1545)] = 65790, - [SMALL_STATE(1546)] = 65862, - [SMALL_STATE(1547)] = 65934, - [SMALL_STATE(1548)] = 66006, - [SMALL_STATE(1549)] = 66078, - [SMALL_STATE(1550)] = 66150, - [SMALL_STATE(1551)] = 66222, - [SMALL_STATE(1552)] = 66294, - [SMALL_STATE(1553)] = 66366, - [SMALL_STATE(1554)] = 66438, - [SMALL_STATE(1555)] = 66510, - [SMALL_STATE(1556)] = 66582, - [SMALL_STATE(1557)] = 66654, - [SMALL_STATE(1558)] = 66702, - [SMALL_STATE(1559)] = 66774, - [SMALL_STATE(1560)] = 66846, - [SMALL_STATE(1561)] = 66918, - [SMALL_STATE(1562)] = 66990, - [SMALL_STATE(1563)] = 67062, - [SMALL_STATE(1564)] = 67134, - [SMALL_STATE(1565)] = 67206, - [SMALL_STATE(1566)] = 67278, - [SMALL_STATE(1567)] = 67350, - [SMALL_STATE(1568)] = 67422, - [SMALL_STATE(1569)] = 67494, - [SMALL_STATE(1570)] = 67565, - [SMALL_STATE(1571)] = 67636, - [SMALL_STATE(1572)] = 67707, - [SMALL_STATE(1573)] = 67778, - [SMALL_STATE(1574)] = 67842, - [SMALL_STATE(1575)] = 67906, - [SMALL_STATE(1576)] = 67970, - [SMALL_STATE(1577)] = 68034, - [SMALL_STATE(1578)] = 68098, - [SMALL_STATE(1579)] = 68162, - [SMALL_STATE(1580)] = 68226, - [SMALL_STATE(1581)] = 68290, - [SMALL_STATE(1582)] = 68354, - [SMALL_STATE(1583)] = 68418, - [SMALL_STATE(1584)] = 68482, - [SMALL_STATE(1585)] = 68546, - [SMALL_STATE(1586)] = 68610, - [SMALL_STATE(1587)] = 68674, - [SMALL_STATE(1588)] = 68724, - [SMALL_STATE(1589)] = 68788, - [SMALL_STATE(1590)] = 68852, - [SMALL_STATE(1591)] = 68916, - [SMALL_STATE(1592)] = 68980, - [SMALL_STATE(1593)] = 69044, - [SMALL_STATE(1594)] = 69108, - [SMALL_STATE(1595)] = 69172, - [SMALL_STATE(1596)] = 69236, - [SMALL_STATE(1597)] = 69300, - [SMALL_STATE(1598)] = 69364, - [SMALL_STATE(1599)] = 69428, - [SMALL_STATE(1600)] = 69492, - [SMALL_STATE(1601)] = 69556, - [SMALL_STATE(1602)] = 69620, - [SMALL_STATE(1603)] = 69684, - [SMALL_STATE(1604)] = 69748, - [SMALL_STATE(1605)] = 69812, - [SMALL_STATE(1606)] = 69873, - [SMALL_STATE(1607)] = 69934, - [SMALL_STATE(1608)] = 69995, - [SMALL_STATE(1609)] = 70056, - [SMALL_STATE(1610)] = 70117, - [SMALL_STATE(1611)] = 70178, - [SMALL_STATE(1612)] = 70239, - [SMALL_STATE(1613)] = 70300, - [SMALL_STATE(1614)] = 70361, - [SMALL_STATE(1615)] = 70422, - [SMALL_STATE(1616)] = 70469, - [SMALL_STATE(1617)] = 70530, - [SMALL_STATE(1618)] = 70591, - [SMALL_STATE(1619)] = 70652, - [SMALL_STATE(1620)] = 70713, - [SMALL_STATE(1621)] = 70774, - [SMALL_STATE(1622)] = 70835, - [SMALL_STATE(1623)] = 70896, - [SMALL_STATE(1624)] = 70957, - [SMALL_STATE(1625)] = 71018, - [SMALL_STATE(1626)] = 71079, - [SMALL_STATE(1627)] = 71140, - [SMALL_STATE(1628)] = 71201, - [SMALL_STATE(1629)] = 71262, - [SMALL_STATE(1630)] = 71323, - [SMALL_STATE(1631)] = 71384, - [SMALL_STATE(1632)] = 71445, - [SMALL_STATE(1633)] = 71492, - [SMALL_STATE(1634)] = 71553, - [SMALL_STATE(1635)] = 71614, - [SMALL_STATE(1636)] = 71675, - [SMALL_STATE(1637)] = 71736, - [SMALL_STATE(1638)] = 71797, - [SMALL_STATE(1639)] = 71858, - [SMALL_STATE(1640)] = 71919, - [SMALL_STATE(1641)] = 71980, - [SMALL_STATE(1642)] = 72041, - [SMALL_STATE(1643)] = 72102, - [SMALL_STATE(1644)] = 72163, - [SMALL_STATE(1645)] = 72224, - [SMALL_STATE(1646)] = 72285, - [SMALL_STATE(1647)] = 72346, - [SMALL_STATE(1648)] = 72407, - [SMALL_STATE(1649)] = 72468, - [SMALL_STATE(1650)] = 72529, - [SMALL_STATE(1651)] = 72590, - [SMALL_STATE(1652)] = 72651, - [SMALL_STATE(1653)] = 72712, - [SMALL_STATE(1654)] = 72773, - [SMALL_STATE(1655)] = 72834, - [SMALL_STATE(1656)] = 72895, - [SMALL_STATE(1657)] = 72956, - [SMALL_STATE(1658)] = 73017, - [SMALL_STATE(1659)] = 73078, - [SMALL_STATE(1660)] = 73139, - [SMALL_STATE(1661)] = 73200, - [SMALL_STATE(1662)] = 73261, - [SMALL_STATE(1663)] = 73322, - [SMALL_STATE(1664)] = 73383, - [SMALL_STATE(1665)] = 73444, - [SMALL_STATE(1666)] = 73505, - [SMALL_STATE(1667)] = 73566, - [SMALL_STATE(1668)] = 73627, - [SMALL_STATE(1669)] = 73688, - [SMALL_STATE(1670)] = 73749, - [SMALL_STATE(1671)] = 73810, - [SMALL_STATE(1672)] = 73871, - [SMALL_STATE(1673)] = 73932, - [SMALL_STATE(1674)] = 73993, - [SMALL_STATE(1675)] = 74054, - [SMALL_STATE(1676)] = 74115, - [SMALL_STATE(1677)] = 74176, - [SMALL_STATE(1678)] = 74237, - [SMALL_STATE(1679)] = 74298, - [SMALL_STATE(1680)] = 74359, - [SMALL_STATE(1681)] = 74420, - [SMALL_STATE(1682)] = 74481, - [SMALL_STATE(1683)] = 74542, - [SMALL_STATE(1684)] = 74603, - [SMALL_STATE(1685)] = 74664, - [SMALL_STATE(1686)] = 74725, - [SMALL_STATE(1687)] = 74786, - [SMALL_STATE(1688)] = 74847, - [SMALL_STATE(1689)] = 74908, - [SMALL_STATE(1690)] = 74969, - [SMALL_STATE(1691)] = 75030, - [SMALL_STATE(1692)] = 75091, - [SMALL_STATE(1693)] = 75139, - [SMALL_STATE(1694)] = 75187, - [SMALL_STATE(1695)] = 75235, - [SMALL_STATE(1696)] = 75283, - [SMALL_STATE(1697)] = 75331, - [SMALL_STATE(1698)] = 75379, - [SMALL_STATE(1699)] = 75427, - [SMALL_STATE(1700)] = 75475, - [SMALL_STATE(1701)] = 75523, - [SMALL_STATE(1702)] = 75571, - [SMALL_STATE(1703)] = 75619, - [SMALL_STATE(1704)] = 75667, - [SMALL_STATE(1705)] = 75715, - [SMALL_STATE(1706)] = 75763, - [SMALL_STATE(1707)] = 75811, - [SMALL_STATE(1708)] = 75859, - [SMALL_STATE(1709)] = 75907, - [SMALL_STATE(1710)] = 75955, - [SMALL_STATE(1711)] = 76003, - [SMALL_STATE(1712)] = 76051, - [SMALL_STATE(1713)] = 76099, - [SMALL_STATE(1714)] = 76147, - [SMALL_STATE(1715)] = 76195, - [SMALL_STATE(1716)] = 76243, - [SMALL_STATE(1717)] = 76291, - [SMALL_STATE(1718)] = 76339, - [SMALL_STATE(1719)] = 76387, - [SMALL_STATE(1720)] = 76435, - [SMALL_STATE(1721)] = 76483, - [SMALL_STATE(1722)] = 76531, - [SMALL_STATE(1723)] = 76579, - [SMALL_STATE(1724)] = 76627, - [SMALL_STATE(1725)] = 76675, - [SMALL_STATE(1726)] = 76713, - [SMALL_STATE(1727)] = 76761, - [SMALL_STATE(1728)] = 76809, - [SMALL_STATE(1729)] = 76857, - [SMALL_STATE(1730)] = 76905, - [SMALL_STATE(1731)] = 76953, - [SMALL_STATE(1732)] = 77001, - [SMALL_STATE(1733)] = 77049, - [SMALL_STATE(1734)] = 77097, - [SMALL_STATE(1735)] = 77145, - [SMALL_STATE(1736)] = 77193, - [SMALL_STATE(1737)] = 77241, - [SMALL_STATE(1738)] = 77289, - [SMALL_STATE(1739)] = 77337, - [SMALL_STATE(1740)] = 77385, - [SMALL_STATE(1741)] = 77433, - [SMALL_STATE(1742)] = 77481, - [SMALL_STATE(1743)] = 77529, - [SMALL_STATE(1744)] = 77577, - [SMALL_STATE(1745)] = 77625, - [SMALL_STATE(1746)] = 77673, - [SMALL_STATE(1747)] = 77721, - [SMALL_STATE(1748)] = 77769, - [SMALL_STATE(1749)] = 77817, - [SMALL_STATE(1750)] = 77865, - [SMALL_STATE(1751)] = 77913, - [SMALL_STATE(1752)] = 77961, - [SMALL_STATE(1753)] = 78009, - [SMALL_STATE(1754)] = 78057, - [SMALL_STATE(1755)] = 78105, - [SMALL_STATE(1756)] = 78153, - [SMALL_STATE(1757)] = 78201, - [SMALL_STATE(1758)] = 78249, - [SMALL_STATE(1759)] = 78297, - [SMALL_STATE(1760)] = 78345, - [SMALL_STATE(1761)] = 78393, - [SMALL_STATE(1762)] = 78441, - [SMALL_STATE(1763)] = 78489, - [SMALL_STATE(1764)] = 78537, - [SMALL_STATE(1765)] = 78585, - [SMALL_STATE(1766)] = 78633, - [SMALL_STATE(1767)] = 78672, - [SMALL_STATE(1768)] = 78711, - [SMALL_STATE(1769)] = 78747, - [SMALL_STATE(1770)] = 78783, - [SMALL_STATE(1771)] = 78819, - [SMALL_STATE(1772)] = 78855, - [SMALL_STATE(1773)] = 78891, - [SMALL_STATE(1774)] = 78927, - [SMALL_STATE(1775)] = 78963, - [SMALL_STATE(1776)] = 78999, - [SMALL_STATE(1777)] = 79035, - [SMALL_STATE(1778)] = 79071, - [SMALL_STATE(1779)] = 79107, - [SMALL_STATE(1780)] = 79143, - [SMALL_STATE(1781)] = 79179, - [SMALL_STATE(1782)] = 79215, - [SMALL_STATE(1783)] = 79251, - [SMALL_STATE(1784)] = 79287, - [SMALL_STATE(1785)] = 79323, - [SMALL_STATE(1786)] = 79359, - [SMALL_STATE(1787)] = 79395, - [SMALL_STATE(1788)] = 79431, - [SMALL_STATE(1789)] = 79467, - [SMALL_STATE(1790)] = 79503, - [SMALL_STATE(1791)] = 79539, - [SMALL_STATE(1792)] = 79575, - [SMALL_STATE(1793)] = 79611, - [SMALL_STATE(1794)] = 79647, - [SMALL_STATE(1795)] = 79683, - [SMALL_STATE(1796)] = 79719, - [SMALL_STATE(1797)] = 79755, - [SMALL_STATE(1798)] = 79791, - [SMALL_STATE(1799)] = 79827, - [SMALL_STATE(1800)] = 79863, - [SMALL_STATE(1801)] = 79899, - [SMALL_STATE(1802)] = 79935, - [SMALL_STATE(1803)] = 79971, - [SMALL_STATE(1804)] = 80007, - [SMALL_STATE(1805)] = 80058, - [SMALL_STATE(1806)] = 80105, - [SMALL_STATE(1807)] = 80152, - [SMALL_STATE(1808)] = 80199, - [SMALL_STATE(1809)] = 80246, - [SMALL_STATE(1810)] = 80290, - [SMALL_STATE(1811)] = 80316, - [SMALL_STATE(1812)] = 80342, - [SMALL_STATE(1813)] = 80368, - [SMALL_STATE(1814)] = 80394, - [SMALL_STATE(1815)] = 80420, - [SMALL_STATE(1816)] = 80446, - [SMALL_STATE(1817)] = 80472, - [SMALL_STATE(1818)] = 80498, - [SMALL_STATE(1819)] = 80524, - [SMALL_STATE(1820)] = 80550, - [SMALL_STATE(1821)] = 80576, - [SMALL_STATE(1822)] = 80602, - [SMALL_STATE(1823)] = 80630, - [SMALL_STATE(1824)] = 80658, - [SMALL_STATE(1825)] = 80684, - [SMALL_STATE(1826)] = 80712, - [SMALL_STATE(1827)] = 80740, - [SMALL_STATE(1828)] = 80766, - [SMALL_STATE(1829)] = 80794, - [SMALL_STATE(1830)] = 80820, - [SMALL_STATE(1831)] = 80846, - [SMALL_STATE(1832)] = 80872, - [SMALL_STATE(1833)] = 80898, - [SMALL_STATE(1834)] = 80924, - [SMALL_STATE(1835)] = 80950, - [SMALL_STATE(1836)] = 80978, - [SMALL_STATE(1837)] = 81006, - [SMALL_STATE(1838)] = 81031, - [SMALL_STATE(1839)] = 81054, - [SMALL_STATE(1840)] = 81077, - [SMALL_STATE(1841)] = 81102, - [SMALL_STATE(1842)] = 81121, - [SMALL_STATE(1843)] = 81146, - [SMALL_STATE(1844)] = 81165, - [SMALL_STATE(1845)] = 81188, - [SMALL_STATE(1846)] = 81213, - [SMALL_STATE(1847)] = 81238, - [SMALL_STATE(1848)] = 81261, - [SMALL_STATE(1849)] = 81286, - [SMALL_STATE(1850)] = 81305, - [SMALL_STATE(1851)] = 81330, - [SMALL_STATE(1852)] = 81355, - [SMALL_STATE(1853)] = 81378, - [SMALL_STATE(1854)] = 81403, - [SMALL_STATE(1855)] = 81428, - [SMALL_STATE(1856)] = 81451, - [SMALL_STATE(1857)] = 81476, - [SMALL_STATE(1858)] = 81499, - [SMALL_STATE(1859)] = 81524, - [SMALL_STATE(1860)] = 81547, - [SMALL_STATE(1861)] = 81572, - [SMALL_STATE(1862)] = 81597, - [SMALL_STATE(1863)] = 81620, - [SMALL_STATE(1864)] = 81643, - [SMALL_STATE(1865)] = 81668, - [SMALL_STATE(1866)] = 81693, - [SMALL_STATE(1867)] = 81716, - [SMALL_STATE(1868)] = 81741, - [SMALL_STATE(1869)] = 81766, - [SMALL_STATE(1870)] = 81789, - [SMALL_STATE(1871)] = 81812, - [SMALL_STATE(1872)] = 81837, - [SMALL_STATE(1873)] = 81862, - [SMALL_STATE(1874)] = 81887, - [SMALL_STATE(1875)] = 81910, - [SMALL_STATE(1876)] = 81935, - [SMALL_STATE(1877)] = 81958, - [SMALL_STATE(1878)] = 81983, - [SMALL_STATE(1879)] = 82006, - [SMALL_STATE(1880)] = 82029, - [SMALL_STATE(1881)] = 82054, - [SMALL_STATE(1882)] = 82079, - [SMALL_STATE(1883)] = 82104, - [SMALL_STATE(1884)] = 82124, - [SMALL_STATE(1885)] = 82146, - [SMALL_STATE(1886)] = 82166, - [SMALL_STATE(1887)] = 82188, - [SMALL_STATE(1888)] = 82208, - [SMALL_STATE(1889)] = 82230, - [SMALL_STATE(1890)] = 82252, - [SMALL_STATE(1891)] = 82274, - [SMALL_STATE(1892)] = 82296, - [SMALL_STATE(1893)] = 82316, - [SMALL_STATE(1894)] = 82336, - [SMALL_STATE(1895)] = 82358, - [SMALL_STATE(1896)] = 82376, - [SMALL_STATE(1897)] = 82398, - [SMALL_STATE(1898)] = 82418, - [SMALL_STATE(1899)] = 82438, - [SMALL_STATE(1900)] = 82460, - [SMALL_STATE(1901)] = 82482, - [SMALL_STATE(1902)] = 82502, - [SMALL_STATE(1903)] = 82524, - [SMALL_STATE(1904)] = 82544, - [SMALL_STATE(1905)] = 82566, - [SMALL_STATE(1906)] = 82586, - [SMALL_STATE(1907)] = 82606, - [SMALL_STATE(1908)] = 82628, - [SMALL_STATE(1909)] = 82648, - [SMALL_STATE(1910)] = 82670, - [SMALL_STATE(1911)] = 82689, - [SMALL_STATE(1912)] = 82708, - [SMALL_STATE(1913)] = 82727, - [SMALL_STATE(1914)] = 82742, - [SMALL_STATE(1915)] = 82761, - [SMALL_STATE(1916)] = 82776, - [SMALL_STATE(1917)] = 82795, - [SMALL_STATE(1918)] = 82812, - [SMALL_STATE(1919)] = 82829, - [SMALL_STATE(1920)] = 82844, - [SMALL_STATE(1921)] = 82863, - [SMALL_STATE(1922)] = 82880, - [SMALL_STATE(1923)] = 82899, - [SMALL_STATE(1924)] = 82918, - [SMALL_STATE(1925)] = 82937, - [SMALL_STATE(1926)] = 82956, - [SMALL_STATE(1927)] = 82975, - [SMALL_STATE(1928)] = 82994, - [SMALL_STATE(1929)] = 83013, - [SMALL_STATE(1930)] = 83032, - [SMALL_STATE(1931)] = 83051, - [SMALL_STATE(1932)] = 83070, - [SMALL_STATE(1933)] = 83089, - [SMALL_STATE(1934)] = 83108, - [SMALL_STATE(1935)] = 83127, - [SMALL_STATE(1936)] = 83146, - [SMALL_STATE(1937)] = 83165, - [SMALL_STATE(1938)] = 83184, - [SMALL_STATE(1939)] = 83203, - [SMALL_STATE(1940)] = 83222, - [SMALL_STATE(1941)] = 83241, - [SMALL_STATE(1942)] = 83258, - [SMALL_STATE(1943)] = 83277, - [SMALL_STATE(1944)] = 83294, - [SMALL_STATE(1945)] = 83311, - [SMALL_STATE(1946)] = 83330, - [SMALL_STATE(1947)] = 83349, - [SMALL_STATE(1948)] = 83365, - [SMALL_STATE(1949)] = 83379, - [SMALL_STATE(1950)] = 83395, - [SMALL_STATE(1951)] = 83411, - [SMALL_STATE(1952)] = 83425, - [SMALL_STATE(1953)] = 83441, - [SMALL_STATE(1954)] = 83457, - [SMALL_STATE(1955)] = 83473, - [SMALL_STATE(1956)] = 83489, - [SMALL_STATE(1957)] = 83505, - [SMALL_STATE(1958)] = 83519, - [SMALL_STATE(1959)] = 83535, - [SMALL_STATE(1960)] = 83551, - [SMALL_STATE(1961)] = 83567, - [SMALL_STATE(1962)] = 83583, - [SMALL_STATE(1963)] = 83599, - [SMALL_STATE(1964)] = 83615, - [SMALL_STATE(1965)] = 83629, - [SMALL_STATE(1966)] = 83643, - [SMALL_STATE(1967)] = 83657, - [SMALL_STATE(1968)] = 83673, - [SMALL_STATE(1969)] = 83689, - [SMALL_STATE(1970)] = 83705, - [SMALL_STATE(1971)] = 83721, - [SMALL_STATE(1972)] = 83737, - [SMALL_STATE(1973)] = 83753, - [SMALL_STATE(1974)] = 83767, - [SMALL_STATE(1975)] = 83781, - [SMALL_STATE(1976)] = 83795, - [SMALL_STATE(1977)] = 83811, - [SMALL_STATE(1978)] = 83825, - [SMALL_STATE(1979)] = 83839, - [SMALL_STATE(1980)] = 83855, - [SMALL_STATE(1981)] = 83871, - [SMALL_STATE(1982)] = 83887, - [SMALL_STATE(1983)] = 83901, - [SMALL_STATE(1984)] = 83917, - [SMALL_STATE(1985)] = 83933, - [SMALL_STATE(1986)] = 83949, - [SMALL_STATE(1987)] = 83965, - [SMALL_STATE(1988)] = 83981, - [SMALL_STATE(1989)] = 83997, - [SMALL_STATE(1990)] = 84013, - [SMALL_STATE(1991)] = 84029, - [SMALL_STATE(1992)] = 84043, - [SMALL_STATE(1993)] = 84059, - [SMALL_STATE(1994)] = 84075, - [SMALL_STATE(1995)] = 84091, - [SMALL_STATE(1996)] = 84107, - [SMALL_STATE(1997)] = 84123, - [SMALL_STATE(1998)] = 84139, - [SMALL_STATE(1999)] = 84155, - [SMALL_STATE(2000)] = 84171, - [SMALL_STATE(2001)] = 84187, - [SMALL_STATE(2002)] = 84203, - [SMALL_STATE(2003)] = 84219, - [SMALL_STATE(2004)] = 84235, - [SMALL_STATE(2005)] = 84251, - [SMALL_STATE(2006)] = 84267, - [SMALL_STATE(2007)] = 84283, - [SMALL_STATE(2008)] = 84299, - [SMALL_STATE(2009)] = 84315, - [SMALL_STATE(2010)] = 84331, - [SMALL_STATE(2011)] = 84347, - [SMALL_STATE(2012)] = 84363, - [SMALL_STATE(2013)] = 84379, - [SMALL_STATE(2014)] = 84395, - [SMALL_STATE(2015)] = 84409, - [SMALL_STATE(2016)] = 84425, - [SMALL_STATE(2017)] = 84441, - [SMALL_STATE(2018)] = 84457, - [SMALL_STATE(2019)] = 84473, - [SMALL_STATE(2020)] = 84489, - [SMALL_STATE(2021)] = 84505, - [SMALL_STATE(2022)] = 84521, - [SMALL_STATE(2023)] = 84537, - [SMALL_STATE(2024)] = 84551, - [SMALL_STATE(2025)] = 84567, - [SMALL_STATE(2026)] = 84583, - [SMALL_STATE(2027)] = 84599, - [SMALL_STATE(2028)] = 84615, - [SMALL_STATE(2029)] = 84631, - [SMALL_STATE(2030)] = 84647, - [SMALL_STATE(2031)] = 84663, - [SMALL_STATE(2032)] = 84679, - [SMALL_STATE(2033)] = 84695, - [SMALL_STATE(2034)] = 84711, - [SMALL_STATE(2035)] = 84727, - [SMALL_STATE(2036)] = 84743, - [SMALL_STATE(2037)] = 84759, - [SMALL_STATE(2038)] = 84775, - [SMALL_STATE(2039)] = 84791, - [SMALL_STATE(2040)] = 84807, - [SMALL_STATE(2041)] = 84823, - [SMALL_STATE(2042)] = 84839, - [SMALL_STATE(2043)] = 84855, - [SMALL_STATE(2044)] = 84871, - [SMALL_STATE(2045)] = 84885, - [SMALL_STATE(2046)] = 84901, - [SMALL_STATE(2047)] = 84917, - [SMALL_STATE(2048)] = 84933, - [SMALL_STATE(2049)] = 84949, - [SMALL_STATE(2050)] = 84965, - [SMALL_STATE(2051)] = 84981, - [SMALL_STATE(2052)] = 84997, - [SMALL_STATE(2053)] = 85013, - [SMALL_STATE(2054)] = 85029, - [SMALL_STATE(2055)] = 85045, - [SMALL_STATE(2056)] = 85061, - [SMALL_STATE(2057)] = 85077, - [SMALL_STATE(2058)] = 85093, - [SMALL_STATE(2059)] = 85107, - [SMALL_STATE(2060)] = 85121, - [SMALL_STATE(2061)] = 85137, - [SMALL_STATE(2062)] = 85151, - [SMALL_STATE(2063)] = 85165, - [SMALL_STATE(2064)] = 85179, - [SMALL_STATE(2065)] = 85195, - [SMALL_STATE(2066)] = 85211, - [SMALL_STATE(2067)] = 85227, - [SMALL_STATE(2068)] = 85243, - [SMALL_STATE(2069)] = 85259, - [SMALL_STATE(2070)] = 85275, - [SMALL_STATE(2071)] = 85291, - [SMALL_STATE(2072)] = 85307, - [SMALL_STATE(2073)] = 85323, - [SMALL_STATE(2074)] = 85339, - [SMALL_STATE(2075)] = 85353, - [SMALL_STATE(2076)] = 85369, - [SMALL_STATE(2077)] = 85385, - [SMALL_STATE(2078)] = 85401, - [SMALL_STATE(2079)] = 85417, - [SMALL_STATE(2080)] = 85433, - [SMALL_STATE(2081)] = 85449, - [SMALL_STATE(2082)] = 85465, - [SMALL_STATE(2083)] = 85479, - [SMALL_STATE(2084)] = 85495, - [SMALL_STATE(2085)] = 85511, - [SMALL_STATE(2086)] = 85527, - [SMALL_STATE(2087)] = 85543, - [SMALL_STATE(2088)] = 85557, - [SMALL_STATE(2089)] = 85573, - [SMALL_STATE(2090)] = 85589, - [SMALL_STATE(2091)] = 85605, - [SMALL_STATE(2092)] = 85621, - [SMALL_STATE(2093)] = 85635, - [SMALL_STATE(2094)] = 85651, - [SMALL_STATE(2095)] = 85667, - [SMALL_STATE(2096)] = 85683, - [SMALL_STATE(2097)] = 85699, - [SMALL_STATE(2098)] = 85715, - [SMALL_STATE(2099)] = 85731, - [SMALL_STATE(2100)] = 85747, - [SMALL_STATE(2101)] = 85763, - [SMALL_STATE(2102)] = 85779, - [SMALL_STATE(2103)] = 85795, - [SMALL_STATE(2104)] = 85811, - [SMALL_STATE(2105)] = 85827, - [SMALL_STATE(2106)] = 85843, - [SMALL_STATE(2107)] = 85859, - [SMALL_STATE(2108)] = 85875, - [SMALL_STATE(2109)] = 85891, - [SMALL_STATE(2110)] = 85905, - [SMALL_STATE(2111)] = 85921, - [SMALL_STATE(2112)] = 85937, - [SMALL_STATE(2113)] = 85953, - [SMALL_STATE(2114)] = 85969, - [SMALL_STATE(2115)] = 85985, - [SMALL_STATE(2116)] = 86001, - [SMALL_STATE(2117)] = 86017, - [SMALL_STATE(2118)] = 86033, - [SMALL_STATE(2119)] = 86049, - [SMALL_STATE(2120)] = 86063, - [SMALL_STATE(2121)] = 86079, - [SMALL_STATE(2122)] = 86095, - [SMALL_STATE(2123)] = 86111, - [SMALL_STATE(2124)] = 86127, - [SMALL_STATE(2125)] = 86143, - [SMALL_STATE(2126)] = 86159, - [SMALL_STATE(2127)] = 86175, - [SMALL_STATE(2128)] = 86191, - [SMALL_STATE(2129)] = 86207, - [SMALL_STATE(2130)] = 86223, - [SMALL_STATE(2131)] = 86239, - [SMALL_STATE(2132)] = 86255, - [SMALL_STATE(2133)] = 86271, - [SMALL_STATE(2134)] = 86287, - [SMALL_STATE(2135)] = 86303, - [SMALL_STATE(2136)] = 86319, - [SMALL_STATE(2137)] = 86335, - [SMALL_STATE(2138)] = 86351, - [SMALL_STATE(2139)] = 86367, - [SMALL_STATE(2140)] = 86383, - [SMALL_STATE(2141)] = 86399, - [SMALL_STATE(2142)] = 86415, - [SMALL_STATE(2143)] = 86431, - [SMALL_STATE(2144)] = 86447, - [SMALL_STATE(2145)] = 86463, - [SMALL_STATE(2146)] = 86479, - [SMALL_STATE(2147)] = 86493, - [SMALL_STATE(2148)] = 86509, - [SMALL_STATE(2149)] = 86525, - [SMALL_STATE(2150)] = 86538, - [SMALL_STATE(2151)] = 86551, - [SMALL_STATE(2152)] = 86564, - [SMALL_STATE(2153)] = 86577, - [SMALL_STATE(2154)] = 86590, - [SMALL_STATE(2155)] = 86603, - [SMALL_STATE(2156)] = 86616, - [SMALL_STATE(2157)] = 86629, - [SMALL_STATE(2158)] = 86642, - [SMALL_STATE(2159)] = 86655, - [SMALL_STATE(2160)] = 86668, - [SMALL_STATE(2161)] = 86681, - [SMALL_STATE(2162)] = 86694, - [SMALL_STATE(2163)] = 86707, - [SMALL_STATE(2164)] = 86720, - [SMALL_STATE(2165)] = 86733, - [SMALL_STATE(2166)] = 86746, - [SMALL_STATE(2167)] = 86759, - [SMALL_STATE(2168)] = 86772, - [SMALL_STATE(2169)] = 86785, - [SMALL_STATE(2170)] = 86798, - [SMALL_STATE(2171)] = 86811, - [SMALL_STATE(2172)] = 86824, - [SMALL_STATE(2173)] = 86837, - [SMALL_STATE(2174)] = 86850, - [SMALL_STATE(2175)] = 86863, - [SMALL_STATE(2176)] = 86876, - [SMALL_STATE(2177)] = 86889, - [SMALL_STATE(2178)] = 86902, - [SMALL_STATE(2179)] = 86915, - [SMALL_STATE(2180)] = 86928, - [SMALL_STATE(2181)] = 86941, - [SMALL_STATE(2182)] = 86954, - [SMALL_STATE(2183)] = 86967, - [SMALL_STATE(2184)] = 86980, - [SMALL_STATE(2185)] = 86993, - [SMALL_STATE(2186)] = 87006, - [SMALL_STATE(2187)] = 87019, - [SMALL_STATE(2188)] = 87032, - [SMALL_STATE(2189)] = 87045, - [SMALL_STATE(2190)] = 87058, - [SMALL_STATE(2191)] = 87071, - [SMALL_STATE(2192)] = 87084, - [SMALL_STATE(2193)] = 87097, - [SMALL_STATE(2194)] = 87110, - [SMALL_STATE(2195)] = 87123, - [SMALL_STATE(2196)] = 87136, - [SMALL_STATE(2197)] = 87149, - [SMALL_STATE(2198)] = 87162, - [SMALL_STATE(2199)] = 87175, - [SMALL_STATE(2200)] = 87188, - [SMALL_STATE(2201)] = 87201, - [SMALL_STATE(2202)] = 87214, - [SMALL_STATE(2203)] = 87227, - [SMALL_STATE(2204)] = 87240, - [SMALL_STATE(2205)] = 87253, - [SMALL_STATE(2206)] = 87266, - [SMALL_STATE(2207)] = 87279, - [SMALL_STATE(2208)] = 87292, - [SMALL_STATE(2209)] = 87305, - [SMALL_STATE(2210)] = 87318, - [SMALL_STATE(2211)] = 87331, - [SMALL_STATE(2212)] = 87344, - [SMALL_STATE(2213)] = 87357, - [SMALL_STATE(2214)] = 87370, - [SMALL_STATE(2215)] = 87383, - [SMALL_STATE(2216)] = 87396, - [SMALL_STATE(2217)] = 87409, - [SMALL_STATE(2218)] = 87422, - [SMALL_STATE(2219)] = 87435, - [SMALL_STATE(2220)] = 87448, - [SMALL_STATE(2221)] = 87461, - [SMALL_STATE(2222)] = 87474, - [SMALL_STATE(2223)] = 87487, - [SMALL_STATE(2224)] = 87500, - [SMALL_STATE(2225)] = 87513, - [SMALL_STATE(2226)] = 87526, - [SMALL_STATE(2227)] = 87539, - [SMALL_STATE(2228)] = 87552, - [SMALL_STATE(2229)] = 87565, - [SMALL_STATE(2230)] = 87578, - [SMALL_STATE(2231)] = 87591, - [SMALL_STATE(2232)] = 87604, - [SMALL_STATE(2233)] = 87617, - [SMALL_STATE(2234)] = 87630, - [SMALL_STATE(2235)] = 87643, - [SMALL_STATE(2236)] = 87656, - [SMALL_STATE(2237)] = 87669, - [SMALL_STATE(2238)] = 87682, - [SMALL_STATE(2239)] = 87695, - [SMALL_STATE(2240)] = 87708, - [SMALL_STATE(2241)] = 87721, - [SMALL_STATE(2242)] = 87734, - [SMALL_STATE(2243)] = 87747, - [SMALL_STATE(2244)] = 87760, - [SMALL_STATE(2245)] = 87773, - [SMALL_STATE(2246)] = 87786, - [SMALL_STATE(2247)] = 87799, - [SMALL_STATE(2248)] = 87812, - [SMALL_STATE(2249)] = 87825, - [SMALL_STATE(2250)] = 87838, - [SMALL_STATE(2251)] = 87851, - [SMALL_STATE(2252)] = 87864, - [SMALL_STATE(2253)] = 87877, - [SMALL_STATE(2254)] = 87890, - [SMALL_STATE(2255)] = 87903, - [SMALL_STATE(2256)] = 87916, - [SMALL_STATE(2257)] = 87929, - [SMALL_STATE(2258)] = 87942, - [SMALL_STATE(2259)] = 87955, - [SMALL_STATE(2260)] = 87968, - [SMALL_STATE(2261)] = 87981, - [SMALL_STATE(2262)] = 87994, - [SMALL_STATE(2263)] = 88007, - [SMALL_STATE(2264)] = 88020, - [SMALL_STATE(2265)] = 88033, - [SMALL_STATE(2266)] = 88046, - [SMALL_STATE(2267)] = 88059, - [SMALL_STATE(2268)] = 88072, - [SMALL_STATE(2269)] = 88085, - [SMALL_STATE(2270)] = 88098, - [SMALL_STATE(2271)] = 88111, - [SMALL_STATE(2272)] = 88124, - [SMALL_STATE(2273)] = 88137, - [SMALL_STATE(2274)] = 88150, - [SMALL_STATE(2275)] = 88163, - [SMALL_STATE(2276)] = 88176, - [SMALL_STATE(2277)] = 88189, - [SMALL_STATE(2278)] = 88202, - [SMALL_STATE(2279)] = 88215, - [SMALL_STATE(2280)] = 88228, - [SMALL_STATE(2281)] = 88241, - [SMALL_STATE(2282)] = 88254, - [SMALL_STATE(2283)] = 88267, - [SMALL_STATE(2284)] = 88280, - [SMALL_STATE(2285)] = 88293, - [SMALL_STATE(2286)] = 88306, - [SMALL_STATE(2287)] = 88319, - [SMALL_STATE(2288)] = 88332, - [SMALL_STATE(2289)] = 88345, - [SMALL_STATE(2290)] = 88358, - [SMALL_STATE(2291)] = 88371, - [SMALL_STATE(2292)] = 88384, - [SMALL_STATE(2293)] = 88397, - [SMALL_STATE(2294)] = 88410, - [SMALL_STATE(2295)] = 88423, - [SMALL_STATE(2296)] = 88436, - [SMALL_STATE(2297)] = 88449, - [SMALL_STATE(2298)] = 88462, - [SMALL_STATE(2299)] = 88475, - [SMALL_STATE(2300)] = 88488, - [SMALL_STATE(2301)] = 88501, - [SMALL_STATE(2302)] = 88514, - [SMALL_STATE(2303)] = 88527, - [SMALL_STATE(2304)] = 88540, - [SMALL_STATE(2305)] = 88553, - [SMALL_STATE(2306)] = 88566, - [SMALL_STATE(2307)] = 88579, - [SMALL_STATE(2308)] = 88592, - [SMALL_STATE(2309)] = 88605, - [SMALL_STATE(2310)] = 88618, - [SMALL_STATE(2311)] = 88631, - [SMALL_STATE(2312)] = 88644, - [SMALL_STATE(2313)] = 88657, - [SMALL_STATE(2314)] = 88670, - [SMALL_STATE(2315)] = 88683, - [SMALL_STATE(2316)] = 88696, - [SMALL_STATE(2317)] = 88709, - [SMALL_STATE(2318)] = 88722, - [SMALL_STATE(2319)] = 88735, - [SMALL_STATE(2320)] = 88748, - [SMALL_STATE(2321)] = 88761, - [SMALL_STATE(2322)] = 88774, - [SMALL_STATE(2323)] = 88787, - [SMALL_STATE(2324)] = 88800, - [SMALL_STATE(2325)] = 88813, - [SMALL_STATE(2326)] = 88826, - [SMALL_STATE(2327)] = 88839, - [SMALL_STATE(2328)] = 88852, - [SMALL_STATE(2329)] = 88865, - [SMALL_STATE(2330)] = 88878, - [SMALL_STATE(2331)] = 88891, - [SMALL_STATE(2332)] = 88904, - [SMALL_STATE(2333)] = 88917, - [SMALL_STATE(2334)] = 88930, - [SMALL_STATE(2335)] = 88943, - [SMALL_STATE(2336)] = 88956, - [SMALL_STATE(2337)] = 88969, - [SMALL_STATE(2338)] = 88982, - [SMALL_STATE(2339)] = 88995, - [SMALL_STATE(2340)] = 89008, - [SMALL_STATE(2341)] = 89021, - [SMALL_STATE(2342)] = 89034, - [SMALL_STATE(2343)] = 89047, - [SMALL_STATE(2344)] = 89060, - [SMALL_STATE(2345)] = 89073, - [SMALL_STATE(2346)] = 89086, - [SMALL_STATE(2347)] = 89099, - [SMALL_STATE(2348)] = 89112, - [SMALL_STATE(2349)] = 89125, - [SMALL_STATE(2350)] = 89138, - [SMALL_STATE(2351)] = 89151, - [SMALL_STATE(2352)] = 89164, - [SMALL_STATE(2353)] = 89177, - [SMALL_STATE(2354)] = 89190, - [SMALL_STATE(2355)] = 89203, - [SMALL_STATE(2356)] = 89216, - [SMALL_STATE(2357)] = 89229, - [SMALL_STATE(2358)] = 89242, - [SMALL_STATE(2359)] = 89255, - [SMALL_STATE(2360)] = 89268, - [SMALL_STATE(2361)] = 89281, - [SMALL_STATE(2362)] = 89294, - [SMALL_STATE(2363)] = 89307, - [SMALL_STATE(2364)] = 89320, - [SMALL_STATE(2365)] = 89333, - [SMALL_STATE(2366)] = 89346, - [SMALL_STATE(2367)] = 89359, - [SMALL_STATE(2368)] = 89372, - [SMALL_STATE(2369)] = 89385, - [SMALL_STATE(2370)] = 89398, - [SMALL_STATE(2371)] = 89411, - [SMALL_STATE(2372)] = 89424, - [SMALL_STATE(2373)] = 89437, - [SMALL_STATE(2374)] = 89450, - [SMALL_STATE(2375)] = 89463, - [SMALL_STATE(2376)] = 89476, - [SMALL_STATE(2377)] = 89489, - [SMALL_STATE(2378)] = 89502, - [SMALL_STATE(2379)] = 89515, - [SMALL_STATE(2380)] = 89528, - [SMALL_STATE(2381)] = 89541, - [SMALL_STATE(2382)] = 89554, - [SMALL_STATE(2383)] = 89567, - [SMALL_STATE(2384)] = 89580, - [SMALL_STATE(2385)] = 89593, - [SMALL_STATE(2386)] = 89606, - [SMALL_STATE(2387)] = 89619, - [SMALL_STATE(2388)] = 89632, - [SMALL_STATE(2389)] = 89645, - [SMALL_STATE(2390)] = 89658, - [SMALL_STATE(2391)] = 89671, - [SMALL_STATE(2392)] = 89684, - [SMALL_STATE(2393)] = 89697, - [SMALL_STATE(2394)] = 89710, - [SMALL_STATE(2395)] = 89723, - [SMALL_STATE(2396)] = 89736, - [SMALL_STATE(2397)] = 89749, - [SMALL_STATE(2398)] = 89762, - [SMALL_STATE(2399)] = 89775, - [SMALL_STATE(2400)] = 89788, - [SMALL_STATE(2401)] = 89801, - [SMALL_STATE(2402)] = 89814, - [SMALL_STATE(2403)] = 89827, - [SMALL_STATE(2404)] = 89840, - [SMALL_STATE(2405)] = 89853, - [SMALL_STATE(2406)] = 89866, - [SMALL_STATE(2407)] = 89879, - [SMALL_STATE(2408)] = 89892, - [SMALL_STATE(2409)] = 89905, - [SMALL_STATE(2410)] = 89918, - [SMALL_STATE(2411)] = 89931, - [SMALL_STATE(2412)] = 89944, - [SMALL_STATE(2413)] = 89957, - [SMALL_STATE(2414)] = 89970, - [SMALL_STATE(2415)] = 89983, - [SMALL_STATE(2416)] = 89996, - [SMALL_STATE(2417)] = 90009, - [SMALL_STATE(2418)] = 90022, - [SMALL_STATE(2419)] = 90035, - [SMALL_STATE(2420)] = 90048, - [SMALL_STATE(2421)] = 90061, - [SMALL_STATE(2422)] = 90074, - [SMALL_STATE(2423)] = 90087, - [SMALL_STATE(2424)] = 90100, - [SMALL_STATE(2425)] = 90113, - [SMALL_STATE(2426)] = 90126, - [SMALL_STATE(2427)] = 90139, - [SMALL_STATE(2428)] = 90152, - [SMALL_STATE(2429)] = 90165, - [SMALL_STATE(2430)] = 90178, - [SMALL_STATE(2431)] = 90191, - [SMALL_STATE(2432)] = 90204, - [SMALL_STATE(2433)] = 90217, - [SMALL_STATE(2434)] = 90230, - [SMALL_STATE(2435)] = 90243, - [SMALL_STATE(2436)] = 90256, - [SMALL_STATE(2437)] = 90269, - [SMALL_STATE(2438)] = 90282, - [SMALL_STATE(2439)] = 90295, - [SMALL_STATE(2440)] = 90308, - [SMALL_STATE(2441)] = 90321, - [SMALL_STATE(2442)] = 90334, - [SMALL_STATE(2443)] = 90347, - [SMALL_STATE(2444)] = 90360, - [SMALL_STATE(2445)] = 90373, - [SMALL_STATE(2446)] = 90386, - [SMALL_STATE(2447)] = 90399, - [SMALL_STATE(2448)] = 90412, - [SMALL_STATE(2449)] = 90425, - [SMALL_STATE(2450)] = 90438, - [SMALL_STATE(2451)] = 90451, - [SMALL_STATE(2452)] = 90464, - [SMALL_STATE(2453)] = 90477, - [SMALL_STATE(2454)] = 90490, - [SMALL_STATE(2455)] = 90503, - [SMALL_STATE(2456)] = 90516, - [SMALL_STATE(2457)] = 90529, - [SMALL_STATE(2458)] = 90542, - [SMALL_STATE(2459)] = 90555, - [SMALL_STATE(2460)] = 90568, - [SMALL_STATE(2461)] = 90581, - [SMALL_STATE(2462)] = 90594, - [SMALL_STATE(2463)] = 90607, - [SMALL_STATE(2464)] = 90620, - [SMALL_STATE(2465)] = 90633, - [SMALL_STATE(2466)] = 90646, - [SMALL_STATE(2467)] = 90659, - [SMALL_STATE(2468)] = 90672, - [SMALL_STATE(2469)] = 90685, - [SMALL_STATE(2470)] = 90698, - [SMALL_STATE(2471)] = 90711, - [SMALL_STATE(2472)] = 90724, - [SMALL_STATE(2473)] = 90737, - [SMALL_STATE(2474)] = 90750, - [SMALL_STATE(2475)] = 90763, - [SMALL_STATE(2476)] = 90776, - [SMALL_STATE(2477)] = 90789, - [SMALL_STATE(2478)] = 90802, - [SMALL_STATE(2479)] = 90815, - [SMALL_STATE(2480)] = 90828, - [SMALL_STATE(2481)] = 90841, - [SMALL_STATE(2482)] = 90854, - [SMALL_STATE(2483)] = 90867, - [SMALL_STATE(2484)] = 90880, - [SMALL_STATE(2485)] = 90893, - [SMALL_STATE(2486)] = 90906, - [SMALL_STATE(2487)] = 90919, - [SMALL_STATE(2488)] = 90932, - [SMALL_STATE(2489)] = 90945, - [SMALL_STATE(2490)] = 90958, - [SMALL_STATE(2491)] = 90971, - [SMALL_STATE(2492)] = 90984, - [SMALL_STATE(2493)] = 90997, - [SMALL_STATE(2494)] = 91010, - [SMALL_STATE(2495)] = 91023, - [SMALL_STATE(2496)] = 91036, - [SMALL_STATE(2497)] = 91049, - [SMALL_STATE(2498)] = 91062, - [SMALL_STATE(2499)] = 91075, - [SMALL_STATE(2500)] = 91088, - [SMALL_STATE(2501)] = 91101, - [SMALL_STATE(2502)] = 91114, - [SMALL_STATE(2503)] = 91127, - [SMALL_STATE(2504)] = 91140, - [SMALL_STATE(2505)] = 91153, - [SMALL_STATE(2506)] = 91166, - [SMALL_STATE(2507)] = 91179, - [SMALL_STATE(2508)] = 91192, - [SMALL_STATE(2509)] = 91205, - [SMALL_STATE(2510)] = 91218, - [SMALL_STATE(2511)] = 91231, - [SMALL_STATE(2512)] = 91244, - [SMALL_STATE(2513)] = 91257, - [SMALL_STATE(2514)] = 91270, - [SMALL_STATE(2515)] = 91283, - [SMALL_STATE(2516)] = 91296, - [SMALL_STATE(2517)] = 91309, - [SMALL_STATE(2518)] = 91322, - [SMALL_STATE(2519)] = 91335, - [SMALL_STATE(2520)] = 91348, - [SMALL_STATE(2521)] = 91361, - [SMALL_STATE(2522)] = 91374, - [SMALL_STATE(2523)] = 91387, - [SMALL_STATE(2524)] = 91400, - [SMALL_STATE(2525)] = 91413, - [SMALL_STATE(2526)] = 91426, - [SMALL_STATE(2527)] = 91439, - [SMALL_STATE(2528)] = 91452, - [SMALL_STATE(2529)] = 91465, - [SMALL_STATE(2530)] = 91478, - [SMALL_STATE(2531)] = 91491, - [SMALL_STATE(2532)] = 91504, - [SMALL_STATE(2533)] = 91517, - [SMALL_STATE(2534)] = 91530, - [SMALL_STATE(2535)] = 91543, - [SMALL_STATE(2536)] = 91556, - [SMALL_STATE(2537)] = 91569, - [SMALL_STATE(2538)] = 91582, - [SMALL_STATE(2539)] = 91595, - [SMALL_STATE(2540)] = 91608, - [SMALL_STATE(2541)] = 91621, - [SMALL_STATE(2542)] = 91634, - [SMALL_STATE(2543)] = 91647, - [SMALL_STATE(2544)] = 91660, - [SMALL_STATE(2545)] = 91673, - [SMALL_STATE(2546)] = 91686, - [SMALL_STATE(2547)] = 91699, - [SMALL_STATE(2548)] = 91712, - [SMALL_STATE(2549)] = 91725, - [SMALL_STATE(2550)] = 91738, - [SMALL_STATE(2551)] = 91751, - [SMALL_STATE(2552)] = 91764, - [SMALL_STATE(2553)] = 91777, - [SMALL_STATE(2554)] = 91790, - [SMALL_STATE(2555)] = 91803, - [SMALL_STATE(2556)] = 91816, - [SMALL_STATE(2557)] = 91829, - [SMALL_STATE(2558)] = 91842, - [SMALL_STATE(2559)] = 91855, - [SMALL_STATE(2560)] = 91868, - [SMALL_STATE(2561)] = 91881, - [SMALL_STATE(2562)] = 91894, - [SMALL_STATE(2563)] = 91907, - [SMALL_STATE(2564)] = 91920, - [SMALL_STATE(2565)] = 91933, - [SMALL_STATE(2566)] = 91946, - [SMALL_STATE(2567)] = 91959, - [SMALL_STATE(2568)] = 91972, - [SMALL_STATE(2569)] = 91985, - [SMALL_STATE(2570)] = 91998, - [SMALL_STATE(2571)] = 92011, - [SMALL_STATE(2572)] = 92024, - [SMALL_STATE(2573)] = 92037, - [SMALL_STATE(2574)] = 92050, - [SMALL_STATE(2575)] = 92063, - [SMALL_STATE(2576)] = 92076, - [SMALL_STATE(2577)] = 92089, - [SMALL_STATE(2578)] = 92102, - [SMALL_STATE(2579)] = 92115, - [SMALL_STATE(2580)] = 92128, - [SMALL_STATE(2581)] = 92141, - [SMALL_STATE(2582)] = 92154, - [SMALL_STATE(2583)] = 92167, - [SMALL_STATE(2584)] = 92180, - [SMALL_STATE(2585)] = 92193, - [SMALL_STATE(2586)] = 92206, - [SMALL_STATE(2587)] = 92219, - [SMALL_STATE(2588)] = 92232, - [SMALL_STATE(2589)] = 92245, - [SMALL_STATE(2590)] = 92258, - [SMALL_STATE(2591)] = 92271, - [SMALL_STATE(2592)] = 92284, - [SMALL_STATE(2593)] = 92297, - [SMALL_STATE(2594)] = 92310, - [SMALL_STATE(2595)] = 92323, - [SMALL_STATE(2596)] = 92336, - [SMALL_STATE(2597)] = 92349, - [SMALL_STATE(2598)] = 92362, - [SMALL_STATE(2599)] = 92375, - [SMALL_STATE(2600)] = 92388, - [SMALL_STATE(2601)] = 92401, - [SMALL_STATE(2602)] = 92414, - [SMALL_STATE(2603)] = 92427, - [SMALL_STATE(2604)] = 92440, - [SMALL_STATE(2605)] = 92453, - [SMALL_STATE(2606)] = 92466, - [SMALL_STATE(2607)] = 92479, - [SMALL_STATE(2608)] = 92492, - [SMALL_STATE(2609)] = 92505, - [SMALL_STATE(2610)] = 92518, - [SMALL_STATE(2611)] = 92531, - [SMALL_STATE(2612)] = 92544, - [SMALL_STATE(2613)] = 92557, - [SMALL_STATE(2614)] = 92570, - [SMALL_STATE(2615)] = 92583, - [SMALL_STATE(2616)] = 92596, - [SMALL_STATE(2617)] = 92609, - [SMALL_STATE(2618)] = 92622, - [SMALL_STATE(2619)] = 92635, - [SMALL_STATE(2620)] = 92648, - [SMALL_STATE(2621)] = 92661, - [SMALL_STATE(2622)] = 92674, - [SMALL_STATE(2623)] = 92687, - [SMALL_STATE(2624)] = 92700, - [SMALL_STATE(2625)] = 92713, - [SMALL_STATE(2626)] = 92726, - [SMALL_STATE(2627)] = 92739, - [SMALL_STATE(2628)] = 92752, - [SMALL_STATE(2629)] = 92765, - [SMALL_STATE(2630)] = 92778, - [SMALL_STATE(2631)] = 92791, - [SMALL_STATE(2632)] = 92804, - [SMALL_STATE(2633)] = 92817, - [SMALL_STATE(2634)] = 92830, - [SMALL_STATE(2635)] = 92843, - [SMALL_STATE(2636)] = 92856, - [SMALL_STATE(2637)] = 92869, - [SMALL_STATE(2638)] = 92882, - [SMALL_STATE(2639)] = 92895, - [SMALL_STATE(2640)] = 92908, - [SMALL_STATE(2641)] = 92921, - [SMALL_STATE(2642)] = 92934, - [SMALL_STATE(2643)] = 92947, - [SMALL_STATE(2644)] = 92960, - [SMALL_STATE(2645)] = 92973, - [SMALL_STATE(2646)] = 92986, - [SMALL_STATE(2647)] = 92999, - [SMALL_STATE(2648)] = 93012, - [SMALL_STATE(2649)] = 93025, - [SMALL_STATE(2650)] = 93038, - [SMALL_STATE(2651)] = 93051, - [SMALL_STATE(2652)] = 93064, - [SMALL_STATE(2653)] = 93077, - [SMALL_STATE(2654)] = 93090, - [SMALL_STATE(2655)] = 93103, - [SMALL_STATE(2656)] = 93116, - [SMALL_STATE(2657)] = 93129, - [SMALL_STATE(2658)] = 93142, - [SMALL_STATE(2659)] = 93155, - [SMALL_STATE(2660)] = 93168, - [SMALL_STATE(2661)] = 93181, - [SMALL_STATE(2662)] = 93194, - [SMALL_STATE(2663)] = 93207, - [SMALL_STATE(2664)] = 93220, - [SMALL_STATE(2665)] = 93233, - [SMALL_STATE(2666)] = 93246, - [SMALL_STATE(2667)] = 93259, - [SMALL_STATE(2668)] = 93272, - [SMALL_STATE(2669)] = 93285, - [SMALL_STATE(2670)] = 93298, - [SMALL_STATE(2671)] = 93311, - [SMALL_STATE(2672)] = 93324, - [SMALL_STATE(2673)] = 93337, - [SMALL_STATE(2674)] = 93350, - [SMALL_STATE(2675)] = 93363, - [SMALL_STATE(2676)] = 93376, - [SMALL_STATE(2677)] = 93389, - [SMALL_STATE(2678)] = 93402, - [SMALL_STATE(2679)] = 93415, - [SMALL_STATE(2680)] = 93428, - [SMALL_STATE(2681)] = 93441, - [SMALL_STATE(2682)] = 93454, - [SMALL_STATE(2683)] = 93467, - [SMALL_STATE(2684)] = 93480, - [SMALL_STATE(2685)] = 93493, - [SMALL_STATE(2686)] = 93506, - [SMALL_STATE(2687)] = 93519, - [SMALL_STATE(2688)] = 93532, - [SMALL_STATE(2689)] = 93545, - [SMALL_STATE(2690)] = 93558, - [SMALL_STATE(2691)] = 93571, - [SMALL_STATE(2692)] = 93584, - [SMALL_STATE(2693)] = 93597, - [SMALL_STATE(2694)] = 93610, - [SMALL_STATE(2695)] = 93623, - [SMALL_STATE(2696)] = 93636, - [SMALL_STATE(2697)] = 93649, - [SMALL_STATE(2698)] = 93662, - [SMALL_STATE(2699)] = 93675, - [SMALL_STATE(2700)] = 93688, - [SMALL_STATE(2701)] = 93701, - [SMALL_STATE(2702)] = 93714, - [SMALL_STATE(2703)] = 93727, - [SMALL_STATE(2704)] = 93740, - [SMALL_STATE(2705)] = 93753, - [SMALL_STATE(2706)] = 93766, - [SMALL_STATE(2707)] = 93779, - [SMALL_STATE(2708)] = 93792, - [SMALL_STATE(2709)] = 93805, - [SMALL_STATE(2710)] = 93818, - [SMALL_STATE(2711)] = 93831, - [SMALL_STATE(2712)] = 93844, - [SMALL_STATE(2713)] = 93857, - [SMALL_STATE(2714)] = 93870, - [SMALL_STATE(2715)] = 93883, - [SMALL_STATE(2716)] = 93896, - [SMALL_STATE(2717)] = 93909, - [SMALL_STATE(2718)] = 93922, - [SMALL_STATE(2719)] = 93935, - [SMALL_STATE(2720)] = 93948, - [SMALL_STATE(2721)] = 93961, - [SMALL_STATE(2722)] = 93974, - [SMALL_STATE(2723)] = 93987, - [SMALL_STATE(2724)] = 94000, - [SMALL_STATE(2725)] = 94013, - [SMALL_STATE(2726)] = 94026, - [SMALL_STATE(2727)] = 94039, - [SMALL_STATE(2728)] = 94052, - [SMALL_STATE(2729)] = 94065, - [SMALL_STATE(2730)] = 94078, - [SMALL_STATE(2731)] = 94091, - [SMALL_STATE(2732)] = 94104, - [SMALL_STATE(2733)] = 94117, - [SMALL_STATE(2734)] = 94130, - [SMALL_STATE(2735)] = 94143, - [SMALL_STATE(2736)] = 94156, - [SMALL_STATE(2737)] = 94169, - [SMALL_STATE(2738)] = 94182, - [SMALL_STATE(2739)] = 94195, - [SMALL_STATE(2740)] = 94208, - [SMALL_STATE(2741)] = 94221, - [SMALL_STATE(2742)] = 94234, - [SMALL_STATE(2743)] = 94247, - [SMALL_STATE(2744)] = 94260, - [SMALL_STATE(2745)] = 94273, - [SMALL_STATE(2746)] = 94286, - [SMALL_STATE(2747)] = 94299, - [SMALL_STATE(2748)] = 94312, - [SMALL_STATE(2749)] = 94325, - [SMALL_STATE(2750)] = 94338, - [SMALL_STATE(2751)] = 94351, - [SMALL_STATE(2752)] = 94364, - [SMALL_STATE(2753)] = 94377, - [SMALL_STATE(2754)] = 94390, - [SMALL_STATE(2755)] = 94403, - [SMALL_STATE(2756)] = 94416, - [SMALL_STATE(2757)] = 94429, - [SMALL_STATE(2758)] = 94442, - [SMALL_STATE(2759)] = 94455, - [SMALL_STATE(2760)] = 94468, - [SMALL_STATE(2761)] = 94481, - [SMALL_STATE(2762)] = 94494, - [SMALL_STATE(2763)] = 94507, - [SMALL_STATE(2764)] = 94520, - [SMALL_STATE(2765)] = 94533, - [SMALL_STATE(2766)] = 94546, - [SMALL_STATE(2767)] = 94559, - [SMALL_STATE(2768)] = 94572, - [SMALL_STATE(2769)] = 94585, - [SMALL_STATE(2770)] = 94598, - [SMALL_STATE(2771)] = 94611, - [SMALL_STATE(2772)] = 94624, - [SMALL_STATE(2773)] = 94637, - [SMALL_STATE(2774)] = 94650, - [SMALL_STATE(2775)] = 94663, - [SMALL_STATE(2776)] = 94676, - [SMALL_STATE(2777)] = 94689, - [SMALL_STATE(2778)] = 94702, - [SMALL_STATE(2779)] = 94715, - [SMALL_STATE(2780)] = 94728, - [SMALL_STATE(2781)] = 94741, - [SMALL_STATE(2782)] = 94754, - [SMALL_STATE(2783)] = 94767, - [SMALL_STATE(2784)] = 94780, - [SMALL_STATE(2785)] = 94793, - [SMALL_STATE(2786)] = 94806, - [SMALL_STATE(2787)] = 94819, - [SMALL_STATE(2788)] = 94832, - [SMALL_STATE(2789)] = 94845, - [SMALL_STATE(2790)] = 94858, - [SMALL_STATE(2791)] = 94871, - [SMALL_STATE(2792)] = 94884, - [SMALL_STATE(2793)] = 94897, - [SMALL_STATE(2794)] = 94910, - [SMALL_STATE(2795)] = 94923, - [SMALL_STATE(2796)] = 94936, - [SMALL_STATE(2797)] = 94949, - [SMALL_STATE(2798)] = 94962, - [SMALL_STATE(2799)] = 94975, - [SMALL_STATE(2800)] = 94988, - [SMALL_STATE(2801)] = 95001, - [SMALL_STATE(2802)] = 95014, - [SMALL_STATE(2803)] = 95027, - [SMALL_STATE(2804)] = 95040, - [SMALL_STATE(2805)] = 95053, - [SMALL_STATE(2806)] = 95066, - [SMALL_STATE(2807)] = 95079, - [SMALL_STATE(2808)] = 95092, - [SMALL_STATE(2809)] = 95105, - [SMALL_STATE(2810)] = 95118, - [SMALL_STATE(2811)] = 95131, - [SMALL_STATE(2812)] = 95144, - [SMALL_STATE(2813)] = 95157, - [SMALL_STATE(2814)] = 95170, - [SMALL_STATE(2815)] = 95183, - [SMALL_STATE(2816)] = 95196, - [SMALL_STATE(2817)] = 95209, - [SMALL_STATE(2818)] = 95222, - [SMALL_STATE(2819)] = 95235, - [SMALL_STATE(2820)] = 95248, - [SMALL_STATE(2821)] = 95261, - [SMALL_STATE(2822)] = 95274, - [SMALL_STATE(2823)] = 95287, - [SMALL_STATE(2824)] = 95300, - [SMALL_STATE(2825)] = 95313, - [SMALL_STATE(2826)] = 95326, - [SMALL_STATE(2827)] = 95339, - [SMALL_STATE(2828)] = 95352, - [SMALL_STATE(2829)] = 95365, - [SMALL_STATE(2830)] = 95378, - [SMALL_STATE(2831)] = 95391, - [SMALL_STATE(2832)] = 95404, - [SMALL_STATE(2833)] = 95417, - [SMALL_STATE(2834)] = 95430, - [SMALL_STATE(2835)] = 95443, - [SMALL_STATE(2836)] = 95456, - [SMALL_STATE(2837)] = 95469, - [SMALL_STATE(2838)] = 95482, - [SMALL_STATE(2839)] = 95495, + [SMALL_STATE(824)] = 0, + [SMALL_STATE(825)] = 76, + [SMALL_STATE(826)] = 152, + [SMALL_STATE(827)] = 234, + [SMALL_STATE(828)] = 316, + [SMALL_STATE(829)] = 387, + [SMALL_STATE(830)] = 460, + [SMALL_STATE(831)] = 539, + [SMALL_STATE(832)] = 618, + [SMALL_STATE(833)] = 689, + [SMALL_STATE(834)] = 760, + [SMALL_STATE(835)] = 831, + [SMALL_STATE(836)] = 905, + [SMALL_STATE(837)] = 1003, + [SMALL_STATE(838)] = 1097, + [SMALL_STATE(839)] = 1177, + [SMALL_STATE(840)] = 1275, + [SMALL_STATE(841)] = 1369, + [SMALL_STATE(842)] = 1457, + [SMALL_STATE(843)] = 1537, + [SMALL_STATE(844)] = 1627, + [SMALL_STATE(845)] = 1723, + [SMALL_STATE(846)] = 1811, + [SMALL_STATE(847)] = 1891, + [SMALL_STATE(848)] = 1971, + [SMALL_STATE(849)] = 2045, + [SMALL_STATE(850)] = 2142, + [SMALL_STATE(851)] = 2219, + [SMALL_STATE(852)] = 2296, + [SMALL_STATE(853)] = 2367, + [SMALL_STATE(854)] = 2463, + [SMALL_STATE(855)] = 2559, + [SMALL_STATE(856)] = 2651, + [SMALL_STATE(857)] = 2729, + [SMALL_STATE(858)] = 2807, + [SMALL_STATE(859)] = 2901, + [SMALL_STATE(860)] = 2977, + [SMALL_STATE(861)] = 3069, + [SMALL_STATE(862)] = 3155, + [SMALL_STATE(863)] = 3241, + [SMALL_STATE(864)] = 3311, + [SMALL_STATE(865)] = 3399, + [SMALL_STATE(866)] = 3477, + [SMALL_STATE(867)] = 3555, + [SMALL_STATE(868)] = 3631, + [SMALL_STATE(869)] = 3698, + [SMALL_STATE(870)] = 3773, + [SMALL_STATE(871)] = 3840, + [SMALL_STATE(872)] = 3934, + [SMALL_STATE(873)] = 4028, + [SMALL_STATE(874)] = 4148, + [SMALL_STATE(875)] = 4274, + [SMALL_STATE(876)] = 4400, + [SMALL_STATE(877)] = 4517, + [SMALL_STATE(878)] = 4638, + [SMALL_STATE(879)] = 4758, + [SMALL_STATE(880)] = 4875, + [SMALL_STATE(881)] = 4992, + [SMALL_STATE(882)] = 5109, + [SMALL_STATE(883)] = 5226, + [SMALL_STATE(884)] = 5343, + [SMALL_STATE(885)] = 5460, + [SMALL_STATE(886)] = 5577, + [SMALL_STATE(887)] = 5694, + [SMALL_STATE(888)] = 5811, + [SMALL_STATE(889)] = 5928, + [SMALL_STATE(890)] = 6045, + [SMALL_STATE(891)] = 6162, + [SMALL_STATE(892)] = 6279, + [SMALL_STATE(893)] = 6396, + [SMALL_STATE(894)] = 6513, + [SMALL_STATE(895)] = 6627, + [SMALL_STATE(896)] = 6741, + [SMALL_STATE(897)] = 6855, + [SMALL_STATE(898)] = 6969, + [SMALL_STATE(899)] = 7083, + [SMALL_STATE(900)] = 7197, + [SMALL_STATE(901)] = 7311, + [SMALL_STATE(902)] = 7425, + [SMALL_STATE(903)] = 7539, + [SMALL_STATE(904)] = 7653, + [SMALL_STATE(905)] = 7767, + [SMALL_STATE(906)] = 7881, + [SMALL_STATE(907)] = 7995, + [SMALL_STATE(908)] = 8109, + [SMALL_STATE(909)] = 8223, + [SMALL_STATE(910)] = 8337, + [SMALL_STATE(911)] = 8451, + [SMALL_STATE(912)] = 8565, + [SMALL_STATE(913)] = 8679, + [SMALL_STATE(914)] = 8793, + [SMALL_STATE(915)] = 8907, + [SMALL_STATE(916)] = 9021, + [SMALL_STATE(917)] = 9135, + [SMALL_STATE(918)] = 9249, + [SMALL_STATE(919)] = 9363, + [SMALL_STATE(920)] = 9477, + [SMALL_STATE(921)] = 9591, + [SMALL_STATE(922)] = 9702, + [SMALL_STATE(923)] = 9813, + [SMALL_STATE(924)] = 9924, + [SMALL_STATE(925)] = 10025, + [SMALL_STATE(926)] = 10126, + [SMALL_STATE(927)] = 10227, + [SMALL_STATE(928)] = 10328, + [SMALL_STATE(929)] = 10439, + [SMALL_STATE(930)] = 10540, + [SMALL_STATE(931)] = 10651, + [SMALL_STATE(932)] = 10762, + [SMALL_STATE(933)] = 10870, + [SMALL_STATE(934)] = 10978, + [SMALL_STATE(935)] = 11086, + [SMALL_STATE(936)] = 11194, + [SMALL_STATE(937)] = 11302, + [SMALL_STATE(938)] = 11410, + [SMALL_STATE(939)] = 11518, + [SMALL_STATE(940)] = 11626, + [SMALL_STATE(941)] = 11734, + [SMALL_STATE(942)] = 11842, + [SMALL_STATE(943)] = 11950, + [SMALL_STATE(944)] = 12058, + [SMALL_STATE(945)] = 12166, + [SMALL_STATE(946)] = 12274, + [SMALL_STATE(947)] = 12382, + [SMALL_STATE(948)] = 12490, + [SMALL_STATE(949)] = 12598, + [SMALL_STATE(950)] = 12706, + [SMALL_STATE(951)] = 12814, + [SMALL_STATE(952)] = 12922, + [SMALL_STATE(953)] = 13030, + [SMALL_STATE(954)] = 13138, + [SMALL_STATE(955)] = 13246, + [SMALL_STATE(956)] = 13354, + [SMALL_STATE(957)] = 13462, + [SMALL_STATE(958)] = 13570, + [SMALL_STATE(959)] = 13678, + [SMALL_STATE(960)] = 13786, + [SMALL_STATE(961)] = 13894, + [SMALL_STATE(962)] = 14002, + [SMALL_STATE(963)] = 14110, + [SMALL_STATE(964)] = 14218, + [SMALL_STATE(965)] = 14326, + [SMALL_STATE(966)] = 14434, + [SMALL_STATE(967)] = 14542, + [SMALL_STATE(968)] = 14650, + [SMALL_STATE(969)] = 14758, + [SMALL_STATE(970)] = 14866, + [SMALL_STATE(971)] = 14974, + [SMALL_STATE(972)] = 15082, + [SMALL_STATE(973)] = 15190, + [SMALL_STATE(974)] = 15298, + [SMALL_STATE(975)] = 15406, + [SMALL_STATE(976)] = 15514, + [SMALL_STATE(977)] = 15622, + [SMALL_STATE(978)] = 15730, + [SMALL_STATE(979)] = 15838, + [SMALL_STATE(980)] = 15946, + [SMALL_STATE(981)] = 16054, + [SMALL_STATE(982)] = 16162, + [SMALL_STATE(983)] = 16270, + [SMALL_STATE(984)] = 16378, + [SMALL_STATE(985)] = 16486, + [SMALL_STATE(986)] = 16594, + [SMALL_STATE(987)] = 16702, + [SMALL_STATE(988)] = 16810, + [SMALL_STATE(989)] = 16918, + [SMALL_STATE(990)] = 17026, + [SMALL_STATE(991)] = 17134, + [SMALL_STATE(992)] = 17242, + [SMALL_STATE(993)] = 17350, + [SMALL_STATE(994)] = 17458, + [SMALL_STATE(995)] = 17566, + [SMALL_STATE(996)] = 17674, + [SMALL_STATE(997)] = 17782, + [SMALL_STATE(998)] = 17890, + [SMALL_STATE(999)] = 17998, + [SMALL_STATE(1000)] = 18106, + [SMALL_STATE(1001)] = 18214, + [SMALL_STATE(1002)] = 18322, + [SMALL_STATE(1003)] = 18430, + [SMALL_STATE(1004)] = 18538, + [SMALL_STATE(1005)] = 18646, + [SMALL_STATE(1006)] = 18754, + [SMALL_STATE(1007)] = 18810, + [SMALL_STATE(1008)] = 18918, + [SMALL_STATE(1009)] = 19026, + [SMALL_STATE(1010)] = 19134, + [SMALL_STATE(1011)] = 19242, + [SMALL_STATE(1012)] = 19350, + [SMALL_STATE(1013)] = 19458, + [SMALL_STATE(1014)] = 19566, + [SMALL_STATE(1015)] = 19674, + [SMALL_STATE(1016)] = 19782, + [SMALL_STATE(1017)] = 19890, + [SMALL_STATE(1018)] = 19998, + [SMALL_STATE(1019)] = 20106, + [SMALL_STATE(1020)] = 20214, + [SMALL_STATE(1021)] = 20322, + [SMALL_STATE(1022)] = 20430, + [SMALL_STATE(1023)] = 20538, + [SMALL_STATE(1024)] = 20646, + [SMALL_STATE(1025)] = 20754, + [SMALL_STATE(1026)] = 20862, + [SMALL_STATE(1027)] = 20970, + [SMALL_STATE(1028)] = 21078, + [SMALL_STATE(1029)] = 21186, + [SMALL_STATE(1030)] = 21294, + [SMALL_STATE(1031)] = 21402, + [SMALL_STATE(1032)] = 21510, + [SMALL_STATE(1033)] = 21618, + [SMALL_STATE(1034)] = 21726, + [SMALL_STATE(1035)] = 21834, + [SMALL_STATE(1036)] = 21942, + [SMALL_STATE(1037)] = 22050, + [SMALL_STATE(1038)] = 22158, + [SMALL_STATE(1039)] = 22266, + [SMALL_STATE(1040)] = 22374, + [SMALL_STATE(1041)] = 22482, + [SMALL_STATE(1042)] = 22590, + [SMALL_STATE(1043)] = 22698, + [SMALL_STATE(1044)] = 22806, + [SMALL_STATE(1045)] = 22914, + [SMALL_STATE(1046)] = 23022, + [SMALL_STATE(1047)] = 23130, + [SMALL_STATE(1048)] = 23238, + [SMALL_STATE(1049)] = 23346, + [SMALL_STATE(1050)] = 23454, + [SMALL_STATE(1051)] = 23562, + [SMALL_STATE(1052)] = 23670, + [SMALL_STATE(1053)] = 23778, + [SMALL_STATE(1054)] = 23886, + [SMALL_STATE(1055)] = 23994, + [SMALL_STATE(1056)] = 24102, + [SMALL_STATE(1057)] = 24210, + [SMALL_STATE(1058)] = 24318, + [SMALL_STATE(1059)] = 24426, + [SMALL_STATE(1060)] = 24534, + [SMALL_STATE(1061)] = 24642, + [SMALL_STATE(1062)] = 24750, + [SMALL_STATE(1063)] = 24858, + [SMALL_STATE(1064)] = 24966, + [SMALL_STATE(1065)] = 25074, + [SMALL_STATE(1066)] = 25182, + [SMALL_STATE(1067)] = 25290, + [SMALL_STATE(1068)] = 25398, + [SMALL_STATE(1069)] = 25506, + [SMALL_STATE(1070)] = 25614, + [SMALL_STATE(1071)] = 25722, + [SMALL_STATE(1072)] = 25830, + [SMALL_STATE(1073)] = 25938, + [SMALL_STATE(1074)] = 26046, + [SMALL_STATE(1075)] = 26154, + [SMALL_STATE(1076)] = 26262, + [SMALL_STATE(1077)] = 26370, + [SMALL_STATE(1078)] = 26478, + [SMALL_STATE(1079)] = 26586, + [SMALL_STATE(1080)] = 26694, + [SMALL_STATE(1081)] = 26802, + [SMALL_STATE(1082)] = 26910, + [SMALL_STATE(1083)] = 27018, + [SMALL_STATE(1084)] = 27126, + [SMALL_STATE(1085)] = 27234, + [SMALL_STATE(1086)] = 27342, + [SMALL_STATE(1087)] = 27450, + [SMALL_STATE(1088)] = 27558, + [SMALL_STATE(1089)] = 27666, + [SMALL_STATE(1090)] = 27774, + [SMALL_STATE(1091)] = 27882, + [SMALL_STATE(1092)] = 27990, + [SMALL_STATE(1093)] = 28098, + [SMALL_STATE(1094)] = 28206, + [SMALL_STATE(1095)] = 28314, + [SMALL_STATE(1096)] = 28422, + [SMALL_STATE(1097)] = 28530, + [SMALL_STATE(1098)] = 28638, + [SMALL_STATE(1099)] = 28746, + [SMALL_STATE(1100)] = 28854, + [SMALL_STATE(1101)] = 28962, + [SMALL_STATE(1102)] = 29070, + [SMALL_STATE(1103)] = 29178, + [SMALL_STATE(1104)] = 29286, + [SMALL_STATE(1105)] = 29394, + [SMALL_STATE(1106)] = 29502, + [SMALL_STATE(1107)] = 29610, + [SMALL_STATE(1108)] = 29718, + [SMALL_STATE(1109)] = 29826, + [SMALL_STATE(1110)] = 29934, + [SMALL_STATE(1111)] = 30042, + [SMALL_STATE(1112)] = 30150, + [SMALL_STATE(1113)] = 30258, + [SMALL_STATE(1114)] = 30366, + [SMALL_STATE(1115)] = 30474, + [SMALL_STATE(1116)] = 30582, + [SMALL_STATE(1117)] = 30690, + [SMALL_STATE(1118)] = 30798, + [SMALL_STATE(1119)] = 30906, + [SMALL_STATE(1120)] = 31014, + [SMALL_STATE(1121)] = 31122, + [SMALL_STATE(1122)] = 31230, + [SMALL_STATE(1123)] = 31338, + [SMALL_STATE(1124)] = 31446, + [SMALL_STATE(1125)] = 31554, + [SMALL_STATE(1126)] = 31662, + [SMALL_STATE(1127)] = 31770, + [SMALL_STATE(1128)] = 31878, + [SMALL_STATE(1129)] = 31986, + [SMALL_STATE(1130)] = 32094, + [SMALL_STATE(1131)] = 32202, + [SMALL_STATE(1132)] = 32310, + [SMALL_STATE(1133)] = 32418, + [SMALL_STATE(1134)] = 32526, + [SMALL_STATE(1135)] = 32634, + [SMALL_STATE(1136)] = 32742, + [SMALL_STATE(1137)] = 32850, + [SMALL_STATE(1138)] = 32958, + [SMALL_STATE(1139)] = 33066, + [SMALL_STATE(1140)] = 33174, + [SMALL_STATE(1141)] = 33282, + [SMALL_STATE(1142)] = 33390, + [SMALL_STATE(1143)] = 33498, + [SMALL_STATE(1144)] = 33606, + [SMALL_STATE(1145)] = 33714, + [SMALL_STATE(1146)] = 33822, + [SMALL_STATE(1147)] = 33930, + [SMALL_STATE(1148)] = 34038, + [SMALL_STATE(1149)] = 34146, + [SMALL_STATE(1150)] = 34254, + [SMALL_STATE(1151)] = 34362, + [SMALL_STATE(1152)] = 34470, + [SMALL_STATE(1153)] = 34578, + [SMALL_STATE(1154)] = 34686, + [SMALL_STATE(1155)] = 34794, + [SMALL_STATE(1156)] = 34902, + [SMALL_STATE(1157)] = 35010, + [SMALL_STATE(1158)] = 35118, + [SMALL_STATE(1159)] = 35226, + [SMALL_STATE(1160)] = 35334, + [SMALL_STATE(1161)] = 35442, + [SMALL_STATE(1162)] = 35550, + [SMALL_STATE(1163)] = 35658, + [SMALL_STATE(1164)] = 35766, + [SMALL_STATE(1165)] = 35874, + [SMALL_STATE(1166)] = 35982, + [SMALL_STATE(1167)] = 36090, + [SMALL_STATE(1168)] = 36198, + [SMALL_STATE(1169)] = 36306, + [SMALL_STATE(1170)] = 36414, + [SMALL_STATE(1171)] = 36522, + [SMALL_STATE(1172)] = 36630, + [SMALL_STATE(1173)] = 36738, + [SMALL_STATE(1174)] = 36846, + [SMALL_STATE(1175)] = 36954, + [SMALL_STATE(1176)] = 37062, + [SMALL_STATE(1177)] = 37170, + [SMALL_STATE(1178)] = 37278, + [SMALL_STATE(1179)] = 37386, + [SMALL_STATE(1180)] = 37494, + [SMALL_STATE(1181)] = 37602, + [SMALL_STATE(1182)] = 37710, + [SMALL_STATE(1183)] = 37774, + [SMALL_STATE(1184)] = 37882, + [SMALL_STATE(1185)] = 37990, + [SMALL_STATE(1186)] = 38098, + [SMALL_STATE(1187)] = 38206, + [SMALL_STATE(1188)] = 38314, + [SMALL_STATE(1189)] = 38422, + [SMALL_STATE(1190)] = 38530, + [SMALL_STATE(1191)] = 38638, + [SMALL_STATE(1192)] = 38746, + [SMALL_STATE(1193)] = 38854, + [SMALL_STATE(1194)] = 38962, + [SMALL_STATE(1195)] = 39070, + [SMALL_STATE(1196)] = 39178, + [SMALL_STATE(1197)] = 39286, + [SMALL_STATE(1198)] = 39394, + [SMALL_STATE(1199)] = 39502, + [SMALL_STATE(1200)] = 39610, + [SMALL_STATE(1201)] = 39718, + [SMALL_STATE(1202)] = 39826, + [SMALL_STATE(1203)] = 39934, + [SMALL_STATE(1204)] = 40042, + [SMALL_STATE(1205)] = 40150, + [SMALL_STATE(1206)] = 40258, + [SMALL_STATE(1207)] = 40366, + [SMALL_STATE(1208)] = 40474, + [SMALL_STATE(1209)] = 40582, + [SMALL_STATE(1210)] = 40690, + [SMALL_STATE(1211)] = 40798, + [SMALL_STATE(1212)] = 40906, + [SMALL_STATE(1213)] = 41014, + [SMALL_STATE(1214)] = 41122, + [SMALL_STATE(1215)] = 41230, + [SMALL_STATE(1216)] = 41338, + [SMALL_STATE(1217)] = 41446, + [SMALL_STATE(1218)] = 41554, + [SMALL_STATE(1219)] = 41662, + [SMALL_STATE(1220)] = 41770, + [SMALL_STATE(1221)] = 41878, + [SMALL_STATE(1222)] = 41986, + [SMALL_STATE(1223)] = 42094, + [SMALL_STATE(1224)] = 42202, + [SMALL_STATE(1225)] = 42310, + [SMALL_STATE(1226)] = 42418, + [SMALL_STATE(1227)] = 42526, + [SMALL_STATE(1228)] = 42634, + [SMALL_STATE(1229)] = 42742, + [SMALL_STATE(1230)] = 42850, + [SMALL_STATE(1231)] = 42958, + [SMALL_STATE(1232)] = 43066, + [SMALL_STATE(1233)] = 43174, + [SMALL_STATE(1234)] = 43282, + [SMALL_STATE(1235)] = 43390, + [SMALL_STATE(1236)] = 43498, + [SMALL_STATE(1237)] = 43606, + [SMALL_STATE(1238)] = 43714, + [SMALL_STATE(1239)] = 43822, + [SMALL_STATE(1240)] = 43930, + [SMALL_STATE(1241)] = 44038, + [SMALL_STATE(1242)] = 44146, + [SMALL_STATE(1243)] = 44254, + [SMALL_STATE(1244)] = 44362, + [SMALL_STATE(1245)] = 44470, + [SMALL_STATE(1246)] = 44578, + [SMALL_STATE(1247)] = 44633, + [SMALL_STATE(1248)] = 44686, + [SMALL_STATE(1249)] = 44741, + [SMALL_STATE(1250)] = 44796, + [SMALL_STATE(1251)] = 44858, + [SMALL_STATE(1252)] = 44920, + [SMALL_STATE(1253)] = 44982, + [SMALL_STATE(1254)] = 45044, + [SMALL_STATE(1255)] = 45103, + [SMALL_STATE(1256)] = 45162, + [SMALL_STATE(1257)] = 45217, + [SMALL_STATE(1258)] = 45269, + [SMALL_STATE(1259)] = 45321, + [SMALL_STATE(1260)] = 45371, + [SMALL_STATE(1261)] = 45420, + [SMALL_STATE(1262)] = 45469, + [SMALL_STATE(1263)] = 45518, + [SMALL_STATE(1264)] = 45575, + [SMALL_STATE(1265)] = 45624, + [SMALL_STATE(1266)] = 45673, + [SMALL_STATE(1267)] = 45724, + [SMALL_STATE(1268)] = 45773, + [SMALL_STATE(1269)] = 45822, + [SMALL_STATE(1270)] = 45871, + [SMALL_STATE(1271)] = 45920, + [SMALL_STATE(1272)] = 45969, + [SMALL_STATE(1273)] = 46018, + [SMALL_STATE(1274)] = 46067, + [SMALL_STATE(1275)] = 46116, + [SMALL_STATE(1276)] = 46167, + [SMALL_STATE(1277)] = 46218, + [SMALL_STATE(1278)] = 46269, + [SMALL_STATE(1279)] = 46318, + [SMALL_STATE(1280)] = 46367, + [SMALL_STATE(1281)] = 46416, + [SMALL_STATE(1282)] = 46465, + [SMALL_STATE(1283)] = 46514, + [SMALL_STATE(1284)] = 46571, + [SMALL_STATE(1285)] = 46620, + [SMALL_STATE(1286)] = 46669, + [SMALL_STATE(1287)] = 46718, + [SMALL_STATE(1288)] = 46767, + [SMALL_STATE(1289)] = 46816, + [SMALL_STATE(1290)] = 46865, + [SMALL_STATE(1291)] = 46914, + [SMALL_STATE(1292)] = 46963, + [SMALL_STATE(1293)] = 47012, + [SMALL_STATE(1294)] = 47061, + [SMALL_STATE(1295)] = 47110, + [SMALL_STATE(1296)] = 47158, + [SMALL_STATE(1297)] = 47236, + [SMALL_STATE(1298)] = 47308, + [SMALL_STATE(1299)] = 47386, + [SMALL_STATE(1300)] = 47452, + [SMALL_STATE(1301)] = 47528, + [SMALL_STATE(1302)] = 47600, + [SMALL_STATE(1303)] = 47666, + [SMALL_STATE(1304)] = 47724, + [SMALL_STATE(1305)] = 47792, + [SMALL_STATE(1306)] = 47868, + [SMALL_STATE(1307)] = 47926, + [SMALL_STATE(1308)] = 48004, + [SMALL_STATE(1309)] = 48082, + [SMALL_STATE(1310)] = 48160, + [SMALL_STATE(1311)] = 48214, + [SMALL_STATE(1312)] = 48278, + [SMALL_STATE(1313)] = 48344, + [SMALL_STATE(1314)] = 48422, + [SMALL_STATE(1315)] = 48500, + [SMALL_STATE(1316)] = 48578, + [SMALL_STATE(1317)] = 48652, + [SMALL_STATE(1318)] = 48722, + [SMALL_STATE(1319)] = 48800, + [SMALL_STATE(1320)] = 48856, + [SMALL_STATE(1321)] = 48934, + [SMALL_STATE(1322)] = 49004, + [SMALL_STATE(1323)] = 49068, + [SMALL_STATE(1324)] = 49116, + [SMALL_STATE(1325)] = 49194, + [SMALL_STATE(1326)] = 49250, + [SMALL_STATE(1327)] = 49328, + [SMALL_STATE(1328)] = 49406, + [SMALL_STATE(1329)] = 49484, + [SMALL_STATE(1330)] = 49562, + [SMALL_STATE(1331)] = 49640, + [SMALL_STATE(1332)] = 49718, + [SMALL_STATE(1333)] = 49772, + [SMALL_STATE(1334)] = 49850, + [SMALL_STATE(1335)] = 49924, + [SMALL_STATE(1336)] = 49999, + [SMALL_STATE(1337)] = 50044, + [SMALL_STATE(1338)] = 50089, + [SMALL_STATE(1339)] = 50164, + [SMALL_STATE(1340)] = 50213, + [SMALL_STATE(1341)] = 50285, + [SMALL_STATE(1342)] = 50357, + [SMALL_STATE(1343)] = 50429, + [SMALL_STATE(1344)] = 50501, + [SMALL_STATE(1345)] = 50573, + [SMALL_STATE(1346)] = 50645, + [SMALL_STATE(1347)] = 50717, + [SMALL_STATE(1348)] = 50789, + [SMALL_STATE(1349)] = 50861, + [SMALL_STATE(1350)] = 50933, + [SMALL_STATE(1351)] = 51005, + [SMALL_STATE(1352)] = 51077, + [SMALL_STATE(1353)] = 51149, + [SMALL_STATE(1354)] = 51221, + [SMALL_STATE(1355)] = 51293, + [SMALL_STATE(1356)] = 51365, + [SMALL_STATE(1357)] = 51437, + [SMALL_STATE(1358)] = 51509, + [SMALL_STATE(1359)] = 51581, + [SMALL_STATE(1360)] = 51653, + [SMALL_STATE(1361)] = 51725, + [SMALL_STATE(1362)] = 51797, + [SMALL_STATE(1363)] = 51869, + [SMALL_STATE(1364)] = 51941, + [SMALL_STATE(1365)] = 52013, + [SMALL_STATE(1366)] = 52085, + [SMALL_STATE(1367)] = 52157, + [SMALL_STATE(1368)] = 52229, + [SMALL_STATE(1369)] = 52301, + [SMALL_STATE(1370)] = 52373, + [SMALL_STATE(1371)] = 52445, + [SMALL_STATE(1372)] = 52517, + [SMALL_STATE(1373)] = 52589, + [SMALL_STATE(1374)] = 52661, + [SMALL_STATE(1375)] = 52733, + [SMALL_STATE(1376)] = 52805, + [SMALL_STATE(1377)] = 52877, + [SMALL_STATE(1378)] = 52949, + [SMALL_STATE(1379)] = 53021, + [SMALL_STATE(1380)] = 53093, + [SMALL_STATE(1381)] = 53165, + [SMALL_STATE(1382)] = 53237, + [SMALL_STATE(1383)] = 53309, + [SMALL_STATE(1384)] = 53381, + [SMALL_STATE(1385)] = 53453, + [SMALL_STATE(1386)] = 53525, + [SMALL_STATE(1387)] = 53597, + [SMALL_STATE(1388)] = 53669, + [SMALL_STATE(1389)] = 53741, + [SMALL_STATE(1390)] = 53813, + [SMALL_STATE(1391)] = 53885, + [SMALL_STATE(1392)] = 53957, + [SMALL_STATE(1393)] = 54029, + [SMALL_STATE(1394)] = 54101, + [SMALL_STATE(1395)] = 54173, + [SMALL_STATE(1396)] = 54245, + [SMALL_STATE(1397)] = 54317, + [SMALL_STATE(1398)] = 54389, + [SMALL_STATE(1399)] = 54461, + [SMALL_STATE(1400)] = 54533, + [SMALL_STATE(1401)] = 54605, + [SMALL_STATE(1402)] = 54677, + [SMALL_STATE(1403)] = 54749, + [SMALL_STATE(1404)] = 54821, + [SMALL_STATE(1405)] = 54893, + [SMALL_STATE(1406)] = 54965, + [SMALL_STATE(1407)] = 55037, + [SMALL_STATE(1408)] = 55109, + [SMALL_STATE(1409)] = 55181, + [SMALL_STATE(1410)] = 55253, + [SMALL_STATE(1411)] = 55325, + [SMALL_STATE(1412)] = 55397, + [SMALL_STATE(1413)] = 55469, + [SMALL_STATE(1414)] = 55541, + [SMALL_STATE(1415)] = 55613, + [SMALL_STATE(1416)] = 55685, + [SMALL_STATE(1417)] = 55757, + [SMALL_STATE(1418)] = 55829, + [SMALL_STATE(1419)] = 55901, + [SMALL_STATE(1420)] = 55973, + [SMALL_STATE(1421)] = 56045, + [SMALL_STATE(1422)] = 56117, + [SMALL_STATE(1423)] = 56189, + [SMALL_STATE(1424)] = 56261, + [SMALL_STATE(1425)] = 56333, + [SMALL_STATE(1426)] = 56405, + [SMALL_STATE(1427)] = 56477, + [SMALL_STATE(1428)] = 56525, + [SMALL_STATE(1429)] = 56597, + [SMALL_STATE(1430)] = 56669, + [SMALL_STATE(1431)] = 56741, + [SMALL_STATE(1432)] = 56813, + [SMALL_STATE(1433)] = 56885, + [SMALL_STATE(1434)] = 56957, + [SMALL_STATE(1435)] = 57029, + [SMALL_STATE(1436)] = 57101, + [SMALL_STATE(1437)] = 57173, + [SMALL_STATE(1438)] = 57245, + [SMALL_STATE(1439)] = 57317, + [SMALL_STATE(1440)] = 57389, + [SMALL_STATE(1441)] = 57461, + [SMALL_STATE(1442)] = 57533, + [SMALL_STATE(1443)] = 57605, + [SMALL_STATE(1444)] = 57677, + [SMALL_STATE(1445)] = 57749, + [SMALL_STATE(1446)] = 57821, + [SMALL_STATE(1447)] = 57893, + [SMALL_STATE(1448)] = 57965, + [SMALL_STATE(1449)] = 58037, + [SMALL_STATE(1450)] = 58109, + [SMALL_STATE(1451)] = 58181, + [SMALL_STATE(1452)] = 58253, + [SMALL_STATE(1453)] = 58325, + [SMALL_STATE(1454)] = 58397, + [SMALL_STATE(1455)] = 58469, + [SMALL_STATE(1456)] = 58541, + [SMALL_STATE(1457)] = 58613, + [SMALL_STATE(1458)] = 58685, + [SMALL_STATE(1459)] = 58757, + [SMALL_STATE(1460)] = 58829, + [SMALL_STATE(1461)] = 58901, + [SMALL_STATE(1462)] = 58973, + [SMALL_STATE(1463)] = 59045, + [SMALL_STATE(1464)] = 59117, + [SMALL_STATE(1465)] = 59189, + [SMALL_STATE(1466)] = 59257, + [SMALL_STATE(1467)] = 59311, + [SMALL_STATE(1468)] = 59373, + [SMALL_STATE(1469)] = 59437, + [SMALL_STATE(1470)] = 59509, + [SMALL_STATE(1471)] = 59581, + [SMALL_STATE(1472)] = 59649, + [SMALL_STATE(1473)] = 59703, + [SMALL_STATE(1474)] = 59775, + [SMALL_STATE(1475)] = 59837, + [SMALL_STATE(1476)] = 59909, + [SMALL_STATE(1477)] = 59981, + [SMALL_STATE(1478)] = 60053, + [SMALL_STATE(1479)] = 60125, + [SMALL_STATE(1480)] = 60197, + [SMALL_STATE(1481)] = 60269, + [SMALL_STATE(1482)] = 60341, + [SMALL_STATE(1483)] = 60413, + [SMALL_STATE(1484)] = 60485, + [SMALL_STATE(1485)] = 60557, + [SMALL_STATE(1486)] = 60629, + [SMALL_STATE(1487)] = 60701, + [SMALL_STATE(1488)] = 60773, + [SMALL_STATE(1489)] = 60845, + [SMALL_STATE(1490)] = 60917, + [SMALL_STATE(1491)] = 60989, + [SMALL_STATE(1492)] = 61061, + [SMALL_STATE(1493)] = 61133, + [SMALL_STATE(1494)] = 61205, + [SMALL_STATE(1495)] = 61277, + [SMALL_STATE(1496)] = 61349, + [SMALL_STATE(1497)] = 61421, + [SMALL_STATE(1498)] = 61493, + [SMALL_STATE(1499)] = 61565, + [SMALL_STATE(1500)] = 61637, + [SMALL_STATE(1501)] = 61709, + [SMALL_STATE(1502)] = 61781, + [SMALL_STATE(1503)] = 61853, + [SMALL_STATE(1504)] = 61925, + [SMALL_STATE(1505)] = 61997, + [SMALL_STATE(1506)] = 62069, + [SMALL_STATE(1507)] = 62141, + [SMALL_STATE(1508)] = 62213, + [SMALL_STATE(1509)] = 62285, + [SMALL_STATE(1510)] = 62357, + [SMALL_STATE(1511)] = 62429, + [SMALL_STATE(1512)] = 62501, + [SMALL_STATE(1513)] = 62573, + [SMALL_STATE(1514)] = 62645, + [SMALL_STATE(1515)] = 62717, + [SMALL_STATE(1516)] = 62789, + [SMALL_STATE(1517)] = 62861, + [SMALL_STATE(1518)] = 62933, + [SMALL_STATE(1519)] = 63005, + [SMALL_STATE(1520)] = 63077, + [SMALL_STATE(1521)] = 63149, + [SMALL_STATE(1522)] = 63221, + [SMALL_STATE(1523)] = 63293, + [SMALL_STATE(1524)] = 63365, + [SMALL_STATE(1525)] = 63437, + [SMALL_STATE(1526)] = 63509, + [SMALL_STATE(1527)] = 63581, + [SMALL_STATE(1528)] = 63653, + [SMALL_STATE(1529)] = 63725, + [SMALL_STATE(1530)] = 63797, + [SMALL_STATE(1531)] = 63869, + [SMALL_STATE(1532)] = 63941, + [SMALL_STATE(1533)] = 64013, + [SMALL_STATE(1534)] = 64085, + [SMALL_STATE(1535)] = 64157, + [SMALL_STATE(1536)] = 64229, + [SMALL_STATE(1537)] = 64301, + [SMALL_STATE(1538)] = 64373, + [SMALL_STATE(1539)] = 64445, + [SMALL_STATE(1540)] = 64517, + [SMALL_STATE(1541)] = 64589, + [SMALL_STATE(1542)] = 64661, + [SMALL_STATE(1543)] = 64733, + [SMALL_STATE(1544)] = 64805, + [SMALL_STATE(1545)] = 64877, + [SMALL_STATE(1546)] = 64949, + [SMALL_STATE(1547)] = 65021, + [SMALL_STATE(1548)] = 65093, + [SMALL_STATE(1549)] = 65165, + [SMALL_STATE(1550)] = 65237, + [SMALL_STATE(1551)] = 65309, + [SMALL_STATE(1552)] = 65381, + [SMALL_STATE(1553)] = 65453, + [SMALL_STATE(1554)] = 65525, + [SMALL_STATE(1555)] = 65597, + [SMALL_STATE(1556)] = 65669, + [SMALL_STATE(1557)] = 65741, + [SMALL_STATE(1558)] = 65813, + [SMALL_STATE(1559)] = 65885, + [SMALL_STATE(1560)] = 65957, + [SMALL_STATE(1561)] = 66029, + [SMALL_STATE(1562)] = 66101, + [SMALL_STATE(1563)] = 66173, + [SMALL_STATE(1564)] = 66245, + [SMALL_STATE(1565)] = 66317, + [SMALL_STATE(1566)] = 66389, + [SMALL_STATE(1567)] = 66461, + [SMALL_STATE(1568)] = 66533, + [SMALL_STATE(1569)] = 66605, + [SMALL_STATE(1570)] = 66677, + [SMALL_STATE(1571)] = 66749, + [SMALL_STATE(1572)] = 66821, + [SMALL_STATE(1573)] = 66893, + [SMALL_STATE(1574)] = 66965, + [SMALL_STATE(1575)] = 67037, + [SMALL_STATE(1576)] = 67109, + [SMALL_STATE(1577)] = 67181, + [SMALL_STATE(1578)] = 67253, + [SMALL_STATE(1579)] = 67325, + [SMALL_STATE(1580)] = 67397, + [SMALL_STATE(1581)] = 67469, + [SMALL_STATE(1582)] = 67541, + [SMALL_STATE(1583)] = 67613, + [SMALL_STATE(1584)] = 67685, + [SMALL_STATE(1585)] = 67757, + [SMALL_STATE(1586)] = 67829, + [SMALL_STATE(1587)] = 67901, + [SMALL_STATE(1588)] = 67973, + [SMALL_STATE(1589)] = 68044, + [SMALL_STATE(1590)] = 68115, + [SMALL_STATE(1591)] = 68186, + [SMALL_STATE(1592)] = 68257, + [SMALL_STATE(1593)] = 68328, + [SMALL_STATE(1594)] = 68399, + [SMALL_STATE(1595)] = 68463, + [SMALL_STATE(1596)] = 68527, + [SMALL_STATE(1597)] = 68591, + [SMALL_STATE(1598)] = 68639, + [SMALL_STATE(1599)] = 68703, + [SMALL_STATE(1600)] = 68767, + [SMALL_STATE(1601)] = 68831, + [SMALL_STATE(1602)] = 68895, + [SMALL_STATE(1603)] = 68945, + [SMALL_STATE(1604)] = 68991, + [SMALL_STATE(1605)] = 69055, + [SMALL_STATE(1606)] = 69119, + [SMALL_STATE(1607)] = 69183, + [SMALL_STATE(1608)] = 69247, + [SMALL_STATE(1609)] = 69311, + [SMALL_STATE(1610)] = 69375, + [SMALL_STATE(1611)] = 69439, + [SMALL_STATE(1612)] = 69503, + [SMALL_STATE(1613)] = 69567, + [SMALL_STATE(1614)] = 69631, + [SMALL_STATE(1615)] = 69695, + [SMALL_STATE(1616)] = 69759, + [SMALL_STATE(1617)] = 69823, + [SMALL_STATE(1618)] = 69869, + [SMALL_STATE(1619)] = 69933, + [SMALL_STATE(1620)] = 69997, + [SMALL_STATE(1621)] = 70061, + [SMALL_STATE(1622)] = 70125, + [SMALL_STATE(1623)] = 70189, + [SMALL_STATE(1624)] = 70253, + [SMALL_STATE(1625)] = 70317, + [SMALL_STATE(1626)] = 70381, + [SMALL_STATE(1627)] = 70429, + [SMALL_STATE(1628)] = 70493, + [SMALL_STATE(1629)] = 70557, + [SMALL_STATE(1630)] = 70621, + [SMALL_STATE(1631)] = 70682, + [SMALL_STATE(1632)] = 70743, + [SMALL_STATE(1633)] = 70804, + [SMALL_STATE(1634)] = 70865, + [SMALL_STATE(1635)] = 70926, + [SMALL_STATE(1636)] = 70987, + [SMALL_STATE(1637)] = 71048, + [SMALL_STATE(1638)] = 71109, + [SMALL_STATE(1639)] = 71170, + [SMALL_STATE(1640)] = 71231, + [SMALL_STATE(1641)] = 71292, + [SMALL_STATE(1642)] = 71353, + [SMALL_STATE(1643)] = 71414, + [SMALL_STATE(1644)] = 71475, + [SMALL_STATE(1645)] = 71536, + [SMALL_STATE(1646)] = 71597, + [SMALL_STATE(1647)] = 71658, + [SMALL_STATE(1648)] = 71719, + [SMALL_STATE(1649)] = 71780, + [SMALL_STATE(1650)] = 71841, + [SMALL_STATE(1651)] = 71902, + [SMALL_STATE(1652)] = 71963, + [SMALL_STATE(1653)] = 72024, + [SMALL_STATE(1654)] = 72085, + [SMALL_STATE(1655)] = 72146, + [SMALL_STATE(1656)] = 72207, + [SMALL_STATE(1657)] = 72268, + [SMALL_STATE(1658)] = 72329, + [SMALL_STATE(1659)] = 72390, + [SMALL_STATE(1660)] = 72451, + [SMALL_STATE(1661)] = 72512, + [SMALL_STATE(1662)] = 72573, + [SMALL_STATE(1663)] = 72634, + [SMALL_STATE(1664)] = 72695, + [SMALL_STATE(1665)] = 72756, + [SMALL_STATE(1666)] = 72817, + [SMALL_STATE(1667)] = 72878, + [SMALL_STATE(1668)] = 72939, + [SMALL_STATE(1669)] = 73000, + [SMALL_STATE(1670)] = 73061, + [SMALL_STATE(1671)] = 73122, + [SMALL_STATE(1672)] = 73183, + [SMALL_STATE(1673)] = 73244, + [SMALL_STATE(1674)] = 73305, + [SMALL_STATE(1675)] = 73366, + [SMALL_STATE(1676)] = 73427, + [SMALL_STATE(1677)] = 73488, + [SMALL_STATE(1678)] = 73549, + [SMALL_STATE(1679)] = 73610, + [SMALL_STATE(1680)] = 73671, + [SMALL_STATE(1681)] = 73732, + [SMALL_STATE(1682)] = 73793, + [SMALL_STATE(1683)] = 73854, + [SMALL_STATE(1684)] = 73915, + [SMALL_STATE(1685)] = 73976, + [SMALL_STATE(1686)] = 74037, + [SMALL_STATE(1687)] = 74098, + [SMALL_STATE(1688)] = 74159, + [SMALL_STATE(1689)] = 74220, + [SMALL_STATE(1690)] = 74281, + [SMALL_STATE(1691)] = 74342, + [SMALL_STATE(1692)] = 74403, + [SMALL_STATE(1693)] = 74464, + [SMALL_STATE(1694)] = 74525, + [SMALL_STATE(1695)] = 74586, + [SMALL_STATE(1696)] = 74647, + [SMALL_STATE(1697)] = 74708, + [SMALL_STATE(1698)] = 74769, + [SMALL_STATE(1699)] = 74830, + [SMALL_STATE(1700)] = 74891, + [SMALL_STATE(1701)] = 74952, + [SMALL_STATE(1702)] = 75013, + [SMALL_STATE(1703)] = 75074, + [SMALL_STATE(1704)] = 75135, + [SMALL_STATE(1705)] = 75196, + [SMALL_STATE(1706)] = 75257, + [SMALL_STATE(1707)] = 75318, + [SMALL_STATE(1708)] = 75379, + [SMALL_STATE(1709)] = 75440, + [SMALL_STATE(1710)] = 75501, + [SMALL_STATE(1711)] = 75562, + [SMALL_STATE(1712)] = 75623, + [SMALL_STATE(1713)] = 75684, + [SMALL_STATE(1714)] = 75745, + [SMALL_STATE(1715)] = 75806, + [SMALL_STATE(1716)] = 75854, + [SMALL_STATE(1717)] = 75902, + [SMALL_STATE(1718)] = 75950, + [SMALL_STATE(1719)] = 75998, + [SMALL_STATE(1720)] = 76046, + [SMALL_STATE(1721)] = 76094, + [SMALL_STATE(1722)] = 76142, + [SMALL_STATE(1723)] = 76190, + [SMALL_STATE(1724)] = 76238, + [SMALL_STATE(1725)] = 76286, + [SMALL_STATE(1726)] = 76334, + [SMALL_STATE(1727)] = 76382, + [SMALL_STATE(1728)] = 76430, + [SMALL_STATE(1729)] = 76478, + [SMALL_STATE(1730)] = 76526, + [SMALL_STATE(1731)] = 76574, + [SMALL_STATE(1732)] = 76622, + [SMALL_STATE(1733)] = 76670, + [SMALL_STATE(1734)] = 76718, + [SMALL_STATE(1735)] = 76766, + [SMALL_STATE(1736)] = 76814, + [SMALL_STATE(1737)] = 76862, + [SMALL_STATE(1738)] = 76910, + [SMALL_STATE(1739)] = 76958, + [SMALL_STATE(1740)] = 77006, + [SMALL_STATE(1741)] = 77054, + [SMALL_STATE(1742)] = 77102, + [SMALL_STATE(1743)] = 77150, + [SMALL_STATE(1744)] = 77198, + [SMALL_STATE(1745)] = 77246, + [SMALL_STATE(1746)] = 77294, + [SMALL_STATE(1747)] = 77342, + [SMALL_STATE(1748)] = 77390, + [SMALL_STATE(1749)] = 77438, + [SMALL_STATE(1750)] = 77486, + [SMALL_STATE(1751)] = 77534, + [SMALL_STATE(1752)] = 77582, + [SMALL_STATE(1753)] = 77630, + [SMALL_STATE(1754)] = 77678, + [SMALL_STATE(1755)] = 77726, + [SMALL_STATE(1756)] = 77774, + [SMALL_STATE(1757)] = 77822, + [SMALL_STATE(1758)] = 77870, + [SMALL_STATE(1759)] = 77918, + [SMALL_STATE(1760)] = 77966, + [SMALL_STATE(1761)] = 78014, + [SMALL_STATE(1762)] = 78062, + [SMALL_STATE(1763)] = 78110, + [SMALL_STATE(1764)] = 78158, + [SMALL_STATE(1765)] = 78206, + [SMALL_STATE(1766)] = 78254, + [SMALL_STATE(1767)] = 78302, + [SMALL_STATE(1768)] = 78350, + [SMALL_STATE(1769)] = 78398, + [SMALL_STATE(1770)] = 78446, + [SMALL_STATE(1771)] = 78494, + [SMALL_STATE(1772)] = 78542, + [SMALL_STATE(1773)] = 78580, + [SMALL_STATE(1774)] = 78628, + [SMALL_STATE(1775)] = 78676, + [SMALL_STATE(1776)] = 78724, + [SMALL_STATE(1777)] = 78772, + [SMALL_STATE(1778)] = 78820, + [SMALL_STATE(1779)] = 78868, + [SMALL_STATE(1780)] = 78916, + [SMALL_STATE(1781)] = 78964, + [SMALL_STATE(1782)] = 79012, + [SMALL_STATE(1783)] = 79060, + [SMALL_STATE(1784)] = 79108, + [SMALL_STATE(1785)] = 79156, + [SMALL_STATE(1786)] = 79204, + [SMALL_STATE(1787)] = 79252, + [SMALL_STATE(1788)] = 79300, + [SMALL_STATE(1789)] = 79348, + [SMALL_STATE(1790)] = 79388, + [SMALL_STATE(1791)] = 79428, + [SMALL_STATE(1792)] = 79465, + [SMALL_STATE(1793)] = 79502, + [SMALL_STATE(1794)] = 79539, + [SMALL_STATE(1795)] = 79576, + [SMALL_STATE(1796)] = 79613, + [SMALL_STATE(1797)] = 79650, + [SMALL_STATE(1798)] = 79687, + [SMALL_STATE(1799)] = 79724, + [SMALL_STATE(1800)] = 79761, + [SMALL_STATE(1801)] = 79798, + [SMALL_STATE(1802)] = 79835, + [SMALL_STATE(1803)] = 79872, + [SMALL_STATE(1804)] = 79909, + [SMALL_STATE(1805)] = 79946, + [SMALL_STATE(1806)] = 79983, + [SMALL_STATE(1807)] = 80020, + [SMALL_STATE(1808)] = 80057, + [SMALL_STATE(1809)] = 80094, + [SMALL_STATE(1810)] = 80131, + [SMALL_STATE(1811)] = 80168, + [SMALL_STATE(1812)] = 80205, + [SMALL_STATE(1813)] = 80242, + [SMALL_STATE(1814)] = 80279, + [SMALL_STATE(1815)] = 80316, + [SMALL_STATE(1816)] = 80353, + [SMALL_STATE(1817)] = 80390, + [SMALL_STATE(1818)] = 80427, + [SMALL_STATE(1819)] = 80464, + [SMALL_STATE(1820)] = 80501, + [SMALL_STATE(1821)] = 80538, + [SMALL_STATE(1822)] = 80575, + [SMALL_STATE(1823)] = 80612, + [SMALL_STATE(1824)] = 80649, + [SMALL_STATE(1825)] = 80686, + [SMALL_STATE(1826)] = 80723, + [SMALL_STATE(1827)] = 80760, + [SMALL_STATE(1828)] = 80797, + [SMALL_STATE(1829)] = 80848, + [SMALL_STATE(1830)] = 80901, + [SMALL_STATE(1831)] = 80954, + [SMALL_STATE(1832)] = 81007, + [SMALL_STATE(1833)] = 81060, + [SMALL_STATE(1834)] = 81110, + [SMALL_STATE(1835)] = 81137, + [SMALL_STATE(1836)] = 81164, + [SMALL_STATE(1837)] = 81191, + [SMALL_STATE(1838)] = 81218, + [SMALL_STATE(1839)] = 81245, + [SMALL_STATE(1840)] = 81271, + [SMALL_STATE(1841)] = 81297, + [SMALL_STATE(1842)] = 81323, + [SMALL_STATE(1843)] = 81349, + [SMALL_STATE(1844)] = 81375, + [SMALL_STATE(1845)] = 81403, + [SMALL_STATE(1846)] = 81429, + [SMALL_STATE(1847)] = 81457, + [SMALL_STATE(1848)] = 81483, + [SMALL_STATE(1849)] = 81511, + [SMALL_STATE(1850)] = 81537, + [SMALL_STATE(1851)] = 81563, + [SMALL_STATE(1852)] = 81589, + [SMALL_STATE(1853)] = 81615, + [SMALL_STATE(1854)] = 81641, + [SMALL_STATE(1855)] = 81669, + [SMALL_STATE(1856)] = 81695, + [SMALL_STATE(1857)] = 81721, + [SMALL_STATE(1858)] = 81749, + [SMALL_STATE(1859)] = 81775, + [SMALL_STATE(1860)] = 81803, + [SMALL_STATE(1861)] = 81831, + [SMALL_STATE(1862)] = 81856, + [SMALL_STATE(1863)] = 81879, + [SMALL_STATE(1864)] = 81904, + [SMALL_STATE(1865)] = 81929, + [SMALL_STATE(1866)] = 81954, + [SMALL_STATE(1867)] = 81979, + [SMALL_STATE(1868)] = 82004, + [SMALL_STATE(1869)] = 82029, + [SMALL_STATE(1870)] = 82052, + [SMALL_STATE(1871)] = 82075, + [SMALL_STATE(1872)] = 82100, + [SMALL_STATE(1873)] = 82125, + [SMALL_STATE(1874)] = 82148, + [SMALL_STATE(1875)] = 82173, + [SMALL_STATE(1876)] = 82198, + [SMALL_STATE(1877)] = 82221, + [SMALL_STATE(1878)] = 82244, + [SMALL_STATE(1879)] = 82263, + [SMALL_STATE(1880)] = 82286, + [SMALL_STATE(1881)] = 82309, + [SMALL_STATE(1882)] = 82332, + [SMALL_STATE(1883)] = 82357, + [SMALL_STATE(1884)] = 82380, + [SMALL_STATE(1885)] = 82399, + [SMALL_STATE(1886)] = 82424, + [SMALL_STATE(1887)] = 82449, + [SMALL_STATE(1888)] = 82474, + [SMALL_STATE(1889)] = 82497, + [SMALL_STATE(1890)] = 82522, + [SMALL_STATE(1891)] = 82547, + [SMALL_STATE(1892)] = 82570, + [SMALL_STATE(1893)] = 82595, + [SMALL_STATE(1894)] = 82620, + [SMALL_STATE(1895)] = 82643, + [SMALL_STATE(1896)] = 82668, + [SMALL_STATE(1897)] = 82693, + [SMALL_STATE(1898)] = 82718, + [SMALL_STATE(1899)] = 82743, + [SMALL_STATE(1900)] = 82768, + [SMALL_STATE(1901)] = 82793, + [SMALL_STATE(1902)] = 82816, + [SMALL_STATE(1903)] = 82839, + [SMALL_STATE(1904)] = 82858, + [SMALL_STATE(1905)] = 82881, + [SMALL_STATE(1906)] = 82904, + [SMALL_STATE(1907)] = 82929, + [SMALL_STATE(1908)] = 82949, + [SMALL_STATE(1909)] = 82969, + [SMALL_STATE(1910)] = 82989, + [SMALL_STATE(1911)] = 83011, + [SMALL_STATE(1912)] = 83031, + [SMALL_STATE(1913)] = 83051, + [SMALL_STATE(1914)] = 83073, + [SMALL_STATE(1915)] = 83095, + [SMALL_STATE(1916)] = 83117, + [SMALL_STATE(1917)] = 83137, + [SMALL_STATE(1918)] = 83159, + [SMALL_STATE(1919)] = 83179, + [SMALL_STATE(1920)] = 83201, + [SMALL_STATE(1921)] = 83223, + [SMALL_STATE(1922)] = 83245, + [SMALL_STATE(1923)] = 83267, + [SMALL_STATE(1924)] = 83287, + [SMALL_STATE(1925)] = 83307, + [SMALL_STATE(1926)] = 83327, + [SMALL_STATE(1927)] = 83349, + [SMALL_STATE(1928)] = 83369, + [SMALL_STATE(1929)] = 83391, + [SMALL_STATE(1930)] = 83411, + [SMALL_STATE(1931)] = 83429, + [SMALL_STATE(1932)] = 83451, + [SMALL_STATE(1933)] = 83473, + [SMALL_STATE(1934)] = 83495, + [SMALL_STATE(1935)] = 83512, + [SMALL_STATE(1936)] = 83527, + [SMALL_STATE(1937)] = 83546, + [SMALL_STATE(1938)] = 83565, + [SMALL_STATE(1939)] = 83580, + [SMALL_STATE(1940)] = 83599, + [SMALL_STATE(1941)] = 83618, + [SMALL_STATE(1942)] = 83637, + [SMALL_STATE(1943)] = 83656, + [SMALL_STATE(1944)] = 83675, + [SMALL_STATE(1945)] = 83694, + [SMALL_STATE(1946)] = 83713, + [SMALL_STATE(1947)] = 83732, + [SMALL_STATE(1948)] = 83751, + [SMALL_STATE(1949)] = 83770, + [SMALL_STATE(1950)] = 83789, + [SMALL_STATE(1951)] = 83808, + [SMALL_STATE(1952)] = 83827, + [SMALL_STATE(1953)] = 83846, + [SMALL_STATE(1954)] = 83865, + [SMALL_STATE(1955)] = 83884, + [SMALL_STATE(1956)] = 83901, + [SMALL_STATE(1957)] = 83920, + [SMALL_STATE(1958)] = 83939, + [SMALL_STATE(1959)] = 83954, + [SMALL_STATE(1960)] = 83973, + [SMALL_STATE(1961)] = 83990, + [SMALL_STATE(1962)] = 84007, + [SMALL_STATE(1963)] = 84024, + [SMALL_STATE(1964)] = 84043, + [SMALL_STATE(1965)] = 84062, + [SMALL_STATE(1966)] = 84081, + [SMALL_STATE(1967)] = 84100, + [SMALL_STATE(1968)] = 84117, + [SMALL_STATE(1969)] = 84136, + [SMALL_STATE(1970)] = 84155, + [SMALL_STATE(1971)] = 84174, + [SMALL_STATE(1972)] = 84190, + [SMALL_STATE(1973)] = 84206, + [SMALL_STATE(1974)] = 84220, + [SMALL_STATE(1975)] = 84236, + [SMALL_STATE(1976)] = 84252, + [SMALL_STATE(1977)] = 84266, + [SMALL_STATE(1978)] = 84280, + [SMALL_STATE(1979)] = 84296, + [SMALL_STATE(1980)] = 84312, + [SMALL_STATE(1981)] = 84328, + [SMALL_STATE(1982)] = 84344, + [SMALL_STATE(1983)] = 84358, + [SMALL_STATE(1984)] = 84372, + [SMALL_STATE(1985)] = 84388, + [SMALL_STATE(1986)] = 84404, + [SMALL_STATE(1987)] = 84420, + [SMALL_STATE(1988)] = 84436, + [SMALL_STATE(1989)] = 84452, + [SMALL_STATE(1990)] = 84468, + [SMALL_STATE(1991)] = 84484, + [SMALL_STATE(1992)] = 84500, + [SMALL_STATE(1993)] = 84514, + [SMALL_STATE(1994)] = 84528, + [SMALL_STATE(1995)] = 84544, + [SMALL_STATE(1996)] = 84560, + [SMALL_STATE(1997)] = 84576, + [SMALL_STATE(1998)] = 84592, + [SMALL_STATE(1999)] = 84606, + [SMALL_STATE(2000)] = 84620, + [SMALL_STATE(2001)] = 84636, + [SMALL_STATE(2002)] = 84650, + [SMALL_STATE(2003)] = 84664, + [SMALL_STATE(2004)] = 84678, + [SMALL_STATE(2005)] = 84694, + [SMALL_STATE(2006)] = 84710, + [SMALL_STATE(2007)] = 84724, + [SMALL_STATE(2008)] = 84738, + [SMALL_STATE(2009)] = 84754, + [SMALL_STATE(2010)] = 84768, + [SMALL_STATE(2011)] = 84782, + [SMALL_STATE(2012)] = 84796, + [SMALL_STATE(2013)] = 84810, + [SMALL_STATE(2014)] = 84824, + [SMALL_STATE(2015)] = 84840, + [SMALL_STATE(2016)] = 84856, + [SMALL_STATE(2017)] = 84870, + [SMALL_STATE(2018)] = 84884, + [SMALL_STATE(2019)] = 84900, + [SMALL_STATE(2020)] = 84916, + [SMALL_STATE(2021)] = 84930, + [SMALL_STATE(2022)] = 84944, + [SMALL_STATE(2023)] = 84960, + [SMALL_STATE(2024)] = 84976, + [SMALL_STATE(2025)] = 84990, + [SMALL_STATE(2026)] = 85004, + [SMALL_STATE(2027)] = 85018, + [SMALL_STATE(2028)] = 85034, + [SMALL_STATE(2029)] = 85050, + [SMALL_STATE(2030)] = 85064, + [SMALL_STATE(2031)] = 85078, + [SMALL_STATE(2032)] = 85094, + [SMALL_STATE(2033)] = 85108, + [SMALL_STATE(2034)] = 85122, + [SMALL_STATE(2035)] = 85138, + [SMALL_STATE(2036)] = 85154, + [SMALL_STATE(2037)] = 85168, + [SMALL_STATE(2038)] = 85182, + [SMALL_STATE(2039)] = 85196, + [SMALL_STATE(2040)] = 85210, + [SMALL_STATE(2041)] = 85226, + [SMALL_STATE(2042)] = 85242, + [SMALL_STATE(2043)] = 85256, + [SMALL_STATE(2044)] = 85272, + [SMALL_STATE(2045)] = 85288, + [SMALL_STATE(2046)] = 85304, + [SMALL_STATE(2047)] = 85320, + [SMALL_STATE(2048)] = 85336, + [SMALL_STATE(2049)] = 85352, + [SMALL_STATE(2050)] = 85368, + [SMALL_STATE(2051)] = 85384, + [SMALL_STATE(2052)] = 85400, + [SMALL_STATE(2053)] = 85414, + [SMALL_STATE(2054)] = 85428, + [SMALL_STATE(2055)] = 85444, + [SMALL_STATE(2056)] = 85460, + [SMALL_STATE(2057)] = 85476, + [SMALL_STATE(2058)] = 85492, + [SMALL_STATE(2059)] = 85508, + [SMALL_STATE(2060)] = 85524, + [SMALL_STATE(2061)] = 85538, + [SMALL_STATE(2062)] = 85554, + [SMALL_STATE(2063)] = 85568, + [SMALL_STATE(2064)] = 85584, + [SMALL_STATE(2065)] = 85600, + [SMALL_STATE(2066)] = 85616, + [SMALL_STATE(2067)] = 85632, + [SMALL_STATE(2068)] = 85648, + [SMALL_STATE(2069)] = 85664, + [SMALL_STATE(2070)] = 85680, + [SMALL_STATE(2071)] = 85696, + [SMALL_STATE(2072)] = 85712, + [SMALL_STATE(2073)] = 85728, + [SMALL_STATE(2074)] = 85744, + [SMALL_STATE(2075)] = 85760, + [SMALL_STATE(2076)] = 85776, + [SMALL_STATE(2077)] = 85792, + [SMALL_STATE(2078)] = 85808, + [SMALL_STATE(2079)] = 85824, + [SMALL_STATE(2080)] = 85840, + [SMALL_STATE(2081)] = 85856, + [SMALL_STATE(2082)] = 85872, + [SMALL_STATE(2083)] = 85888, + [SMALL_STATE(2084)] = 85904, + [SMALL_STATE(2085)] = 85920, + [SMALL_STATE(2086)] = 85936, + [SMALL_STATE(2087)] = 85952, + [SMALL_STATE(2088)] = 85968, + [SMALL_STATE(2089)] = 85984, + [SMALL_STATE(2090)] = 86000, + [SMALL_STATE(2091)] = 86016, + [SMALL_STATE(2092)] = 86032, + [SMALL_STATE(2093)] = 86048, + [SMALL_STATE(2094)] = 86064, + [SMALL_STATE(2095)] = 86080, + [SMALL_STATE(2096)] = 86096, + [SMALL_STATE(2097)] = 86112, + [SMALL_STATE(2098)] = 86128, + [SMALL_STATE(2099)] = 86144, + [SMALL_STATE(2100)] = 86160, + [SMALL_STATE(2101)] = 86176, + [SMALL_STATE(2102)] = 86192, + [SMALL_STATE(2103)] = 86208, + [SMALL_STATE(2104)] = 86224, + [SMALL_STATE(2105)] = 86240, + [SMALL_STATE(2106)] = 86254, + [SMALL_STATE(2107)] = 86270, + [SMALL_STATE(2108)] = 86286, + [SMALL_STATE(2109)] = 86302, + [SMALL_STATE(2110)] = 86318, + [SMALL_STATE(2111)] = 86334, + [SMALL_STATE(2112)] = 86350, + [SMALL_STATE(2113)] = 86366, + [SMALL_STATE(2114)] = 86382, + [SMALL_STATE(2115)] = 86398, + [SMALL_STATE(2116)] = 86414, + [SMALL_STATE(2117)] = 86430, + [SMALL_STATE(2118)] = 86446, + [SMALL_STATE(2119)] = 86462, + [SMALL_STATE(2120)] = 86478, + [SMALL_STATE(2121)] = 86494, + [SMALL_STATE(2122)] = 86510, + [SMALL_STATE(2123)] = 86526, + [SMALL_STATE(2124)] = 86542, + [SMALL_STATE(2125)] = 86558, + [SMALL_STATE(2126)] = 86574, + [SMALL_STATE(2127)] = 86590, + [SMALL_STATE(2128)] = 86606, + [SMALL_STATE(2129)] = 86622, + [SMALL_STATE(2130)] = 86638, + [SMALL_STATE(2131)] = 86654, + [SMALL_STATE(2132)] = 86670, + [SMALL_STATE(2133)] = 86686, + [SMALL_STATE(2134)] = 86702, + [SMALL_STATE(2135)] = 86718, + [SMALL_STATE(2136)] = 86734, + [SMALL_STATE(2137)] = 86750, + [SMALL_STATE(2138)] = 86766, + [SMALL_STATE(2139)] = 86782, + [SMALL_STATE(2140)] = 86798, + [SMALL_STATE(2141)] = 86814, + [SMALL_STATE(2142)] = 86830, + [SMALL_STATE(2143)] = 86846, + [SMALL_STATE(2144)] = 86862, + [SMALL_STATE(2145)] = 86878, + [SMALL_STATE(2146)] = 86894, + [SMALL_STATE(2147)] = 86910, + [SMALL_STATE(2148)] = 86926, + [SMALL_STATE(2149)] = 86942, + [SMALL_STATE(2150)] = 86958, + [SMALL_STATE(2151)] = 86974, + [SMALL_STATE(2152)] = 86990, + [SMALL_STATE(2153)] = 87006, + [SMALL_STATE(2154)] = 87022, + [SMALL_STATE(2155)] = 87038, + [SMALL_STATE(2156)] = 87054, + [SMALL_STATE(2157)] = 87070, + [SMALL_STATE(2158)] = 87086, + [SMALL_STATE(2159)] = 87102, + [SMALL_STATE(2160)] = 87118, + [SMALL_STATE(2161)] = 87134, + [SMALL_STATE(2162)] = 87150, + [SMALL_STATE(2163)] = 87166, + [SMALL_STATE(2164)] = 87182, + [SMALL_STATE(2165)] = 87198, + [SMALL_STATE(2166)] = 87214, + [SMALL_STATE(2167)] = 87230, + [SMALL_STATE(2168)] = 87246, + [SMALL_STATE(2169)] = 87262, + [SMALL_STATE(2170)] = 87278, + [SMALL_STATE(2171)] = 87294, + [SMALL_STATE(2172)] = 87310, + [SMALL_STATE(2173)] = 87326, + [SMALL_STATE(2174)] = 87342, + [SMALL_STATE(2175)] = 87358, + [SMALL_STATE(2176)] = 87374, + [SMALL_STATE(2177)] = 87390, + [SMALL_STATE(2178)] = 87406, + [SMALL_STATE(2179)] = 87422, + [SMALL_STATE(2180)] = 87438, + [SMALL_STATE(2181)] = 87454, + [SMALL_STATE(2182)] = 87470, + [SMALL_STATE(2183)] = 87484, + [SMALL_STATE(2184)] = 87498, + [SMALL_STATE(2185)] = 87514, + [SMALL_STATE(2186)] = 87530, + [SMALL_STATE(2187)] = 87546, + [SMALL_STATE(2188)] = 87559, + [SMALL_STATE(2189)] = 87572, + [SMALL_STATE(2190)] = 87585, + [SMALL_STATE(2191)] = 87598, + [SMALL_STATE(2192)] = 87611, + [SMALL_STATE(2193)] = 87624, + [SMALL_STATE(2194)] = 87637, + [SMALL_STATE(2195)] = 87650, + [SMALL_STATE(2196)] = 87663, + [SMALL_STATE(2197)] = 87676, + [SMALL_STATE(2198)] = 87689, + [SMALL_STATE(2199)] = 87702, + [SMALL_STATE(2200)] = 87715, + [SMALL_STATE(2201)] = 87728, + [SMALL_STATE(2202)] = 87741, + [SMALL_STATE(2203)] = 87754, + [SMALL_STATE(2204)] = 87767, + [SMALL_STATE(2205)] = 87780, + [SMALL_STATE(2206)] = 87793, + [SMALL_STATE(2207)] = 87806, + [SMALL_STATE(2208)] = 87819, + [SMALL_STATE(2209)] = 87832, + [SMALL_STATE(2210)] = 87845, + [SMALL_STATE(2211)] = 87858, + [SMALL_STATE(2212)] = 87871, + [SMALL_STATE(2213)] = 87884, + [SMALL_STATE(2214)] = 87897, + [SMALL_STATE(2215)] = 87910, + [SMALL_STATE(2216)] = 87923, + [SMALL_STATE(2217)] = 87936, + [SMALL_STATE(2218)] = 87949, + [SMALL_STATE(2219)] = 87962, + [SMALL_STATE(2220)] = 87975, + [SMALL_STATE(2221)] = 87988, + [SMALL_STATE(2222)] = 88001, + [SMALL_STATE(2223)] = 88014, + [SMALL_STATE(2224)] = 88027, + [SMALL_STATE(2225)] = 88040, + [SMALL_STATE(2226)] = 88053, + [SMALL_STATE(2227)] = 88066, + [SMALL_STATE(2228)] = 88079, + [SMALL_STATE(2229)] = 88092, + [SMALL_STATE(2230)] = 88105, + [SMALL_STATE(2231)] = 88118, + [SMALL_STATE(2232)] = 88131, + [SMALL_STATE(2233)] = 88144, + [SMALL_STATE(2234)] = 88157, + [SMALL_STATE(2235)] = 88170, + [SMALL_STATE(2236)] = 88183, + [SMALL_STATE(2237)] = 88196, + [SMALL_STATE(2238)] = 88209, + [SMALL_STATE(2239)] = 88222, + [SMALL_STATE(2240)] = 88235, + [SMALL_STATE(2241)] = 88248, + [SMALL_STATE(2242)] = 88261, + [SMALL_STATE(2243)] = 88274, + [SMALL_STATE(2244)] = 88287, + [SMALL_STATE(2245)] = 88300, + [SMALL_STATE(2246)] = 88313, + [SMALL_STATE(2247)] = 88326, + [SMALL_STATE(2248)] = 88339, + [SMALL_STATE(2249)] = 88352, + [SMALL_STATE(2250)] = 88365, + [SMALL_STATE(2251)] = 88378, + [SMALL_STATE(2252)] = 88391, + [SMALL_STATE(2253)] = 88404, + [SMALL_STATE(2254)] = 88417, + [SMALL_STATE(2255)] = 88430, + [SMALL_STATE(2256)] = 88443, + [SMALL_STATE(2257)] = 88456, + [SMALL_STATE(2258)] = 88469, + [SMALL_STATE(2259)] = 88482, + [SMALL_STATE(2260)] = 88495, + [SMALL_STATE(2261)] = 88508, + [SMALL_STATE(2262)] = 88521, + [SMALL_STATE(2263)] = 88534, + [SMALL_STATE(2264)] = 88547, + [SMALL_STATE(2265)] = 88560, + [SMALL_STATE(2266)] = 88573, + [SMALL_STATE(2267)] = 88586, + [SMALL_STATE(2268)] = 88599, + [SMALL_STATE(2269)] = 88612, + [SMALL_STATE(2270)] = 88625, + [SMALL_STATE(2271)] = 88638, + [SMALL_STATE(2272)] = 88651, + [SMALL_STATE(2273)] = 88664, + [SMALL_STATE(2274)] = 88677, + [SMALL_STATE(2275)] = 88690, + [SMALL_STATE(2276)] = 88703, + [SMALL_STATE(2277)] = 88716, + [SMALL_STATE(2278)] = 88729, + [SMALL_STATE(2279)] = 88742, + [SMALL_STATE(2280)] = 88755, + [SMALL_STATE(2281)] = 88768, + [SMALL_STATE(2282)] = 88781, + [SMALL_STATE(2283)] = 88794, + [SMALL_STATE(2284)] = 88807, + [SMALL_STATE(2285)] = 88820, + [SMALL_STATE(2286)] = 88833, + [SMALL_STATE(2287)] = 88846, + [SMALL_STATE(2288)] = 88859, + [SMALL_STATE(2289)] = 88872, + [SMALL_STATE(2290)] = 88885, + [SMALL_STATE(2291)] = 88898, + [SMALL_STATE(2292)] = 88911, + [SMALL_STATE(2293)] = 88924, + [SMALL_STATE(2294)] = 88937, + [SMALL_STATE(2295)] = 88950, + [SMALL_STATE(2296)] = 88963, + [SMALL_STATE(2297)] = 88976, + [SMALL_STATE(2298)] = 88989, + [SMALL_STATE(2299)] = 89002, + [SMALL_STATE(2300)] = 89015, + [SMALL_STATE(2301)] = 89028, + [SMALL_STATE(2302)] = 89041, + [SMALL_STATE(2303)] = 89054, + [SMALL_STATE(2304)] = 89067, + [SMALL_STATE(2305)] = 89080, + [SMALL_STATE(2306)] = 89093, + [SMALL_STATE(2307)] = 89106, + [SMALL_STATE(2308)] = 89119, + [SMALL_STATE(2309)] = 89132, + [SMALL_STATE(2310)] = 89145, + [SMALL_STATE(2311)] = 89158, + [SMALL_STATE(2312)] = 89171, + [SMALL_STATE(2313)] = 89184, + [SMALL_STATE(2314)] = 89197, + [SMALL_STATE(2315)] = 89210, + [SMALL_STATE(2316)] = 89223, + [SMALL_STATE(2317)] = 89236, + [SMALL_STATE(2318)] = 89249, + [SMALL_STATE(2319)] = 89262, + [SMALL_STATE(2320)] = 89275, + [SMALL_STATE(2321)] = 89288, + [SMALL_STATE(2322)] = 89301, + [SMALL_STATE(2323)] = 89314, + [SMALL_STATE(2324)] = 89327, + [SMALL_STATE(2325)] = 89340, + [SMALL_STATE(2326)] = 89353, + [SMALL_STATE(2327)] = 89366, + [SMALL_STATE(2328)] = 89379, + [SMALL_STATE(2329)] = 89392, + [SMALL_STATE(2330)] = 89405, + [SMALL_STATE(2331)] = 89418, + [SMALL_STATE(2332)] = 89431, + [SMALL_STATE(2333)] = 89444, + [SMALL_STATE(2334)] = 89457, + [SMALL_STATE(2335)] = 89470, + [SMALL_STATE(2336)] = 89483, + [SMALL_STATE(2337)] = 89496, + [SMALL_STATE(2338)] = 89509, + [SMALL_STATE(2339)] = 89522, + [SMALL_STATE(2340)] = 89535, + [SMALL_STATE(2341)] = 89548, + [SMALL_STATE(2342)] = 89561, + [SMALL_STATE(2343)] = 89574, + [SMALL_STATE(2344)] = 89587, + [SMALL_STATE(2345)] = 89600, + [SMALL_STATE(2346)] = 89613, + [SMALL_STATE(2347)] = 89626, + [SMALL_STATE(2348)] = 89639, + [SMALL_STATE(2349)] = 89652, + [SMALL_STATE(2350)] = 89665, + [SMALL_STATE(2351)] = 89678, + [SMALL_STATE(2352)] = 89691, + [SMALL_STATE(2353)] = 89704, + [SMALL_STATE(2354)] = 89717, + [SMALL_STATE(2355)] = 89730, + [SMALL_STATE(2356)] = 89743, + [SMALL_STATE(2357)] = 89756, + [SMALL_STATE(2358)] = 89769, + [SMALL_STATE(2359)] = 89782, + [SMALL_STATE(2360)] = 89795, + [SMALL_STATE(2361)] = 89808, + [SMALL_STATE(2362)] = 89821, + [SMALL_STATE(2363)] = 89834, + [SMALL_STATE(2364)] = 89847, + [SMALL_STATE(2365)] = 89860, + [SMALL_STATE(2366)] = 89873, + [SMALL_STATE(2367)] = 89886, + [SMALL_STATE(2368)] = 89899, + [SMALL_STATE(2369)] = 89912, + [SMALL_STATE(2370)] = 89925, + [SMALL_STATE(2371)] = 89938, + [SMALL_STATE(2372)] = 89951, + [SMALL_STATE(2373)] = 89964, + [SMALL_STATE(2374)] = 89977, + [SMALL_STATE(2375)] = 89990, + [SMALL_STATE(2376)] = 90003, + [SMALL_STATE(2377)] = 90016, + [SMALL_STATE(2378)] = 90029, + [SMALL_STATE(2379)] = 90042, + [SMALL_STATE(2380)] = 90055, + [SMALL_STATE(2381)] = 90068, + [SMALL_STATE(2382)] = 90081, + [SMALL_STATE(2383)] = 90094, + [SMALL_STATE(2384)] = 90107, + [SMALL_STATE(2385)] = 90120, + [SMALL_STATE(2386)] = 90133, + [SMALL_STATE(2387)] = 90146, + [SMALL_STATE(2388)] = 90159, + [SMALL_STATE(2389)] = 90172, + [SMALL_STATE(2390)] = 90185, + [SMALL_STATE(2391)] = 90198, + [SMALL_STATE(2392)] = 90211, + [SMALL_STATE(2393)] = 90224, + [SMALL_STATE(2394)] = 90237, + [SMALL_STATE(2395)] = 90250, + [SMALL_STATE(2396)] = 90263, + [SMALL_STATE(2397)] = 90276, + [SMALL_STATE(2398)] = 90289, + [SMALL_STATE(2399)] = 90302, + [SMALL_STATE(2400)] = 90315, + [SMALL_STATE(2401)] = 90328, + [SMALL_STATE(2402)] = 90341, + [SMALL_STATE(2403)] = 90354, + [SMALL_STATE(2404)] = 90367, + [SMALL_STATE(2405)] = 90380, + [SMALL_STATE(2406)] = 90393, + [SMALL_STATE(2407)] = 90406, + [SMALL_STATE(2408)] = 90419, + [SMALL_STATE(2409)] = 90432, + [SMALL_STATE(2410)] = 90445, + [SMALL_STATE(2411)] = 90458, + [SMALL_STATE(2412)] = 90471, + [SMALL_STATE(2413)] = 90484, + [SMALL_STATE(2414)] = 90497, + [SMALL_STATE(2415)] = 90510, + [SMALL_STATE(2416)] = 90523, + [SMALL_STATE(2417)] = 90536, + [SMALL_STATE(2418)] = 90549, + [SMALL_STATE(2419)] = 90562, + [SMALL_STATE(2420)] = 90575, + [SMALL_STATE(2421)] = 90588, + [SMALL_STATE(2422)] = 90601, + [SMALL_STATE(2423)] = 90614, + [SMALL_STATE(2424)] = 90627, + [SMALL_STATE(2425)] = 90640, + [SMALL_STATE(2426)] = 90653, + [SMALL_STATE(2427)] = 90666, + [SMALL_STATE(2428)] = 90679, + [SMALL_STATE(2429)] = 90692, + [SMALL_STATE(2430)] = 90705, + [SMALL_STATE(2431)] = 90718, + [SMALL_STATE(2432)] = 90731, + [SMALL_STATE(2433)] = 90744, + [SMALL_STATE(2434)] = 90757, + [SMALL_STATE(2435)] = 90770, + [SMALL_STATE(2436)] = 90783, + [SMALL_STATE(2437)] = 90796, + [SMALL_STATE(2438)] = 90809, + [SMALL_STATE(2439)] = 90822, + [SMALL_STATE(2440)] = 90835, + [SMALL_STATE(2441)] = 90848, + [SMALL_STATE(2442)] = 90861, + [SMALL_STATE(2443)] = 90874, + [SMALL_STATE(2444)] = 90887, + [SMALL_STATE(2445)] = 90900, + [SMALL_STATE(2446)] = 90913, + [SMALL_STATE(2447)] = 90926, + [SMALL_STATE(2448)] = 90939, + [SMALL_STATE(2449)] = 90952, + [SMALL_STATE(2450)] = 90965, + [SMALL_STATE(2451)] = 90978, + [SMALL_STATE(2452)] = 90991, + [SMALL_STATE(2453)] = 91004, + [SMALL_STATE(2454)] = 91017, + [SMALL_STATE(2455)] = 91030, + [SMALL_STATE(2456)] = 91043, + [SMALL_STATE(2457)] = 91056, + [SMALL_STATE(2458)] = 91069, + [SMALL_STATE(2459)] = 91082, + [SMALL_STATE(2460)] = 91095, + [SMALL_STATE(2461)] = 91108, + [SMALL_STATE(2462)] = 91121, + [SMALL_STATE(2463)] = 91134, + [SMALL_STATE(2464)] = 91147, + [SMALL_STATE(2465)] = 91160, + [SMALL_STATE(2466)] = 91173, + [SMALL_STATE(2467)] = 91186, + [SMALL_STATE(2468)] = 91199, + [SMALL_STATE(2469)] = 91212, + [SMALL_STATE(2470)] = 91225, + [SMALL_STATE(2471)] = 91238, + [SMALL_STATE(2472)] = 91251, + [SMALL_STATE(2473)] = 91264, + [SMALL_STATE(2474)] = 91277, + [SMALL_STATE(2475)] = 91290, + [SMALL_STATE(2476)] = 91303, + [SMALL_STATE(2477)] = 91316, + [SMALL_STATE(2478)] = 91329, + [SMALL_STATE(2479)] = 91342, + [SMALL_STATE(2480)] = 91355, + [SMALL_STATE(2481)] = 91368, + [SMALL_STATE(2482)] = 91381, + [SMALL_STATE(2483)] = 91394, + [SMALL_STATE(2484)] = 91407, + [SMALL_STATE(2485)] = 91420, + [SMALL_STATE(2486)] = 91433, + [SMALL_STATE(2487)] = 91446, + [SMALL_STATE(2488)] = 91459, + [SMALL_STATE(2489)] = 91472, + [SMALL_STATE(2490)] = 91485, + [SMALL_STATE(2491)] = 91498, + [SMALL_STATE(2492)] = 91511, + [SMALL_STATE(2493)] = 91524, + [SMALL_STATE(2494)] = 91537, + [SMALL_STATE(2495)] = 91550, + [SMALL_STATE(2496)] = 91563, + [SMALL_STATE(2497)] = 91576, + [SMALL_STATE(2498)] = 91589, + [SMALL_STATE(2499)] = 91602, + [SMALL_STATE(2500)] = 91615, + [SMALL_STATE(2501)] = 91628, + [SMALL_STATE(2502)] = 91641, + [SMALL_STATE(2503)] = 91654, + [SMALL_STATE(2504)] = 91667, + [SMALL_STATE(2505)] = 91680, + [SMALL_STATE(2506)] = 91693, + [SMALL_STATE(2507)] = 91706, + [SMALL_STATE(2508)] = 91719, + [SMALL_STATE(2509)] = 91732, + [SMALL_STATE(2510)] = 91745, + [SMALL_STATE(2511)] = 91758, + [SMALL_STATE(2512)] = 91771, + [SMALL_STATE(2513)] = 91784, + [SMALL_STATE(2514)] = 91797, + [SMALL_STATE(2515)] = 91810, + [SMALL_STATE(2516)] = 91823, + [SMALL_STATE(2517)] = 91836, + [SMALL_STATE(2518)] = 91849, + [SMALL_STATE(2519)] = 91862, + [SMALL_STATE(2520)] = 91875, + [SMALL_STATE(2521)] = 91888, + [SMALL_STATE(2522)] = 91901, + [SMALL_STATE(2523)] = 91914, + [SMALL_STATE(2524)] = 91927, + [SMALL_STATE(2525)] = 91940, + [SMALL_STATE(2526)] = 91953, + [SMALL_STATE(2527)] = 91966, + [SMALL_STATE(2528)] = 91979, + [SMALL_STATE(2529)] = 91992, + [SMALL_STATE(2530)] = 92005, + [SMALL_STATE(2531)] = 92018, + [SMALL_STATE(2532)] = 92031, + [SMALL_STATE(2533)] = 92044, + [SMALL_STATE(2534)] = 92057, + [SMALL_STATE(2535)] = 92070, + [SMALL_STATE(2536)] = 92083, + [SMALL_STATE(2537)] = 92096, + [SMALL_STATE(2538)] = 92109, + [SMALL_STATE(2539)] = 92122, + [SMALL_STATE(2540)] = 92135, + [SMALL_STATE(2541)] = 92148, + [SMALL_STATE(2542)] = 92161, + [SMALL_STATE(2543)] = 92174, + [SMALL_STATE(2544)] = 92187, + [SMALL_STATE(2545)] = 92200, + [SMALL_STATE(2546)] = 92213, + [SMALL_STATE(2547)] = 92226, + [SMALL_STATE(2548)] = 92239, + [SMALL_STATE(2549)] = 92252, + [SMALL_STATE(2550)] = 92265, + [SMALL_STATE(2551)] = 92278, + [SMALL_STATE(2552)] = 92291, + [SMALL_STATE(2553)] = 92304, + [SMALL_STATE(2554)] = 92317, + [SMALL_STATE(2555)] = 92330, + [SMALL_STATE(2556)] = 92343, + [SMALL_STATE(2557)] = 92356, + [SMALL_STATE(2558)] = 92369, + [SMALL_STATE(2559)] = 92382, + [SMALL_STATE(2560)] = 92395, + [SMALL_STATE(2561)] = 92408, + [SMALL_STATE(2562)] = 92421, + [SMALL_STATE(2563)] = 92434, + [SMALL_STATE(2564)] = 92447, + [SMALL_STATE(2565)] = 92460, + [SMALL_STATE(2566)] = 92473, + [SMALL_STATE(2567)] = 92486, + [SMALL_STATE(2568)] = 92499, + [SMALL_STATE(2569)] = 92512, + [SMALL_STATE(2570)] = 92525, + [SMALL_STATE(2571)] = 92538, + [SMALL_STATE(2572)] = 92551, + [SMALL_STATE(2573)] = 92564, + [SMALL_STATE(2574)] = 92577, + [SMALL_STATE(2575)] = 92590, + [SMALL_STATE(2576)] = 92603, + [SMALL_STATE(2577)] = 92616, + [SMALL_STATE(2578)] = 92629, + [SMALL_STATE(2579)] = 92642, + [SMALL_STATE(2580)] = 92655, + [SMALL_STATE(2581)] = 92668, + [SMALL_STATE(2582)] = 92681, + [SMALL_STATE(2583)] = 92694, + [SMALL_STATE(2584)] = 92707, + [SMALL_STATE(2585)] = 92720, + [SMALL_STATE(2586)] = 92733, + [SMALL_STATE(2587)] = 92746, + [SMALL_STATE(2588)] = 92759, + [SMALL_STATE(2589)] = 92772, + [SMALL_STATE(2590)] = 92785, + [SMALL_STATE(2591)] = 92798, + [SMALL_STATE(2592)] = 92811, + [SMALL_STATE(2593)] = 92824, + [SMALL_STATE(2594)] = 92837, + [SMALL_STATE(2595)] = 92850, + [SMALL_STATE(2596)] = 92863, + [SMALL_STATE(2597)] = 92876, + [SMALL_STATE(2598)] = 92889, + [SMALL_STATE(2599)] = 92902, + [SMALL_STATE(2600)] = 92915, + [SMALL_STATE(2601)] = 92928, + [SMALL_STATE(2602)] = 92941, + [SMALL_STATE(2603)] = 92954, + [SMALL_STATE(2604)] = 92967, + [SMALL_STATE(2605)] = 92980, + [SMALL_STATE(2606)] = 92993, + [SMALL_STATE(2607)] = 93006, + [SMALL_STATE(2608)] = 93019, + [SMALL_STATE(2609)] = 93032, + [SMALL_STATE(2610)] = 93045, + [SMALL_STATE(2611)] = 93058, + [SMALL_STATE(2612)] = 93071, + [SMALL_STATE(2613)] = 93084, + [SMALL_STATE(2614)] = 93097, + [SMALL_STATE(2615)] = 93110, + [SMALL_STATE(2616)] = 93123, + [SMALL_STATE(2617)] = 93136, + [SMALL_STATE(2618)] = 93149, + [SMALL_STATE(2619)] = 93162, + [SMALL_STATE(2620)] = 93175, + [SMALL_STATE(2621)] = 93188, + [SMALL_STATE(2622)] = 93201, + [SMALL_STATE(2623)] = 93214, + [SMALL_STATE(2624)] = 93227, + [SMALL_STATE(2625)] = 93240, + [SMALL_STATE(2626)] = 93253, + [SMALL_STATE(2627)] = 93266, + [SMALL_STATE(2628)] = 93279, + [SMALL_STATE(2629)] = 93292, + [SMALL_STATE(2630)] = 93305, + [SMALL_STATE(2631)] = 93318, + [SMALL_STATE(2632)] = 93331, + [SMALL_STATE(2633)] = 93344, + [SMALL_STATE(2634)] = 93357, + [SMALL_STATE(2635)] = 93370, + [SMALL_STATE(2636)] = 93383, + [SMALL_STATE(2637)] = 93396, + [SMALL_STATE(2638)] = 93409, + [SMALL_STATE(2639)] = 93422, + [SMALL_STATE(2640)] = 93435, + [SMALL_STATE(2641)] = 93448, + [SMALL_STATE(2642)] = 93461, + [SMALL_STATE(2643)] = 93474, + [SMALL_STATE(2644)] = 93487, + [SMALL_STATE(2645)] = 93500, + [SMALL_STATE(2646)] = 93513, + [SMALL_STATE(2647)] = 93526, + [SMALL_STATE(2648)] = 93539, + [SMALL_STATE(2649)] = 93552, + [SMALL_STATE(2650)] = 93565, + [SMALL_STATE(2651)] = 93578, + [SMALL_STATE(2652)] = 93591, + [SMALL_STATE(2653)] = 93604, + [SMALL_STATE(2654)] = 93617, + [SMALL_STATE(2655)] = 93630, + [SMALL_STATE(2656)] = 93643, + [SMALL_STATE(2657)] = 93656, + [SMALL_STATE(2658)] = 93669, + [SMALL_STATE(2659)] = 93682, + [SMALL_STATE(2660)] = 93695, + [SMALL_STATE(2661)] = 93708, + [SMALL_STATE(2662)] = 93721, + [SMALL_STATE(2663)] = 93734, + [SMALL_STATE(2664)] = 93747, + [SMALL_STATE(2665)] = 93760, + [SMALL_STATE(2666)] = 93773, + [SMALL_STATE(2667)] = 93786, + [SMALL_STATE(2668)] = 93799, + [SMALL_STATE(2669)] = 93812, + [SMALL_STATE(2670)] = 93825, + [SMALL_STATE(2671)] = 93838, + [SMALL_STATE(2672)] = 93851, + [SMALL_STATE(2673)] = 93864, + [SMALL_STATE(2674)] = 93877, + [SMALL_STATE(2675)] = 93890, + [SMALL_STATE(2676)] = 93903, + [SMALL_STATE(2677)] = 93916, + [SMALL_STATE(2678)] = 93929, + [SMALL_STATE(2679)] = 93942, + [SMALL_STATE(2680)] = 93955, + [SMALL_STATE(2681)] = 93968, + [SMALL_STATE(2682)] = 93981, + [SMALL_STATE(2683)] = 93994, + [SMALL_STATE(2684)] = 94007, + [SMALL_STATE(2685)] = 94020, + [SMALL_STATE(2686)] = 94033, + [SMALL_STATE(2687)] = 94046, + [SMALL_STATE(2688)] = 94059, + [SMALL_STATE(2689)] = 94072, + [SMALL_STATE(2690)] = 94085, + [SMALL_STATE(2691)] = 94098, + [SMALL_STATE(2692)] = 94111, + [SMALL_STATE(2693)] = 94124, + [SMALL_STATE(2694)] = 94137, + [SMALL_STATE(2695)] = 94150, + [SMALL_STATE(2696)] = 94163, + [SMALL_STATE(2697)] = 94176, + [SMALL_STATE(2698)] = 94189, + [SMALL_STATE(2699)] = 94202, + [SMALL_STATE(2700)] = 94215, + [SMALL_STATE(2701)] = 94228, + [SMALL_STATE(2702)] = 94241, + [SMALL_STATE(2703)] = 94254, + [SMALL_STATE(2704)] = 94267, + [SMALL_STATE(2705)] = 94280, + [SMALL_STATE(2706)] = 94293, + [SMALL_STATE(2707)] = 94306, + [SMALL_STATE(2708)] = 94319, + [SMALL_STATE(2709)] = 94332, + [SMALL_STATE(2710)] = 94345, + [SMALL_STATE(2711)] = 94358, + [SMALL_STATE(2712)] = 94371, + [SMALL_STATE(2713)] = 94384, + [SMALL_STATE(2714)] = 94397, + [SMALL_STATE(2715)] = 94410, + [SMALL_STATE(2716)] = 94423, + [SMALL_STATE(2717)] = 94436, + [SMALL_STATE(2718)] = 94449, + [SMALL_STATE(2719)] = 94462, + [SMALL_STATE(2720)] = 94475, + [SMALL_STATE(2721)] = 94488, + [SMALL_STATE(2722)] = 94501, + [SMALL_STATE(2723)] = 94514, + [SMALL_STATE(2724)] = 94527, + [SMALL_STATE(2725)] = 94540, + [SMALL_STATE(2726)] = 94553, + [SMALL_STATE(2727)] = 94566, + [SMALL_STATE(2728)] = 94579, + [SMALL_STATE(2729)] = 94592, + [SMALL_STATE(2730)] = 94605, + [SMALL_STATE(2731)] = 94618, + [SMALL_STATE(2732)] = 94631, + [SMALL_STATE(2733)] = 94644, + [SMALL_STATE(2734)] = 94657, + [SMALL_STATE(2735)] = 94670, + [SMALL_STATE(2736)] = 94683, + [SMALL_STATE(2737)] = 94696, + [SMALL_STATE(2738)] = 94709, + [SMALL_STATE(2739)] = 94722, + [SMALL_STATE(2740)] = 94735, + [SMALL_STATE(2741)] = 94748, + [SMALL_STATE(2742)] = 94761, + [SMALL_STATE(2743)] = 94774, + [SMALL_STATE(2744)] = 94787, + [SMALL_STATE(2745)] = 94800, + [SMALL_STATE(2746)] = 94813, + [SMALL_STATE(2747)] = 94826, + [SMALL_STATE(2748)] = 94839, + [SMALL_STATE(2749)] = 94852, + [SMALL_STATE(2750)] = 94865, + [SMALL_STATE(2751)] = 94878, + [SMALL_STATE(2752)] = 94891, + [SMALL_STATE(2753)] = 94904, + [SMALL_STATE(2754)] = 94917, + [SMALL_STATE(2755)] = 94930, + [SMALL_STATE(2756)] = 94943, + [SMALL_STATE(2757)] = 94956, + [SMALL_STATE(2758)] = 94969, + [SMALL_STATE(2759)] = 94982, + [SMALL_STATE(2760)] = 94995, + [SMALL_STATE(2761)] = 95008, + [SMALL_STATE(2762)] = 95021, + [SMALL_STATE(2763)] = 95034, + [SMALL_STATE(2764)] = 95047, + [SMALL_STATE(2765)] = 95060, + [SMALL_STATE(2766)] = 95073, + [SMALL_STATE(2767)] = 95086, + [SMALL_STATE(2768)] = 95099, + [SMALL_STATE(2769)] = 95112, + [SMALL_STATE(2770)] = 95125, + [SMALL_STATE(2771)] = 95138, + [SMALL_STATE(2772)] = 95151, + [SMALL_STATE(2773)] = 95164, + [SMALL_STATE(2774)] = 95177, + [SMALL_STATE(2775)] = 95190, + [SMALL_STATE(2776)] = 95203, + [SMALL_STATE(2777)] = 95216, + [SMALL_STATE(2778)] = 95229, + [SMALL_STATE(2779)] = 95242, + [SMALL_STATE(2780)] = 95255, + [SMALL_STATE(2781)] = 95268, + [SMALL_STATE(2782)] = 95281, + [SMALL_STATE(2783)] = 95294, + [SMALL_STATE(2784)] = 95307, + [SMALL_STATE(2785)] = 95320, + [SMALL_STATE(2786)] = 95333, + [SMALL_STATE(2787)] = 95346, + [SMALL_STATE(2788)] = 95359, + [SMALL_STATE(2789)] = 95372, + [SMALL_STATE(2790)] = 95385, + [SMALL_STATE(2791)] = 95398, + [SMALL_STATE(2792)] = 95411, + [SMALL_STATE(2793)] = 95424, + [SMALL_STATE(2794)] = 95437, + [SMALL_STATE(2795)] = 95450, + [SMALL_STATE(2796)] = 95463, + [SMALL_STATE(2797)] = 95476, + [SMALL_STATE(2798)] = 95489, + [SMALL_STATE(2799)] = 95502, + [SMALL_STATE(2800)] = 95515, + [SMALL_STATE(2801)] = 95528, + [SMALL_STATE(2802)] = 95541, + [SMALL_STATE(2803)] = 95554, + [SMALL_STATE(2804)] = 95567, + [SMALL_STATE(2805)] = 95580, + [SMALL_STATE(2806)] = 95593, + [SMALL_STATE(2807)] = 95606, + [SMALL_STATE(2808)] = 95619, + [SMALL_STATE(2809)] = 95632, + [SMALL_STATE(2810)] = 95645, + [SMALL_STATE(2811)] = 95658, + [SMALL_STATE(2812)] = 95671, + [SMALL_STATE(2813)] = 95684, + [SMALL_STATE(2814)] = 95697, + [SMALL_STATE(2815)] = 95710, + [SMALL_STATE(2816)] = 95723, + [SMALL_STATE(2817)] = 95736, + [SMALL_STATE(2818)] = 95749, + [SMALL_STATE(2819)] = 95762, + [SMALL_STATE(2820)] = 95775, + [SMALL_STATE(2821)] = 95788, + [SMALL_STATE(2822)] = 95801, + [SMALL_STATE(2823)] = 95814, + [SMALL_STATE(2824)] = 95827, + [SMALL_STATE(2825)] = 95840, + [SMALL_STATE(2826)] = 95853, + [SMALL_STATE(2827)] = 95866, + [SMALL_STATE(2828)] = 95879, + [SMALL_STATE(2829)] = 95892, + [SMALL_STATE(2830)] = 95905, + [SMALL_STATE(2831)] = 95918, + [SMALL_STATE(2832)] = 95931, + [SMALL_STATE(2833)] = 95944, + [SMALL_STATE(2834)] = 95957, + [SMALL_STATE(2835)] = 95970, + [SMALL_STATE(2836)] = 95983, + [SMALL_STATE(2837)] = 95996, + [SMALL_STATE(2838)] = 96009, + [SMALL_STATE(2839)] = 96022, + [SMALL_STATE(2840)] = 96035, + [SMALL_STATE(2841)] = 96048, + [SMALL_STATE(2842)] = 96061, + [SMALL_STATE(2843)] = 96074, + [SMALL_STATE(2844)] = 96087, + [SMALL_STATE(2845)] = 96100, + [SMALL_STATE(2846)] = 96113, + [SMALL_STATE(2847)] = 96126, + [SMALL_STATE(2848)] = 96139, + [SMALL_STATE(2849)] = 96152, + [SMALL_STATE(2850)] = 96165, + [SMALL_STATE(2851)] = 96178, + [SMALL_STATE(2852)] = 96191, + [SMALL_STATE(2853)] = 96204, + [SMALL_STATE(2854)] = 96217, + [SMALL_STATE(2855)] = 96230, + [SMALL_STATE(2856)] = 96243, + [SMALL_STATE(2857)] = 96256, + [SMALL_STATE(2858)] = 96269, + [SMALL_STATE(2859)] = 96282, + [SMALL_STATE(2860)] = 96295, + [SMALL_STATE(2861)] = 96308, + [SMALL_STATE(2862)] = 96321, + [SMALL_STATE(2863)] = 96334, + [SMALL_STATE(2864)] = 96347, + [SMALL_STATE(2865)] = 96360, + [SMALL_STATE(2866)] = 96373, + [SMALL_STATE(2867)] = 96386, + [SMALL_STATE(2868)] = 96399, + [SMALL_STATE(2869)] = 96412, + [SMALL_STATE(2870)] = 96425, + [SMALL_STATE(2871)] = 96438, + [SMALL_STATE(2872)] = 96451, + [SMALL_STATE(2873)] = 96464, + [SMALL_STATE(2874)] = 96477, + [SMALL_STATE(2875)] = 96490, + [SMALL_STATE(2876)] = 96503, + [SMALL_STATE(2877)] = 96516, + [SMALL_STATE(2878)] = 96529, + [SMALL_STATE(2879)] = 96542, + [SMALL_STATE(2880)] = 96555, + [SMALL_STATE(2881)] = 96568, + [SMALL_STATE(2882)] = 96581, + [SMALL_STATE(2883)] = 96594, + [SMALL_STATE(2884)] = 96607, + [SMALL_STATE(2885)] = 96620, + [SMALL_STATE(2886)] = 96633, + [SMALL_STATE(2887)] = 96646, + [SMALL_STATE(2888)] = 96659, + [SMALL_STATE(2889)] = 96672, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -150818,2277 +153307,2333 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 3, 0, 0), - [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 3, 0, 0), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), - [125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_directive, 1, 0, 0), - [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_directive, 1, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 2, 0, 0), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 2, 0, 0), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 2, 0, 0), - [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 2, 0, 0), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2264), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2285), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2266), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2329), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 3, 0, 0), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_list_repeat1, 3, 0, 0), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 5, 0, 0), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 5, 0, 0), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), - [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 4, 0, 0), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 4, 0, 0), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(533), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(36), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2661), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2634), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(882), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2077), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2664), - [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(924), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1120), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2797), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(863), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2400), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2221), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(880), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1001), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2654), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1928), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1002), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2728), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2155), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1873), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1170), - [403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2189), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(920), - [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1043), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1043), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2213), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1150), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1235), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1819), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2399), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2399), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2404), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2109), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2431), - [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2432), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(585), - [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(822), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1243), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1269), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1270), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1254), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1238), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(824), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_list, 1, 0, 0), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_list, 1, 0, 0), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5, 0, 0), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5, 0, 0), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 6, 0, 0), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 6, 0, 0), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 7, 0, 0), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 7, 0, 0), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(767), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(21), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2665), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(879), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1950), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2211), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1180), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2542), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2529), - [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2350), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(898), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(925), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2453), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1916), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(957), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1833), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2267), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2267), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2284), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1948), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2318), - [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2319), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(802), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(801), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(27), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2409), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(899), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2027), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2493), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1066), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2738), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2222), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2286), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(891), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(930), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2451), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1911), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(931), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1834), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2293), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2293), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2295), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2082), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2224), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2225), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(799), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 3, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 3, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 2, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl, 1, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl, 1, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 4, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 4, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 5, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 5, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 5, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 5, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 5, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 5, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 5, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 5, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_decl, 5, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_decl, 5, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_body, 2, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_body, 2, 0, 0), - [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 2, 0, 0), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 2, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 4, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 3, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 3, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 6, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 6, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 6, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 6, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 6, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 6, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 6, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 6, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_decl, 6, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_decl, 6, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 4, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 4, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_decl, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_decl, 3, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_decl, 3, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_decl, 3, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 7, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 7, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 7, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 7, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 7, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 7, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 7, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 7, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 7, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 7, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_enum_decl, 8, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_enum_decl, 8, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 4, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 4, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 9, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 9, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr, 1, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_body, 3, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_body, 3, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 3, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 3, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 1, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 1, 0, 0), - [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 3, 0, 0), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 3, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 3, 0, 0), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 3, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interval, 2, 0, 0), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interval, 2, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3, 0, 0), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 5, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 5, 0, 0), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 4, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 4, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 1, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 1, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 5, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 5, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_decl, 3, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_decl, 3, 0, 0), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_decl, 2, 0, 0), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_decl, 2, 0, 0), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_decl, 4, 0, 0), - [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_decl, 4, 0, 0), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 4, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 4, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 3, 0, 0), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 3, 0, 0), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 4, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 4, 0, 0), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 8, 0, 0), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 8, 0, 0), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 3, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 3, 0, 0), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 7, 0, 0), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 7, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 12, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 12, 0, 0), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 6, 0, 0), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 6, 0, 0), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 5, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 5, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 11, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 11, 0, 0), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 9, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 9, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 10, 0, 0), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 10, 0, 0), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 1, 0, 0), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 1, 0, 0), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), - [1780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_list, 1, 0, 0), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_list, 1, 0, 0), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [1875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2588), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 1, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(924), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2494), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2155), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1873), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(920), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1235), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1269), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1254), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_list, 1, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_list, 1, 0, 0), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_class, 1, 0, 0), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_class, 1, 0, 0), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2258), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2260), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2537), - [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2379), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 3, 0, 0), + [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 3, 0, 0), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_directive, 1, 0, 0), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_directive, 1, 0, 0), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 2, 0, 0), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 2, 0, 0), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 2, 0, 0), + [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 2, 0, 0), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2229), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1920), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), + [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2837), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 3, 0, 0), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_list_repeat1, 3, 0, 0), + [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 4, 0, 0), + [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 4, 0, 0), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 5, 0, 0), + [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 5, 0, 0), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(570), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(31), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2662), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2550), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(920), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2008), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2713), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1232), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1139), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2847), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(878), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2448), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2413), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(904), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1017), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2633), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1943), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1018), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2692), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2660), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1885), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1196), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2545), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1098), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1100), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1100), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2527), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1184), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1259), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1274), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1855), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2329), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2329), + [445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2331), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2016), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2479), + [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2480), + [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(622), + [460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2017), + [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(833), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1266), + [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1279), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1278), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1274), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1257), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(832), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_list, 1, 0, 0), + [486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_list, 1, 0, 0), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 7, 0, 0), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 7, 0, 0), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 0), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 0), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(774), + [583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(23), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2392), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(916), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2069), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2216), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2198), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2323), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2395), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(913), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(937), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2877), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1966), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(938), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1852), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2613), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2613), + [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2681), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1976), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2366), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2367), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(785), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1977), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(814), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(25), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2561), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(905), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2107), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2541), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1080), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2787), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2269), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2426), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(908), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(948), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2339), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1957), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(949), + [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(1851), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2435), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2436), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2060), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2271), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2272), + [718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(2062), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4, 0, 0), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 4, 0, 0), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 5, 0, 0), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 5, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 6, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 6, 0, 0), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 3, 0, 0), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 3, 0, 0), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 2, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 2, 0, 0), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_decl, 4, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_decl, 4, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 4, 0, 0), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 4, 0, 0), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_body, 3, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_body, 3, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 5, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 5, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr, 3, 0, 0), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr, 3, 0, 0), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 5, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 5, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 5, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 5, 0, 0), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 5, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 5, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_decl, 5, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_decl, 5, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 2, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_params, 3, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_params, 3, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 6, 0, 0), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 6, 0, 0), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 6, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 6, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 6, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 6, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 6, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 6, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_decl, 6, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_decl, 6, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_decl, 2, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_decl, 2, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_directive, 1, 0, 0), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_directive, 1, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 7, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 7, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 7, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 7, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 7, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 7, 0, 0), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 7, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 7, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 7, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 7, 0, 0), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_enum_decl, 8, 0, 0), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_enum_decl, 8, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 8, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 8, 0, 0), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_decl, 3, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_decl, 3, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_decl, 3, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_decl, 3, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_record_decl, 9, 0, 0), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_record_decl, 9, 0, 0), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 3, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 3, 0, 0), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr, 1, 0, 0), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr, 1, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 1, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 1, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 3, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 3, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 3, 0, 0), + [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 3, 0, 0), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interval, 2, 0, 0), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interval, 2, 0, 0), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3, 0, 0), + [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 4, 0, 0), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 4, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 3, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 3, 0, 0), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr, 5, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr, 5, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_decl, 4, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_decl, 4, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pragma, 3, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pragma, 3, 0, 0), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_body, 2, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_body, 2, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_decl, 3, 0, 0), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_decl, 3, 0, 0), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl, 1, 0, 0), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl, 1, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_decl, 4, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_decl, 4, 0, 0), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_decl, 4, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_decl, 4, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 3, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 4, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 4, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_slice, 5, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_slice, 5, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redef_decl, 4, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redef_decl, 4, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 12, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 12, 0, 0), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 6, 0, 0), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 6, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 7, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 7, 0, 0), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 5, 0, 0), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 5, 0, 0), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 9, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 9, 0, 0), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 10, 0, 0), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 10, 0, 0), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 11, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 11, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 1, 0, 0), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 3, 0, 0), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 3, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt, 4, 0, 0), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt, 4, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_list, 1, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_list, 1, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 2, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer, 1, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2550), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1232), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2545), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2527), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1184), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1259), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1274), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1279), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1278), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1274), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1257), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_list, 1, 0, 0), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_list, 1, 0, 0), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2257), + [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2277), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2279), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2540), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1856), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2342), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1798), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 3, 0, 0), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 3, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 4, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 4, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 3, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 3, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hook, 3, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hook, 3, 0, 0), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1227), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2512), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_hdr, 3, 0, 0), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_list, 2, 0, 0), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_msg, 2, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_arg, 3, 0, 0), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), - [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1242), - [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2750), - [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2094), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), - [3083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), - [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2767), - [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(1966), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2329), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 5, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 5, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hook, 4, 0, 0), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hook, 4, 0, 0), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 4, 0, 0), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 4, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_hdr, 1, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_hdr, 1, 0, 0), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [3284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), - [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redef_record_decl_repeat1, 2, 0, 0), - [3296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redef_record_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 3, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_list, 1, 0, 0), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 1, 0, 0), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_arg, 4, 0, 0), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_args, 1, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1, 0, 0), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 4, 0, 0), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_args_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 2, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 3, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_args, 2, 0, 0), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 2, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 5, 0, 0), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_lambda, 2, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_lambda, 1, 0, 0), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1, 0, 0), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_hdr, 4, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 4, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 4, 0, 0), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 3, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 4, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 5, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_args_repeat1, 2, 0, 0), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 3, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stmt_repeat1, 2, 0, 0), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 5, 0, 0), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4522] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2389), + [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1821), + [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1983), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_class, 1, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_class, 1, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hook, 3, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hook, 3, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 3, 0, 0), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 3, 0, 0), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 3, 0, 0), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 3, 0, 0), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 4, 0, 0), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 4, 0, 0), + [2342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), + [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2560), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_hdr, 3, 0, 0), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_list, 2, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_msg, 2, 0, 0), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_arg, 3, 0, 0), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr, 1, 0, 0), SHIFT(2243), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2656), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr, 1, 0, 0), SHIFT(2301), + [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_repeat1, 2, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [3154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2401), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2011), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2837), + [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2855), + [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [3172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_func_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func_hdr, 1, 0, 0), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func_hdr, 1, 0, 0), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hook, 4, 0, 0), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hook, 4, 0, 0), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event, 5, 0, 0), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event, 5, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_func, 4, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_func, 4, 0, 0), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 1, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [3343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [3346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [3349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), SHIFT_REPEAT(877), + [3352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 1, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 3, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redef_record_decl_repeat1, 2, 0, 0), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redef_record_decl_repeat1, 2, 0, 0), SHIFT_REPEAT(2352), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_list, 1, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 1, 0, 0), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_list_repeat1, 4, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 2, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_args, 1, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 3, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_arg, 4, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_args, 2, 0, 0), + [3461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_args_repeat1, 2, 0, 0), SHIFT_REPEAT(2338), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 4, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 4, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_capture_list_repeat1, 2, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_deprecated, 3, 0, 0), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 4, 0, 0), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_type_list, 5, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_lambda, 2, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_hdr, 4, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_stmt_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_spec, 5, 0, 0), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_lambda, 1, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body_elem, 2, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 5, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_stmt_repeat1, 2, 0, 0), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4, 0, 0), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_type_list_repeat1, 3, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_args_repeat1, 2, 0, 0), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4852] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), }; #ifdef __cplusplus