tree-sitter-d2/src/parser.c

6876 lines
175 KiB
C
Raw Normal View History

2022-12-04 00:07:26 +03:00
#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2022-12-07 18:52:19 +03:00
#define STATE_COUNT 218
2022-12-04 00:07:26 +03:00
#define LARGE_STATE_COUNT 2
2022-12-07 18:52:19 +03:00
#define SYMBOL_COUNT 84
#define ALIAS_COUNT 1
#define TOKEN_COUNT 47
2022-12-04 18:35:37 +03:00
#define EXTERNAL_TOKEN_COUNT 0
2022-12-04 03:21:42 +03:00
#define FIELD_COUNT 0
2022-12-06 11:57:59 +03:00
#define MAX_ALIAS_SEQUENCE_LENGTH 8
2022-12-07 18:52:19 +03:00
#define PRODUCTION_ID_COUNT 2
2022-12-04 00:07:26 +03:00
enum {
2022-12-04 18:35:50 +03:00
sym__word = 1,
2022-12-06 11:57:59 +03:00
anon_sym_ = 2,
2022-12-07 18:52:19 +03:00
anon_sym_TAB = 3,
sym__root_attr_key = 4,
anon_sym_LBRACE = 5,
anon_sym_RBRACE = 6,
anon_sym_style = 7,
anon_sym_shape = 8,
anon_sym_label = 9,
anon_sym_constraint = 10,
anon_sym_icon = 11,
anon_sym_width = 12,
anon_sym_height = 13,
anon_sym_opacity = 14,
anon_sym_fill = 15,
anon_sym_stroke = 16,
anon_sym_stroke_DASHwidth = 17,
anon_sym_stroke_DASHdash = 18,
anon_sym_border_DASHradius = 19,
anon_sym_font_DASHcolor = 20,
anon_sym_shadow = 21,
anon_sym_multiple = 22,
anon_sym_animated = 23,
anon_sym_3d = 24,
anon_sym_link = 25,
sym__text_attr_key = 26,
anon_sym_source_DASHarrowhead = 27,
anon_sym_target_DASHarrowhead = 28,
anon_sym_COLON = 29,
anon_sym_DASH_DASH = 30,
anon_sym_LT_DASH = 31,
anon_sym_GT = 32,
anon_sym_DASH_GT = 33,
sym__dash = 34,
sym_dot = 35,
sym__unquoted_string = 36,
anon_sym_SQUOTE = 37,
aux_sym_string_token1 = 38,
anon_sym_DQUOTE = 39,
aux_sym_string_token2 = 40,
anon_sym_BQUOTE = 41,
aux_sym_string_token3 = 42,
sym_line_comment = 43,
anon_sym_LF = 44,
anon_sym_2 = 45,
anon_sym_SEMI = 46,
sym_source_file = 47,
sym__definition = 48,
sym_connection = 49,
sym_shape = 50,
sym_label = 51,
sym_attr_value = 52,
sym__root_attribute = 53,
sym__shape_block = 54,
sym__shape_block_definition = 55,
sym__shape_attribute = 56,
sym__style_attribute = 57,
sym__style_attr_block = 58,
sym__inner_style_attribute = 59,
sym__connection_attribute = 60,
sym__shape_attr_key = 61,
sym__style_attr_key = 62,
sym__connection_attr_key = 63,
sym__identifier = 64,
sym_identifier = 65,
sym__colon = 66,
sym__arrow = 67,
sym_arrow = 68,
sym_string = 69,
sym__emptyline = 70,
sym__eof = 71,
sym__end = 72,
aux_sym_source_file_repeat1 = 73,
aux_sym_connection_repeat1 = 74,
aux_sym_shape_repeat1 = 75,
aux_sym_attr_value_repeat1 = 76,
aux_sym__shape_block_repeat1 = 77,
aux_sym__style_attr_block_repeat1 = 78,
aux_sym_identifier_repeat1 = 79,
aux_sym_arrow_repeat1 = 80,
aux_sym_string_repeat1 = 81,
aux_sym_string_repeat2 = 82,
aux_sym_string_repeat3 = 83,
alias_sym_invalid = 84,
2022-12-04 00:07:26 +03:00
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
2022-12-04 18:35:50 +03:00
[sym__word] = "_word",
2022-12-06 11:57:59 +03:00
[anon_sym_] = " ",
2022-12-07 18:52:19 +03:00
[anon_sym_TAB] = "\t",
2022-12-04 23:45:53 +03:00
[sym__root_attr_key] = "attr_key",
2022-12-06 11:57:59 +03:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
2022-12-06 12:32:50 +03:00
[anon_sym_style] = "attr_key",
2022-12-04 23:45:53 +03:00
[anon_sym_shape] = "shape",
[anon_sym_label] = "label",
[anon_sym_constraint] = "constraint",
[anon_sym_icon] = "icon",
[anon_sym_width] = "width",
[anon_sym_height] = "height",
[anon_sym_opacity] = "opacity",
[anon_sym_fill] = "fill",
[anon_sym_stroke] = "stroke",
[anon_sym_stroke_DASHwidth] = "stroke-width",
[anon_sym_stroke_DASHdash] = "stroke-dash",
[anon_sym_border_DASHradius] = "border-radius",
[anon_sym_font_DASHcolor] = "font-color",
[anon_sym_shadow] = "shadow",
[anon_sym_multiple] = "multiple",
[anon_sym_animated] = "animated",
[anon_sym_3d] = "3d",
[anon_sym_link] = "link",
[sym__text_attr_key] = "_text_attr_key",
2022-12-05 10:37:04 +03:00
[anon_sym_source_DASHarrowhead] = "source-arrowhead",
[anon_sym_target_DASHarrowhead] = "target-arrowhead",
2022-12-05 00:26:24 +03:00
[anon_sym_COLON] = ":",
2022-12-04 00:07:26 +03:00
[anon_sym_DASH_DASH] = "--",
[anon_sym_LT_DASH] = "<-",
[anon_sym_GT] = ">",
[anon_sym_DASH_GT] = "->",
2022-12-06 00:53:06 +03:00
[sym__dash] = "_dash",
[sym_dot] = "dot",
2022-12-04 03:36:46 +03:00
[sym__unquoted_string] = "_unquoted_string",
2022-12-04 00:07:26 +03:00
[anon_sym_SQUOTE] = "'",
[aux_sym_string_token1] = "string_token1",
[anon_sym_DQUOTE] = "\"",
2022-12-05 00:26:24 +03:00
[aux_sym_string_token2] = "string_token2",
2022-12-04 00:07:26 +03:00
[anon_sym_BQUOTE] = "`",
2022-12-05 00:26:24 +03:00
[aux_sym_string_token3] = "string_token3",
2022-12-07 12:09:27 +03:00
[sym_line_comment] = "line_comment",
2022-12-04 23:45:53 +03:00
[anon_sym_LF] = "\n",
[anon_sym_2] = "",
2022-12-06 00:34:41 +03:00
[anon_sym_SEMI] = ";",
2022-12-04 00:07:26 +03:00
[sym_source_file] = "source_file",
[sym__definition] = "_definition",
[sym_connection] = "connection",
[sym_shape] = "shape",
2022-12-05 10:09:14 +03:00
[sym_label] = "label",
2022-12-04 23:45:53 +03:00
[sym_attr_value] = "attr_value",
[sym__root_attribute] = "_root_attribute",
2022-12-06 12:32:50 +03:00
[sym__shape_block] = "block",
[sym__shape_block_definition] = "_shape_block_definition",
2022-12-04 23:45:53 +03:00
[sym__shape_attribute] = "_shape_attribute",
2022-12-06 11:57:59 +03:00
[sym__style_attribute] = "_style_attribute",
[sym__style_attr_block] = "block",
[sym__inner_style_attribute] = "_inner_style_attribute",
2022-12-05 10:37:04 +03:00
[sym__connection_attribute] = "_connection_attribute",
2022-12-04 23:45:53 +03:00
[sym__shape_attr_key] = "attr_key",
[sym__style_attr_key] = "attr_key",
2022-12-05 10:37:04 +03:00
[sym__connection_attr_key] = "attr_key",
2022-12-04 18:35:37 +03:00
[sym__identifier] = "_identifier",
[sym_identifier] = "identifier",
2022-12-05 00:26:24 +03:00
[sym__colon] = "_colon",
[sym__arrow] = "_arrow",
2022-12-04 00:07:26 +03:00
[sym_arrow] = "arrow",
[sym_string] = "string",
2022-12-06 12:40:18 +03:00
[sym__emptyline] = "_emptyline",
2022-12-06 00:34:41 +03:00
[sym__eof] = "_eof",
2022-12-04 23:45:53 +03:00
[sym__end] = "_end",
2022-12-04 00:07:26 +03:00
[aux_sym_source_file_repeat1] = "source_file_repeat1",
2022-12-04 03:21:42 +03:00
[aux_sym_connection_repeat1] = "connection_repeat1",
2022-12-04 03:36:46 +03:00
[aux_sym_shape_repeat1] = "shape_repeat1",
2022-12-06 12:40:18 +03:00
[aux_sym_attr_value_repeat1] = "attr_value_repeat1",
2022-12-06 12:32:50 +03:00
[aux_sym__shape_block_repeat1] = "_shape_block_repeat1",
2022-12-06 11:57:59 +03:00
[aux_sym__style_attr_block_repeat1] = "_style_attr_block_repeat1",
[aux_sym_identifier_repeat1] = "identifier_repeat1",
2022-12-04 00:07:26 +03:00
[aux_sym_arrow_repeat1] = "arrow_repeat1",
[aux_sym_string_repeat1] = "string_repeat1",
2022-12-05 00:26:24 +03:00
[aux_sym_string_repeat2] = "string_repeat2",
[aux_sym_string_repeat3] = "string_repeat3",
2022-12-07 18:52:19 +03:00
[alias_sym_invalid] = "invalid",
2022-12-04 00:07:26 +03:00
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
2022-12-04 18:35:50 +03:00
[sym__word] = sym__word,
2022-12-06 11:57:59 +03:00
[anon_sym_] = anon_sym_,
2022-12-07 18:52:19 +03:00
[anon_sym_TAB] = anon_sym_TAB,
2022-12-04 23:45:53 +03:00
[sym__root_attr_key] = sym__root_attr_key,
2022-12-06 11:57:59 +03:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
2022-12-06 12:32:50 +03:00
[anon_sym_style] = sym__root_attr_key,
2022-12-04 23:45:53 +03:00
[anon_sym_shape] = anon_sym_shape,
[anon_sym_label] = anon_sym_label,
[anon_sym_constraint] = anon_sym_constraint,
[anon_sym_icon] = anon_sym_icon,
[anon_sym_width] = anon_sym_width,
[anon_sym_height] = anon_sym_height,
[anon_sym_opacity] = anon_sym_opacity,
[anon_sym_fill] = anon_sym_fill,
[anon_sym_stroke] = anon_sym_stroke,
[anon_sym_stroke_DASHwidth] = anon_sym_stroke_DASHwidth,
[anon_sym_stroke_DASHdash] = anon_sym_stroke_DASHdash,
[anon_sym_border_DASHradius] = anon_sym_border_DASHradius,
[anon_sym_font_DASHcolor] = anon_sym_font_DASHcolor,
[anon_sym_shadow] = anon_sym_shadow,
[anon_sym_multiple] = anon_sym_multiple,
[anon_sym_animated] = anon_sym_animated,
[anon_sym_3d] = anon_sym_3d,
[anon_sym_link] = anon_sym_link,
[sym__text_attr_key] = sym__text_attr_key,
2022-12-05 10:37:04 +03:00
[anon_sym_source_DASHarrowhead] = anon_sym_source_DASHarrowhead,
[anon_sym_target_DASHarrowhead] = anon_sym_target_DASHarrowhead,
2022-12-05 00:26:24 +03:00
[anon_sym_COLON] = anon_sym_COLON,
2022-12-04 00:07:26 +03:00
[anon_sym_DASH_DASH] = anon_sym_DASH_DASH,
[anon_sym_LT_DASH] = anon_sym_LT_DASH,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
2022-12-06 00:53:06 +03:00
[sym__dash] = sym__dash,
[sym_dot] = sym_dot,
2022-12-04 03:36:46 +03:00
[sym__unquoted_string] = sym__unquoted_string,
2022-12-04 00:07:26 +03:00
[anon_sym_SQUOTE] = anon_sym_SQUOTE,
[aux_sym_string_token1] = aux_sym_string_token1,
[anon_sym_DQUOTE] = anon_sym_DQUOTE,
2022-12-05 00:26:24 +03:00
[aux_sym_string_token2] = aux_sym_string_token2,
2022-12-04 00:07:26 +03:00
[anon_sym_BQUOTE] = anon_sym_BQUOTE,
2022-12-05 00:26:24 +03:00
[aux_sym_string_token3] = aux_sym_string_token3,
2022-12-07 12:09:27 +03:00
[sym_line_comment] = sym_line_comment,
2022-12-04 23:45:53 +03:00
[anon_sym_LF] = anon_sym_LF,
[anon_sym_2] = anon_sym_2,
2022-12-06 00:34:41 +03:00
[anon_sym_SEMI] = anon_sym_SEMI,
2022-12-04 00:07:26 +03:00
[sym_source_file] = sym_source_file,
[sym__definition] = sym__definition,
[sym_connection] = sym_connection,
[sym_shape] = sym_shape,
2022-12-05 10:09:14 +03:00
[sym_label] = sym_label,
2022-12-04 23:45:53 +03:00
[sym_attr_value] = sym_attr_value,
[sym__root_attribute] = sym__root_attribute,
2022-12-06 12:32:50 +03:00
[sym__shape_block] = sym__shape_block,
[sym__shape_block_definition] = sym__shape_block_definition,
2022-12-04 23:45:53 +03:00
[sym__shape_attribute] = sym__shape_attribute,
2022-12-06 11:57:59 +03:00
[sym__style_attribute] = sym__style_attribute,
2022-12-06 12:32:50 +03:00
[sym__style_attr_block] = sym__shape_block,
2022-12-06 11:57:59 +03:00
[sym__inner_style_attribute] = sym__inner_style_attribute,
2022-12-05 10:37:04 +03:00
[sym__connection_attribute] = sym__connection_attribute,
2022-12-04 23:45:53 +03:00
[sym__shape_attr_key] = sym__root_attr_key,
[sym__style_attr_key] = sym__root_attr_key,
2022-12-05 10:37:04 +03:00
[sym__connection_attr_key] = sym__root_attr_key,
2022-12-04 18:35:37 +03:00
[sym__identifier] = sym__identifier,
[sym_identifier] = sym_identifier,
2022-12-05 00:26:24 +03:00
[sym__colon] = sym__colon,
[sym__arrow] = sym__arrow,
2022-12-04 00:07:26 +03:00
[sym_arrow] = sym_arrow,
[sym_string] = sym_string,
2022-12-06 12:40:18 +03:00
[sym__emptyline] = sym__emptyline,
2022-12-06 00:34:41 +03:00
[sym__eof] = sym__eof,
2022-12-04 23:45:53 +03:00
[sym__end] = sym__end,
2022-12-04 00:07:26 +03:00
[aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1,
2022-12-04 03:21:42 +03:00
[aux_sym_connection_repeat1] = aux_sym_connection_repeat1,
2022-12-04 03:36:46 +03:00
[aux_sym_shape_repeat1] = aux_sym_shape_repeat1,
2022-12-06 12:40:18 +03:00
[aux_sym_attr_value_repeat1] = aux_sym_attr_value_repeat1,
2022-12-06 12:32:50 +03:00
[aux_sym__shape_block_repeat1] = aux_sym__shape_block_repeat1,
2022-12-06 11:57:59 +03:00
[aux_sym__style_attr_block_repeat1] = aux_sym__style_attr_block_repeat1,
[aux_sym_identifier_repeat1] = aux_sym_identifier_repeat1,
2022-12-04 00:07:26 +03:00
[aux_sym_arrow_repeat1] = aux_sym_arrow_repeat1,
[aux_sym_string_repeat1] = aux_sym_string_repeat1,
2022-12-05 00:26:24 +03:00
[aux_sym_string_repeat2] = aux_sym_string_repeat2,
[aux_sym_string_repeat3] = aux_sym_string_repeat3,
2022-12-07 18:52:19 +03:00
[alias_sym_invalid] = alias_sym_invalid,
2022-12-04 00:07:26 +03:00
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
2022-12-04 18:35:50 +03:00
[sym__word] = {
.visible = false,
.named = true,
},
2022-12-06 11:57:59 +03:00
[anon_sym_] = {
.visible = true,
.named = false,
},
2022-12-07 18:52:19 +03:00
[anon_sym_TAB] = {
.visible = true,
.named = false,
},
2022-12-04 23:45:53 +03:00
[sym__root_attr_key] = {
.visible = true,
.named = true,
},
2022-12-06 11:57:59 +03:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
2022-12-06 12:32:50 +03:00
[anon_sym_style] = {
.visible = true,
.named = true,
},
2022-12-04 23:45:53 +03:00
[anon_sym_shape] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = false,
},
2022-12-04 23:45:53 +03:00
[anon_sym_label] = {
2022-12-04 18:35:50 +03:00
.visible = true,
.named = false,
},
2022-12-04 23:45:53 +03:00
[anon_sym_constraint] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = false,
},
2022-12-04 23:45:53 +03:00
[anon_sym_icon] = {
2022-12-04 03:36:46 +03:00
.visible = true,
2022-12-04 23:45:53 +03:00
.named = false,
2022-12-04 00:07:26 +03:00
},
2022-12-04 23:45:53 +03:00
[anon_sym_width] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = false,
},
2022-12-04 23:45:53 +03:00
[anon_sym_height] = {
.visible = true,
.named = false,
},
[anon_sym_opacity] = {
.visible = true,
.named = false,
},
[anon_sym_fill] = {
.visible = true,
.named = false,
},
[anon_sym_stroke] = {
.visible = true,
.named = false,
},
[anon_sym_stroke_DASHwidth] = {
.visible = true,
.named = false,
},
[anon_sym_stroke_DASHdash] = {
.visible = true,
.named = false,
},
[anon_sym_border_DASHradius] = {
.visible = true,
.named = false,
},
[anon_sym_font_DASHcolor] = {
.visible = true,
.named = false,
},
[anon_sym_shadow] = {
.visible = true,
.named = false,
},
[anon_sym_multiple] = {
.visible = true,
.named = false,
},
[anon_sym_animated] = {
.visible = true,
.named = false,
},
[anon_sym_3d] = {
.visible = true,
.named = false,
},
[anon_sym_link] = {
.visible = true,
.named = false,
},
[sym__text_attr_key] = {
.visible = false,
.named = true,
},
2022-12-05 10:37:04 +03:00
[anon_sym_source_DASHarrowhead] = {
.visible = true,
.named = false,
},
[anon_sym_target_DASHarrowhead] = {
.visible = true,
.named = false,
},
2022-12-05 00:26:24 +03:00
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
2022-12-04 18:35:37 +03:00
[anon_sym_DASH_DASH] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = false,
},
[anon_sym_LT_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
2022-12-06 00:53:06 +03:00
[sym__dash] = {
.visible = false,
.named = true,
},
[sym_dot] = {
.visible = true,
.named = true,
},
2022-12-04 03:36:46 +03:00
[sym__unquoted_string] = {
.visible = false,
.named = true,
},
2022-12-04 00:07:26 +03:00
[anon_sym_SQUOTE] = {
.visible = true,
.named = false,
},
[aux_sym_string_token1] = {
.visible = false,
.named = false,
},
[anon_sym_DQUOTE] = {
.visible = true,
.named = false,
},
2022-12-05 00:26:24 +03:00
[aux_sym_string_token2] = {
.visible = false,
.named = false,
},
2022-12-04 00:07:26 +03:00
[anon_sym_BQUOTE] = {
.visible = true,
.named = false,
},
2022-12-05 00:26:24 +03:00
[aux_sym_string_token3] = {
.visible = false,
.named = false,
},
2022-12-07 12:09:27 +03:00
[sym_line_comment] = {
.visible = true,
.named = true,
},
2022-12-06 00:34:41 +03:00
[anon_sym_LF] = {
2022-12-04 23:45:53 +03:00
.visible = true,
.named = false,
},
2022-12-06 00:34:41 +03:00
[anon_sym_2] = {
2022-12-04 23:45:53 +03:00
.visible = true,
.named = false,
},
2022-12-06 00:34:41 +03:00
[anon_sym_SEMI] = {
2022-12-04 23:45:53 +03:00
.visible = true,
.named = false,
},
2022-12-04 00:07:26 +03:00
[sym_source_file] = {
.visible = true,
.named = true,
},
[sym__definition] = {
.visible = false,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym_connection] = {
.visible = true,
2022-12-04 00:07:26 +03:00
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym_shape] = {
2022-12-04 18:35:50 +03:00
.visible = true,
.named = true,
},
2022-12-05 10:09:14 +03:00
[sym_label] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym_attr_value] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym__root_attribute] = {
.visible = false,
.named = true,
},
2022-12-06 12:32:50 +03:00
[sym__shape_block] = {
.visible = true,
.named = true,
},
[sym__shape_block_definition] = {
.visible = false,
.named = true,
},
2022-12-06 11:57:59 +03:00
[sym__shape_attribute] = {
.visible = false,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym__style_attribute] = {
.visible = false,
.named = true,
},
2022-12-06 11:57:59 +03:00
[sym__style_attr_block] = {
.visible = true,
.named = true,
},
[sym__inner_style_attribute] = {
2022-12-04 23:45:53 +03:00
.visible = false,
.named = true,
},
2022-12-05 10:37:04 +03:00
[sym__connection_attribute] = {
.visible = false,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym__shape_attr_key] = {
2022-12-04 00:07:26 +03:00
.visible = true,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym__style_attr_key] = {
2022-12-04 18:35:50 +03:00
.visible = true,
.named = true,
},
2022-12-05 10:37:04 +03:00
[sym__connection_attr_key] = {
.visible = true,
.named = true,
},
2022-12-04 18:35:37 +03:00
[sym__identifier] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
2022-12-05 00:26:24 +03:00
[sym__colon] = {
.visible = false,
.named = true,
},
[sym__arrow] = {
.visible = false,
.named = true,
},
2022-12-04 00:07:26 +03:00
[sym_arrow] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
2022-12-06 12:40:18 +03:00
[sym__emptyline] = {
.visible = false,
.named = true,
},
2022-12-06 00:34:41 +03:00
[sym__eof] = {
.visible = false,
.named = true,
},
2022-12-04 23:45:53 +03:00
[sym__end] = {
2022-12-04 00:07:26 +03:00
.visible = false,
2022-12-04 23:45:53 +03:00
.named = true,
2022-12-04 00:07:26 +03:00
},
2022-12-04 23:45:53 +03:00
[aux_sym_source_file_repeat1] = {
2022-12-04 18:35:50 +03:00
.visible = false,
.named = false,
},
2022-12-06 12:40:18 +03:00
[aux_sym_connection_repeat1] = {
2022-12-06 12:32:50 +03:00
.visible = false,
.named = false,
},
2022-12-06 12:40:18 +03:00
[aux_sym_shape_repeat1] = {
2022-12-04 03:21:42 +03:00
.visible = false,
.named = false,
},
2022-12-06 12:40:18 +03:00
[aux_sym_attr_value_repeat1] = {
2022-12-04 03:36:46 +03:00
.visible = false,
.named = false,
},
2022-12-06 12:32:50 +03:00
[aux_sym__shape_block_repeat1] = {
2022-12-06 11:57:59 +03:00
.visible = false,
.named = false,
},
[aux_sym__style_attr_block_repeat1] = {
2022-12-04 18:35:37 +03:00
.visible = false,
.named = false,
},
[aux_sym_identifier_repeat1] = {
2022-12-04 18:35:37 +03:00
.visible = false,
.named = false,
},
2022-12-04 00:07:26 +03:00
[aux_sym_arrow_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_string_repeat1] = {
.visible = false,
.named = false,
},
2022-12-05 00:26:24 +03:00
[aux_sym_string_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_string_repeat3] = {
.visible = false,
.named = false,
},
2022-12-07 18:52:19 +03:00
[alias_sym_invalid] = {
.visible = true,
.named = true,
},
2022-12-04 00:07:26 +03:00
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
2022-12-07 18:52:19 +03:00
[1] = {
[0] = alias_sym_invalid,
[1] = alias_sym_invalid,
},
2022-12-04 00:07:26 +03:00
};
static const uint16_t ts_non_terminal_alias_map[] = {
2022-12-07 18:52:19 +03:00
sym__shape_attribute, 2,
sym__shape_attribute,
alias_sym_invalid,
sym__end, 2,
sym__end,
alias_sym_invalid,
2022-12-04 00:07:26 +03:00
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
[5] = 5,
[6] = 6,
[7] = 7,
[8] = 8,
[9] = 9,
[10] = 10,
2022-12-04 03:21:42 +03:00
[11] = 11,
2022-12-04 00:07:26 +03:00
[12] = 12,
[13] = 13,
2022-12-04 03:25:38 +03:00
[14] = 14,
2022-12-04 00:07:26 +03:00
[15] = 15,
2022-12-04 03:25:38 +03:00
[16] = 16,
2022-12-04 00:07:26 +03:00
[17] = 17,
[18] = 18,
[19] = 19,
[20] = 20,
2022-12-04 03:21:42 +03:00
[21] = 21,
2022-12-04 03:36:46 +03:00
[22] = 22,
2022-12-04 00:07:26 +03:00
[23] = 23,
2022-12-04 03:25:38 +03:00
[24] = 24,
2022-12-04 03:36:46 +03:00
[25] = 25,
2022-12-04 18:35:37 +03:00
[26] = 26,
2022-12-06 11:57:59 +03:00
[27] = 27,
[28] = 28,
[29] = 29,
2022-12-07 18:52:19 +03:00
[30] = 30,
2022-12-06 12:40:18 +03:00
[31] = 31,
2022-12-06 11:57:59 +03:00
[32] = 32,
2022-12-06 00:34:41 +03:00
[33] = 33,
2022-12-07 18:52:19 +03:00
[34] = 11,
2022-12-06 00:53:06 +03:00
[35] = 35,
[36] = 36,
2022-12-06 12:40:18 +03:00
[37] = 37,
2022-12-06 11:57:59 +03:00
[38] = 38,
2022-12-06 00:53:06 +03:00
[39] = 39,
2022-12-06 11:57:59 +03:00
[40] = 40,
[41] = 41,
[42] = 42,
2022-12-07 18:52:19 +03:00
[43] = 43,
[44] = 44,
2022-12-06 00:53:06 +03:00
[45] = 45,
[46] = 46,
2022-12-07 18:52:19 +03:00
[47] = 38,
2022-12-06 12:32:50 +03:00
[48] = 48,
2022-12-07 18:52:19 +03:00
[49] = 45,
2022-12-06 12:40:18 +03:00
[50] = 50,
2022-12-06 12:32:50 +03:00
[51] = 51,
[52] = 52,
2022-12-06 11:57:59 +03:00
[53] = 53,
2022-12-07 18:52:19 +03:00
[54] = 54,
[55] = 55,
[56] = 41,
2022-12-06 12:32:50 +03:00
[57] = 57,
2022-12-06 11:57:59 +03:00
[58] = 58,
2022-12-06 12:32:50 +03:00
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
[64] = 64,
2022-12-04 18:35:37 +03:00
[65] = 65,
2022-12-05 10:37:04 +03:00
[66] = 66,
[67] = 67,
2022-12-04 18:35:50 +03:00
[68] = 68,
2022-12-05 10:37:04 +03:00
[69] = 69,
2022-12-06 12:32:50 +03:00
[70] = 70,
2022-12-04 18:35:37 +03:00
[71] = 71,
[72] = 72,
2022-12-04 18:35:37 +03:00
[73] = 73,
2022-12-06 00:53:06 +03:00
[74] = 74,
2022-12-06 12:40:18 +03:00
[75] = 75,
2022-12-07 18:52:19 +03:00
[76] = 76,
[77] = 77,
2022-12-04 18:35:37 +03:00
[78] = 78,
2022-12-07 18:52:19 +03:00
[79] = 79,
2022-12-04 18:35:37 +03:00
[80] = 80,
2022-12-06 12:40:18 +03:00
[81] = 81,
2022-12-07 18:52:19 +03:00
[82] = 65,
[83] = 68,
[84] = 72,
[85] = 64,
[86] = 66,
[87] = 74,
2022-12-06 12:40:18 +03:00
[88] = 88,
2022-12-07 18:52:19 +03:00
[89] = 89,
[90] = 75,
2022-12-06 00:34:41 +03:00
[91] = 91,
2022-12-04 18:35:37 +03:00
[92] = 92,
2022-12-06 12:32:50 +03:00
[93] = 93,
2022-12-05 00:26:24 +03:00
[94] = 94,
2022-12-04 18:35:37 +03:00
[95] = 95,
2022-12-06 12:32:50 +03:00
[96] = 96,
[97] = 97,
2022-12-04 18:35:50 +03:00
[98] = 98,
2022-12-07 18:52:19 +03:00
[99] = 99,
2022-12-04 18:35:50 +03:00
[100] = 100,
2022-12-04 18:35:37 +03:00
[101] = 101,
2022-12-07 18:52:19 +03:00
[102] = 102,
2022-12-06 11:57:59 +03:00
[103] = 103,
[104] = 104,
2022-12-05 00:26:24 +03:00
[105] = 105,
2022-12-06 00:53:06 +03:00
[106] = 106,
2022-12-04 18:35:50 +03:00
[107] = 107,
[108] = 108,
2022-12-07 18:52:19 +03:00
[109] = 76,
[110] = 73,
[111] = 111,
2022-12-04 18:35:50 +03:00
[112] = 112,
[113] = 113,
2022-12-06 12:32:50 +03:00
[114] = 114,
[115] = 115,
2022-12-06 11:57:59 +03:00
[116] = 116,
[117] = 117,
[118] = 118,
[119] = 119,
[120] = 120,
[121] = 121,
[122] = 122,
[123] = 123,
[124] = 124,
[125] = 125,
[126] = 126,
2022-12-06 12:32:50 +03:00
[127] = 127,
2022-12-06 11:57:59 +03:00
[128] = 128,
2022-12-06 12:40:18 +03:00
[129] = 129,
2022-12-06 11:57:59 +03:00
[130] = 130,
[131] = 131,
[132] = 132,
2022-12-07 18:52:19 +03:00
[133] = 133,
[134] = 11,
2022-12-06 11:57:59 +03:00
[135] = 135,
2022-12-06 12:40:18 +03:00
[136] = 136,
2022-12-07 18:52:19 +03:00
[137] = 137,
[138] = 136,
[139] = 135,
[140] = 140,
2022-12-06 11:57:59 +03:00
[141] = 141,
[142] = 142,
[143] = 143,
2022-12-07 18:52:19 +03:00
[144] = 144,
2022-12-06 12:40:18 +03:00
[145] = 145,
2022-12-06 11:57:59 +03:00
[146] = 146,
[147] = 147,
[148] = 148,
2022-12-06 12:32:50 +03:00
[149] = 149,
2022-12-06 11:57:59 +03:00
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 153,
2022-12-06 12:32:50 +03:00
[154] = 154,
2022-12-06 11:57:59 +03:00
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
2022-12-07 18:52:19 +03:00
[159] = 89,
2022-12-06 11:57:59 +03:00
[160] = 160,
2022-12-06 12:40:18 +03:00
[161] = 161,
2022-12-06 11:57:59 +03:00
[162] = 162,
[163] = 163,
2022-12-06 12:32:50 +03:00
[164] = 164,
2022-12-06 11:57:59 +03:00
[165] = 165,
[166] = 166,
2022-12-06 12:40:18 +03:00
[167] = 167,
2022-12-06 12:32:50 +03:00
[168] = 168,
2022-12-07 18:52:19 +03:00
[169] = 163,
2022-12-06 12:32:50 +03:00
[170] = 170,
2022-12-07 18:52:19 +03:00
[171] = 171,
2022-12-06 12:32:50 +03:00
[172] = 172,
[173] = 173,
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 178,
2022-12-07 18:52:19 +03:00
[179] = 179,
2022-12-06 12:32:50 +03:00
[180] = 180,
[181] = 181,
2022-12-07 18:52:19 +03:00
[182] = 182,
2022-12-06 12:32:50 +03:00
[183] = 183,
[184] = 184,
[185] = 185,
[186] = 186,
[187] = 187,
[188] = 188,
2022-12-07 18:52:19 +03:00
[189] = 181,
2022-12-06 12:32:50 +03:00
[190] = 190,
[191] = 191,
2022-12-07 18:52:19 +03:00
[192] = 89,
2022-12-06 12:32:50 +03:00
[193] = 193,
[194] = 194,
[195] = 195,
2022-12-06 12:40:18 +03:00
[196] = 196,
2022-12-07 18:52:19 +03:00
[197] = 188,
2022-12-06 12:40:18 +03:00
[198] = 198,
2022-12-06 12:32:50 +03:00
[199] = 199,
[200] = 200,
[201] = 201,
[202] = 202,
2022-12-07 18:52:19 +03:00
[203] = 203,
[204] = 89,
2022-12-06 12:32:50 +03:00
[205] = 205,
2022-12-07 18:52:19 +03:00
[206] = 206,
2022-12-06 12:32:50 +03:00
[207] = 207,
[208] = 208,
2022-12-06 12:40:18 +03:00
[209] = 209,
2022-12-07 18:52:19 +03:00
[210] = 210,
2022-12-06 12:32:50 +03:00
[211] = 211,
2022-12-07 18:52:19 +03:00
[212] = 154,
2022-12-06 12:40:18 +03:00
[213] = 213,
2022-12-07 18:52:19 +03:00
[214] = 213,
2022-12-06 12:32:50 +03:00
[215] = 215,
2022-12-06 12:40:18 +03:00
[216] = 216,
2022-12-07 18:52:19 +03:00
[217] = 216,
2022-12-04 00:07:26 +03:00
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2022-12-06 12:32:50 +03:00
if (eof) ADVANCE(105);
2022-12-07 18:52:19 +03:00
if (lookahead == 0) ADVANCE(193);
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(192);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(148);
if (lookahead == '#') ADVANCE(154);
if (lookahead == '\'') ADVANCE(145);
if (lookahead == '-') ADVANCE(140);
if (lookahead == '.') ADVANCE(142);
if (lookahead == '3') ADVANCE(159);
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(195);
2022-12-07 12:09:27 +03:00
if (lookahead == '<') ADVANCE(10);
2022-12-07 18:52:19 +03:00
if (lookahead == '>') ADVANCE(137);
if (lookahead == '`') ADVANCE(151);
if (lookahead == 'a') ADVANCE(179);
if (lookahead == 'f') ADVANCE(166);
if (lookahead == 'l') ADVANCE(168);
if (lookahead == 'm') ADVANCE(188);
if (lookahead == 'o') ADVANCE(182);
if (lookahead == 's') ADVANCE(165);
if (lookahead == '{') ADVANCE(110);
if (lookahead == '}') ADVANCE(111);
2022-12-04 18:35:37 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
2022-12-07 18:52:19 +03:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 00:07:26 +03:00
END_STATE();
case 1:
2022-12-07 18:52:19 +03:00
if (lookahead == 0) ADVANCE(193);
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(192);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(154);
if (lookahead == '-') ADVANCE(140);
if (lookahead == '.') ADVANCE(142);
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(195);
2022-12-07 12:09:27 +03:00
if (lookahead == '<') ADVANCE(10);
2022-12-07 18:52:19 +03:00
if (lookahead == '{') ADVANCE(110);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 00:07:26 +03:00
END_STATE();
case 2:
2022-12-07 18:52:19 +03:00
if (lookahead == 0) ADVANCE(193);
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(192);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(154);
if (lookahead == '-') ADVANCE(140);
2022-12-06 12:32:50 +03:00
if (lookahead == '3') ADVANCE(28);
2022-12-07 18:52:19 +03:00
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(195);
2022-12-07 12:09:27 +03:00
if (lookahead == '<') ADVANCE(10);
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(68);
if (lookahead == 'b') ADVANCE(69);
if (lookahead == 'f') ADVANCE(51);
if (lookahead == 'l') ADVANCE(54);
if (lookahead == 'm') ADVANCE(97);
if (lookahead == 'o') ADVANCE(76);
if (lookahead == 's') ADVANCE(48);
if (lookahead == 't') ADVANCE(18);
2022-12-07 18:52:19 +03:00
if (lookahead == '{') ADVANCE(110);
if (lookahead == '}') ADVANCE(111);
2022-12-04 00:07:26 +03:00
END_STATE();
case 3:
2022-12-07 18:52:19 +03:00
if (lookahead == 0) ADVANCE(194);
if (lookahead == '\t') ADVANCE(109);
if (lookahead == '\n') ADVANCE(192);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(107);
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(148);
if (lookahead == '#') ADVANCE(143);
if (lookahead == '\'') ADVANCE(145);
if (lookahead == ';') ADVANCE(195);
if (lookahead == '`') ADVANCE(151);
if (lookahead == '{') ADVANCE(110);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
2022-12-04 00:07:26 +03:00
END_STATE();
case 4:
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(109);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(107);
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(148);
if (lookahead == '#') ADVANCE(143);
if (lookahead == '\'') ADVANCE(145);
if (lookahead == '`') ADVANCE(151);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
2022-12-06 11:57:59 +03:00
lookahead != '\n' &&
lookahead != ';' &&
lookahead != '{' &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
2022-12-04 00:07:26 +03:00
END_STATE();
case 5:
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(148);
if (lookahead == '#') ADVANCE(143);
if (lookahead == '\'') ADVANCE(145);
if (lookahead == '`') ADVANCE(151);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
2022-12-06 12:32:50 +03:00
lookahead != '\n' &&
lookahead != ';' &&
lookahead != '{' &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
2022-12-04 00:07:26 +03:00
END_STATE();
case 6:
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(148);
if (lookahead == '#') ADVANCE(149);
2022-12-06 11:57:59 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(150);
2022-12-04 00:07:26 +03:00
END_STATE();
case 7:
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(154);
if (lookahead == '-') ADVANCE(141);
2022-12-04 00:07:26 +03:00
END_STATE();
case 8:
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(146);
if (lookahead == '\'') ADVANCE(145);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(147);
2022-12-04 00:07:26 +03:00
END_STATE();
case 9:
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(152);
if (lookahead == '`') ADVANCE(151);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(153);
2022-12-04 00:07:26 +03:00
END_STATE();
case 10:
2022-12-07 18:52:19 +03:00
if (lookahead == '-') ADVANCE(136);
2022-12-04 00:07:26 +03:00
END_STATE();
case 11:
2022-12-07 12:09:27 +03:00
if (lookahead == '-') ADVANCE(26);
2022-12-04 00:07:26 +03:00
END_STATE();
case 12:
2022-12-07 12:09:27 +03:00
if (lookahead == '-') ADVANCE(85);
2022-12-04 00:07:26 +03:00
END_STATE();
case 13:
2022-12-07 12:09:27 +03:00
if (lookahead == '-') ADVANCE(22);
2022-12-04 00:07:26 +03:00
END_STATE();
case 14:
2022-12-07 12:09:27 +03:00
if (lookahead == '-') ADVANCE(24);
2022-12-04 00:07:26 +03:00
END_STATE();
case 15:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(27);
2022-12-04 00:07:26 +03:00
END_STATE();
case 16:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(89);
2022-12-04 00:07:26 +03:00
END_STATE();
case 17:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(33);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-05 10:33:49 +03:00
case 18:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(78);
2022-12-05 10:33:49 +03:00
END_STATE();
case 19:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(95);
2022-12-04 00:07:26 +03:00
END_STATE();
case 20:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(35);
2022-12-04 00:07:26 +03:00
END_STATE();
case 21:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(31);
2022-12-04 18:35:37 +03:00
END_STATE();
case 22:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(86);
2022-12-05 10:33:49 +03:00
END_STATE();
case 23:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(32);
2022-12-04 18:35:37 +03:00
END_STATE();
case 24:
2022-12-06 12:32:50 +03:00
if (lookahead == 'a') ADVANCE(88);
2022-12-04 18:35:37 +03:00
END_STATE();
case 25:
2022-12-06 12:32:50 +03:00
if (lookahead == 'c') ADVANCE(39);
2022-12-04 18:35:37 +03:00
END_STATE();
case 26:
2022-12-06 12:32:50 +03:00
if (lookahead == 'c') ADVANCE(73);
2022-12-04 18:35:37 +03:00
END_STATE();
case 27:
2022-12-06 12:32:50 +03:00
if (lookahead == 'c') ADVANCE(56);
2022-12-04 18:35:37 +03:00
END_STATE();
case 28:
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(128);
2022-12-04 18:35:37 +03:00
END_STATE();
case 29:
2022-12-06 12:32:50 +03:00
if (lookahead == 'd') ADVANCE(41);
2022-12-04 18:35:37 +03:00
END_STATE();
case 30:
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(126);
2022-12-04 18:35:50 +03:00
END_STATE();
case 31:
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(132);
2022-12-04 18:35:37 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 32:
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(133);
2022-12-04 18:35:37 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 33:
2022-12-06 12:32:50 +03:00
if (lookahead == 'd') ADVANCE(70);
2022-12-04 18:35:37 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 34:
2022-12-06 12:32:50 +03:00
if (lookahead == 'd') ADVANCE(93);
2022-12-04 18:35:37 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 35:
2022-12-06 12:32:50 +03:00
if (lookahead == 'd') ADVANCE(55);
2022-12-04 18:35:37 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 36:
2022-12-06 12:32:50 +03:00
if (lookahead == 'd') ADVANCE(16);
if (lookahead == 'w') ADVANCE(57);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 37:
2022-12-07 18:52:19 +03:00
if (lookahead == 'e') ADVANCE(116);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 38:
2022-12-07 18:52:19 +03:00
if (lookahead == 'e') ADVANCE(124);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 39:
2022-12-07 12:09:27 +03:00
if (lookahead == 'e') ADVANCE(13);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 40:
2022-12-06 12:32:50 +03:00
if (lookahead == 'e') ADVANCE(30);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 41:
2022-12-06 12:32:50 +03:00
if (lookahead == 'e') ADVANCE(83);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 42:
2022-12-06 12:32:50 +03:00
if (lookahead == 'e') ADVANCE(21);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 43:
2022-12-06 12:32:50 +03:00
if (lookahead == 'e') ADVANCE(23);
2022-12-04 03:36:46 +03:00
END_STATE();
2022-12-04 18:35:37 +03:00
case 44:
2022-12-06 12:32:50 +03:00
if (lookahead == 'e') ADVANCE(96);
2022-12-04 18:35:50 +03:00
END_STATE();
case 45:
2022-12-06 12:32:50 +03:00
if (lookahead == 'g') ADVANCE(44);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 46:
2022-12-07 18:52:19 +03:00
if (lookahead == 'h') ADVANCE(119);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 47:
2022-12-07 18:52:19 +03:00
if (lookahead == 'h') ADVANCE(118);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 48:
2022-12-06 12:32:50 +03:00
if (lookahead == 'h') ADVANCE(17);
if (lookahead == 'o') ADVANCE(99);
if (lookahead == 't') ADVANCE(81);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 18:35:50 +03:00
case 49:
2022-12-06 11:57:59 +03:00
if (lookahead == 'h') ADVANCE(42);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 50:
2022-12-06 12:32:50 +03:00
if (lookahead == 'h') ADVANCE(43);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 51:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(62);
if (lookahead == 'o') ADVANCE(66);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 52:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(65);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 53:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(77);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 54:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(67);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 55:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(98);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 56:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(91);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 57:
2022-12-06 12:32:50 +03:00
if (lookahead == 'i') ADVANCE(34);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 58:
2022-12-07 18:52:19 +03:00
if (lookahead == 'k') ADVANCE(130);
2022-12-04 18:35:50 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 59:
2022-12-06 12:32:50 +03:00
if (lookahead == 'k') ADVANCE(37);
2022-12-04 00:07:26 +03:00
END_STATE();
2022-12-04 23:45:53 +03:00
case 60:
2022-12-07 18:52:19 +03:00
if (lookahead == 'l') ADVANCE(114);
2022-12-04 23:45:53 +03:00
END_STATE();
case 61:
2022-12-06 12:32:50 +03:00
if (lookahead == 'l') ADVANCE(94);
2022-12-04 23:45:53 +03:00
END_STATE();
case 62:
2022-12-06 12:32:50 +03:00
if (lookahead == 'l') ADVANCE(60);
2022-12-04 23:45:53 +03:00
END_STATE();
case 63:
2022-12-06 12:32:50 +03:00
if (lookahead == 'l') ADVANCE(38);
2022-12-04 23:45:53 +03:00
END_STATE();
case 64:
2022-12-06 12:32:50 +03:00
if (lookahead == 'l') ADVANCE(74);
2022-12-04 23:45:53 +03:00
END_STATE();
case 65:
2022-12-06 12:32:50 +03:00
if (lookahead == 'm') ADVANCE(19);
2022-12-04 23:45:53 +03:00
END_STATE();
case 66:
2022-12-06 12:32:50 +03:00
if (lookahead == 'n') ADVANCE(92);
2022-12-04 23:45:53 +03:00
END_STATE();
case 67:
2022-12-06 12:32:50 +03:00
if (lookahead == 'n') ADVANCE(58);
2022-12-04 23:45:53 +03:00
END_STATE();
case 68:
2022-12-06 12:32:50 +03:00
if (lookahead == 'n') ADVANCE(52);
2022-12-04 23:45:53 +03:00
END_STATE();
case 69:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(80);
2022-12-04 23:45:53 +03:00
END_STATE();
case 70:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(100);
2022-12-04 23:45:53 +03:00
END_STATE();
case 71:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(59);
2022-12-04 23:45:53 +03:00
END_STATE();
case 72:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(101);
2022-12-04 23:45:53 +03:00
END_STATE();
case 73:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(64);
2022-12-04 23:45:53 +03:00
END_STATE();
case 74:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(79);
2022-12-04 23:45:53 +03:00
END_STATE();
case 75:
2022-12-06 12:32:50 +03:00
if (lookahead == 'o') ADVANCE(102);
2022-12-04 23:45:53 +03:00
END_STATE();
case 76:
2022-12-06 12:32:50 +03:00
if (lookahead == 'p') ADVANCE(15);
2022-12-04 23:45:53 +03:00
END_STATE();
case 77:
2022-12-06 12:32:50 +03:00
if (lookahead == 'p') ADVANCE(63);
2022-12-04 23:45:53 +03:00
END_STATE();
case 78:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(45);
2022-12-04 23:45:53 +03:00
END_STATE();
case 79:
2022-12-07 18:52:19 +03:00
if (lookahead == 'r') ADVANCE(121);
2022-12-04 23:45:53 +03:00
END_STATE();
case 80:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(29);
2022-12-05 00:26:24 +03:00
END_STATE();
case 81:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(71);
2022-12-05 00:26:24 +03:00
END_STATE();
case 82:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(25);
2022-12-05 00:26:24 +03:00
END_STATE();
case 83:
2022-12-07 12:09:27 +03:00
if (lookahead == 'r') ADVANCE(12);
2022-12-05 00:26:24 +03:00
END_STATE();
case 84:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(72);
2022-12-05 00:26:24 +03:00
END_STATE();
case 85:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(20);
2022-12-05 10:37:04 +03:00
END_STATE();
case 86:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(84);
2022-12-05 10:37:04 +03:00
END_STATE();
case 87:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(75);
2022-12-05 10:37:04 +03:00
END_STATE();
case 88:
2022-12-06 12:32:50 +03:00
if (lookahead == 'r') ADVANCE(87);
2022-12-05 10:37:04 +03:00
END_STATE();
case 89:
2022-12-06 12:32:50 +03:00
if (lookahead == 's') ADVANCE(46);
2022-12-05 10:37:04 +03:00
END_STATE();
case 90:
2022-12-07 18:52:19 +03:00
if (lookahead == 's') ADVANCE(120);
2022-12-05 10:37:04 +03:00
END_STATE();
case 91:
2022-12-06 12:32:50 +03:00
if (lookahead == 't') ADVANCE(103);
2022-12-05 10:37:04 +03:00
END_STATE();
case 92:
2022-12-07 12:09:27 +03:00
if (lookahead == 't') ADVANCE(11);
2022-12-05 10:37:04 +03:00
END_STATE();
case 93:
2022-12-06 12:32:50 +03:00
if (lookahead == 't') ADVANCE(47);
2022-12-05 10:37:04 +03:00
END_STATE();
case 94:
2022-12-06 12:32:50 +03:00
if (lookahead == 't') ADVANCE(53);
2022-12-05 10:37:04 +03:00
END_STATE();
case 95:
2022-12-06 12:32:50 +03:00
if (lookahead == 't') ADVANCE(40);
2022-12-05 10:37:04 +03:00
END_STATE();
case 96:
2022-12-07 12:09:27 +03:00
if (lookahead == 't') ADVANCE(14);
2022-12-05 10:37:04 +03:00
END_STATE();
case 97:
2022-12-06 12:32:50 +03:00
if (lookahead == 'u') ADVANCE(61);
2022-12-05 10:37:04 +03:00
END_STATE();
case 98:
2022-12-06 12:32:50 +03:00
if (lookahead == 'u') ADVANCE(90);
2022-12-05 10:37:04 +03:00
END_STATE();
case 99:
2022-12-06 12:32:50 +03:00
if (lookahead == 'u') ADVANCE(82);
2022-12-05 10:37:04 +03:00
END_STATE();
case 100:
2022-12-07 18:52:19 +03:00
if (lookahead == 'w') ADVANCE(122);
2022-12-05 10:37:04 +03:00
END_STATE();
case 101:
2022-12-06 11:57:59 +03:00
if (lookahead == 'w') ADVANCE(49);
2022-12-05 10:37:04 +03:00
END_STATE();
case 102:
2022-12-06 12:32:50 +03:00
if (lookahead == 'w') ADVANCE(50);
2022-12-06 11:57:59 +03:00
END_STATE();
case 103:
2022-12-07 18:52:19 +03:00
if (lookahead == 'y') ADVANCE(112);
2022-12-06 12:32:50 +03:00
END_STATE();
case 104:
if (eof) ADVANCE(105);
2022-12-07 18:52:19 +03:00
if (lookahead == 0) ADVANCE(193);
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(192);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
2022-12-07 18:52:19 +03:00
if (lookahead == '#') ADVANCE(154);
if (lookahead == '-') ADVANCE(139);
if (lookahead == '.') ADVANCE(142);
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(195);
if (lookahead == '>') ADVANCE(137);
if (lookahead == '{') ADVANCE(110);
if (lookahead == '}') ADVANCE(111);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-06 12:32:50 +03:00
case 105:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2022-12-06 12:32:50 +03:00
case 106:
2022-12-06 11:57:59 +03:00
ACCEPT_TOKEN(anon_sym_);
END_STATE();
2022-12-06 12:32:50 +03:00
case 107:
2022-12-06 11:57:59 +03:00
ACCEPT_TOKEN(anon_sym_);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
lookahead != '{' &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
2022-12-06 11:57:59 +03:00
END_STATE();
2022-12-06 12:32:50 +03:00
case 108:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_TAB);
2022-12-06 11:57:59 +03:00
END_STATE();
2022-12-06 12:32:50 +03:00
case 109:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_TAB);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}') ADVANCE(144);
2022-12-06 11:57:59 +03:00
END_STATE();
2022-12-06 12:32:50 +03:00
case 110:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_LBRACE);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-06 12:32:50 +03:00
case 111:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 112:
ACCEPT_TOKEN(anon_sym_opacity);
END_STATE();
case 113:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_opacity);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 114:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_fill);
END_STATE();
2022-12-07 18:52:19 +03:00
case 115:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_fill);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 116:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_stroke);
2022-12-06 12:32:50 +03:00
if (lookahead == '-') ADVANCE(36);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 117:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_stroke);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 118:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_stroke_DASHwidth);
END_STATE();
2022-12-07 18:52:19 +03:00
case 119:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_stroke_DASHdash);
END_STATE();
2022-12-07 18:52:19 +03:00
case 120:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_border_DASHradius);
END_STATE();
2022-12-07 18:52:19 +03:00
case 121:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_font_DASHcolor);
END_STATE();
2022-12-07 18:52:19 +03:00
case 122:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_shadow);
END_STATE();
2022-12-07 18:52:19 +03:00
case 123:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_shadow);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 124:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_multiple);
END_STATE();
2022-12-07 18:52:19 +03:00
case 125:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_multiple);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 126:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_animated);
END_STATE();
2022-12-07 18:52:19 +03:00
case 127:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_animated);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 128:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_3d);
END_STATE();
2022-12-07 18:52:19 +03:00
case 129:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_3d);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 130:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_link);
END_STATE();
2022-12-07 18:52:19 +03:00
case 131:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(anon_sym_link);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-05 10:37:04 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 132:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_source_DASHarrowhead);
2022-12-05 10:37:04 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 133:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_target_DASHarrowhead);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 134:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
2022-12-07 18:52:19 +03:00
case 135:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_DASH_DASH);
END_STATE();
2022-12-07 18:52:19 +03:00
case 136:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_LT_DASH);
END_STATE();
2022-12-07 18:52:19 +03:00
case 137:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
2022-12-07 18:52:19 +03:00
case 138:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
2022-12-07 18:52:19 +03:00
case 139:
ACCEPT_TOKEN(sym__dash);
END_STATE();
2022-12-07 18:52:19 +03:00
case 140:
ACCEPT_TOKEN(sym__dash);
2022-12-07 18:52:19 +03:00
if (lookahead == '-') ADVANCE(135);
if (lookahead == '>') ADVANCE(138);
END_STATE();
2022-12-07 18:52:19 +03:00
case 141:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(sym__dash);
2022-12-07 18:52:19 +03:00
if (lookahead == '>') ADVANCE(138);
END_STATE();
2022-12-07 18:52:19 +03:00
case 142:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(sym_dot);
END_STATE();
2022-12-07 18:52:19 +03:00
case 143:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__unquoted_string);
if (lookahead == '"' ||
lookahead == '\'' ||
lookahead == ';' ||
lookahead == '`' ||
lookahead == '{' ||
2022-12-07 18:52:19 +03:00
lookahead == '}') ADVANCE(154);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(143);
2022-12-07 12:09:27 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 144:
ACCEPT_TOKEN(sym__unquoted_string);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
2022-12-06 11:57:59 +03:00
lookahead != '{' &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
END_STATE();
2022-12-07 18:52:19 +03:00
case 145:
ACCEPT_TOKEN(anon_sym_SQUOTE);
END_STATE();
2022-12-07 18:52:19 +03:00
case 146:
ACCEPT_TOKEN(aux_sym_string_token1);
2022-12-07 18:52:19 +03:00
if (lookahead == '\'') ADVANCE(154);
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(146);
END_STATE();
2022-12-07 18:52:19 +03:00
case 147:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token1);
if (lookahead != 0 &&
lookahead != '\n' &&
2022-12-07 18:52:19 +03:00
lookahead != '\'') ADVANCE(147);
END_STATE();
2022-12-07 18:52:19 +03:00
case 148:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
2022-12-07 18:52:19 +03:00
case 149:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token2);
2022-12-07 18:52:19 +03:00
if (lookahead == '"') ADVANCE(154);
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(149);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 150:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token2);
if (lookahead != 0 &&
lookahead != '\n' &&
2022-12-07 18:52:19 +03:00
lookahead != '"') ADVANCE(150);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 151:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(anon_sym_BQUOTE);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 152:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token3);
2022-12-07 18:52:19 +03:00
if (lookahead == '`') ADVANCE(154);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(152);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 153:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token3);
if (lookahead != 0 &&
lookahead != '\n' &&
2022-12-07 18:52:19 +03:00
lookahead != '`') ADVANCE(153);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 154:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym_line_comment);
if (lookahead != 0 &&
2022-12-07 18:52:19 +03:00
lookahead != '\n') ADVANCE(154);
2022-12-04 23:45:53 +03:00
END_STATE();
case 155:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'a') ADVANCE(158);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('b' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 156:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'a') ADVANCE(161);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('b' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 157:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'a') ADVANCE(186);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('b' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 158:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'c') ADVANCE(170);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 159:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(129);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 160:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(127);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 161:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'd') ADVANCE(180);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 162:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'e') ADVANCE(117);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 163:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'e') ADVANCE(125);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 164:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'e') ADVANCE(160);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 165:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'h') ADVANCE(156);
if (lookahead == 't') ADVANCE(184);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 166:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'i') ADVANCE(175);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 167:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'i') ADVANCE(177);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 168:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'i') ADVANCE(178);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 169:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'i') ADVANCE(183);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 170:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'i') ADVANCE(185);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 171:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'k') ADVANCE(131);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 172:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'k') ADVANCE(162);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 173:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'l') ADVANCE(187);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 174:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'l') ADVANCE(115);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 175:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'l') ADVANCE(174);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 176:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'l') ADVANCE(163);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 177:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'm') ADVANCE(157);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 178:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'n') ADVANCE(171);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 179:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'n') ADVANCE(167);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
case 180:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'o') ADVANCE(189);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-05 11:36:14 +03:00
case 181:
2022-12-06 11:57:59 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'o') ADVANCE(172);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-05 11:36:14 +03:00
case 182:
2022-12-06 11:57:59 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'p') ADVANCE(155);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-04 23:45:53 +03:00
END_STATE();
2022-12-05 11:36:14 +03:00
case 183:
2022-12-06 11:57:59 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'p') ADVANCE(176);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-06 11:57:59 +03:00
END_STATE();
case 184:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'r') ADVANCE(181);
2022-12-06 12:32:50 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-06 11:57:59 +03:00
END_STATE();
case 185:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 't') ADVANCE(190);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-06 11:57:59 +03:00
END_STATE();
case 186:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 't') ADVANCE(164);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-06 12:32:50 +03:00
END_STATE();
case 187:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 't') ADVANCE(169);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-07 12:09:27 +03:00
END_STATE();
case 188:
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'u') ADVANCE(173);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-07 12:09:27 +03:00
END_STATE();
case 189:
ACCEPT_TOKEN(sym__word);
2022-12-07 18:52:19 +03:00
if (lookahead == 'w') ADVANCE(123);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2022-12-07 18:52:19 +03:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-07 12:09:27 +03:00
END_STATE();
case 190:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'y') ADVANCE(113);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-07 12:09:27 +03:00
END_STATE();
case 191:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(sym__word);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(191);
2022-12-07 12:09:27 +03:00
END_STATE();
case 192:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_LF);
END_STATE();
case 193:
ACCEPT_TOKEN(anon_sym_2);
END_STATE();
case 194:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_2);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
lookahead != '{' &&
2022-12-07 18:52:19 +03:00
lookahead != '}') ADVANCE(144);
2022-12-06 12:32:50 +03:00
END_STATE();
2022-12-07 18:52:19 +03:00
case 195:
ACCEPT_TOKEN(anon_sym_SEMI);
2022-12-04 23:45:53 +03:00
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'c') ADVANCE(1);
if (lookahead == 'd') ADVANCE(2);
if (lookahead == 'h') ADVANCE(3);
if (lookahead == 'i') ADVANCE(4);
if (lookahead == 'l') ADVANCE(5);
if (lookahead == 'n') ADVANCE(6);
if (lookahead == 's') ADVANCE(7);
if (lookahead == 'w') ADVANCE(8);
END_STATE();
case 1:
if (lookahead == 'o') ADVANCE(9);
END_STATE();
case 2:
if (lookahead == 'i') ADVANCE(10);
END_STATE();
case 3:
if (lookahead == 'e') ADVANCE(11);
END_STATE();
case 4:
if (lookahead == 'c') ADVANCE(12);
END_STATE();
case 5:
if (lookahead == 'a') ADVANCE(13);
END_STATE();
case 6:
if (lookahead == 'e') ADVANCE(14);
END_STATE();
case 7:
if (lookahead == 'h') ADVANCE(15);
if (lookahead == 't') ADVANCE(16);
END_STATE();
case 8:
if (lookahead == 'i') ADVANCE(17);
END_STATE();
case 9:
if (lookahead == 'n') ADVANCE(18);
END_STATE();
case 10:
if (lookahead == 'r') ADVANCE(19);
END_STATE();
case 11:
if (lookahead == 'i') ADVANCE(20);
END_STATE();
case 12:
if (lookahead == 'o') ADVANCE(21);
END_STATE();
case 13:
if (lookahead == 'b') ADVANCE(22);
END_STATE();
case 14:
if (lookahead == 'a') ADVANCE(23);
END_STATE();
case 15:
if (lookahead == 'a') ADVANCE(24);
END_STATE();
case 16:
if (lookahead == 'y') ADVANCE(25);
END_STATE();
case 17:
if (lookahead == 'd') ADVANCE(26);
END_STATE();
case 18:
if (lookahead == 's') ADVANCE(27);
END_STATE();
case 19:
if (lookahead == 'e') ADVANCE(28);
END_STATE();
case 20:
if (lookahead == 'g') ADVANCE(29);
END_STATE();
case 21:
if (lookahead == 'n') ADVANCE(30);
END_STATE();
case 22:
if (lookahead == 'e') ADVANCE(31);
END_STATE();
case 23:
if (lookahead == 'r') ADVANCE(32);
END_STATE();
case 24:
if (lookahead == 'p') ADVANCE(33);
END_STATE();
case 25:
if (lookahead == 'l') ADVANCE(34);
END_STATE();
case 26:
if (lookahead == 't') ADVANCE(35);
END_STATE();
case 27:
if (lookahead == 't') ADVANCE(36);
END_STATE();
case 28:
if (lookahead == 'c') ADVANCE(37);
END_STATE();
case 29:
if (lookahead == 'h') ADVANCE(38);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_icon);
END_STATE();
case 31:
if (lookahead == 'l') ADVANCE(39);
END_STATE();
case 32:
ACCEPT_TOKEN(sym__text_attr_key);
END_STATE();
case 33:
if (lookahead == 'e') ADVANCE(40);
END_STATE();
case 34:
if (lookahead == 'e') ADVANCE(41);
END_STATE();
case 35:
if (lookahead == 'h') ADVANCE(42);
END_STATE();
case 36:
if (lookahead == 'r') ADVANCE(43);
END_STATE();
case 37:
if (lookahead == 't') ADVANCE(44);
END_STATE();
case 38:
if (lookahead == 't') ADVANCE(45);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_label);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_shape);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_style);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_width);
END_STATE();
case 43:
if (lookahead == 'a') ADVANCE(46);
END_STATE();
case 44:
if (lookahead == 'i') ADVANCE(47);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_height);
END_STATE();
case 46:
if (lookahead == 'i') ADVANCE(48);
END_STATE();
case 47:
if (lookahead == 'o') ADVANCE(49);
END_STATE();
case 48:
if (lookahead == 'n') ADVANCE(50);
END_STATE();
case 49:
if (lookahead == 'n') ADVANCE(51);
END_STATE();
case 50:
if (lookahead == 't') ADVANCE(52);
END_STATE();
case 51:
ACCEPT_TOKEN(sym__root_attr_key);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_constraint);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[1] = {.lex_state = 104},
[2] = {.lex_state = 104},
[3] = {.lex_state = 104},
[4] = {.lex_state = 104},
[5] = {.lex_state = 104},
[6] = {.lex_state = 104},
[7] = {.lex_state = 104},
[8] = {.lex_state = 104},
[9] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[10] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[11] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[12] = {.lex_state = 104},
[13] = {.lex_state = 104},
2022-12-06 11:57:59 +03:00
[14] = {.lex_state = 2},
2022-12-06 12:32:50 +03:00
[15] = {.lex_state = 2},
2022-12-06 11:57:59 +03:00
[16] = {.lex_state = 2},
[17] = {.lex_state = 2},
[18] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[19] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[20] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[21] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[22] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[23] = {.lex_state = 2},
[24] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[25] = {.lex_state = 2},
[26] = {.lex_state = 2},
2022-12-06 11:57:59 +03:00
[27] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[28] = {.lex_state = 2},
[29] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[30] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[31] = {.lex_state = 2},
[32] = {.lex_state = 104},
[33] = {.lex_state = 2},
[34] = {.lex_state = 104},
[35] = {.lex_state = 2},
2022-12-06 12:32:50 +03:00
[36] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[37] = {.lex_state = 2},
2022-12-06 12:32:50 +03:00
[38] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[39] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[40] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[41] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[42] = {.lex_state = 104},
[43] = {.lex_state = 104},
[44] = {.lex_state = 2},
[45] = {.lex_state = 104},
[46] = {.lex_state = 2},
[47] = {.lex_state = 104},
[48] = {.lex_state = 104},
[49] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[50] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[51] = {.lex_state = 104},
[52] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[53] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[54] = {.lex_state = 3},
[55] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[56] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[57] = {.lex_state = 3},
[58] = {.lex_state = 104},
[59] = {.lex_state = 104},
[60] = {.lex_state = 104},
[61] = {.lex_state = 0},
[62] = {.lex_state = 104},
[63] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[64] = {.lex_state = 1},
[65] = {.lex_state = 1},
2022-12-07 18:52:19 +03:00
[66] = {.lex_state = 1},
[67] = {.lex_state = 0},
[68] = {.lex_state = 1},
[69] = {.lex_state = 104},
[70] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[71] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[72] = {.lex_state = 1},
[73] = {.lex_state = 1},
[74] = {.lex_state = 1},
[75] = {.lex_state = 1},
[76] = {.lex_state = 1},
[77] = {.lex_state = 0},
[78] = {.lex_state = 0},
[79] = {.lex_state = 0},
[80] = {.lex_state = 0},
[81] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[82] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[83] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[84] = {.lex_state = 104},
[85] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[86] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[87] = {.lex_state = 104},
[88] = {.lex_state = 0},
[89] = {.lex_state = 3},
[90] = {.lex_state = 104},
[91] = {.lex_state = 0},
[92] = {.lex_state = 104},
[93] = {.lex_state = 4},
[94] = {.lex_state = 4},
[95] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[96] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[97] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[98] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[99] = {.lex_state = 0},
[100] = {.lex_state = 4},
[101] = {.lex_state = 0},
[102] = {.lex_state = 4},
[103] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[104] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[105] = {.lex_state = 0},
[106] = {.lex_state = 4},
2022-12-06 12:32:50 +03:00
[107] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[108] = {.lex_state = 4},
[109] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[110] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[111] = {.lex_state = 0},
[112] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[113] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[114] = {.lex_state = 0},
[115] = {.lex_state = 4},
2022-12-06 12:40:18 +03:00
[116] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[117] = {.lex_state = 0},
[118] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[119] = {.lex_state = 0},
[120] = {.lex_state = 0},
[121] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[122] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[123] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[124] = {.lex_state = 104},
2022-12-06 11:57:59 +03:00
[125] = {.lex_state = 0},
[126] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[127] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[128] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[129] = {.lex_state = 0},
[130] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[131] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[132] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[133] = {.lex_state = 0},
[134] = {.lex_state = 4},
2022-12-06 12:40:18 +03:00
[135] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[136] = {.lex_state = 0},
[137] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[138] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[139] = {.lex_state = 104},
[140] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[141] = {.lex_state = 0},
[142] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[143] = {.lex_state = 5},
[144] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[145] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[146] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[147] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[148] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[149] = {.lex_state = 0},
[150] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[151] = {.lex_state = 0},
[152] = {.lex_state = 0},
[153] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[154] = {.lex_state = 104},
[155] = {.lex_state = 0},
[156] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[157] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[158] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[159] = {.lex_state = 4},
2022-12-06 11:57:59 +03:00
[160] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[161] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[162] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[163] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[164] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[165] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[166] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[167] = {.lex_state = 0},
[168] = {.lex_state = 0},
[169] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[170] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[171] = {.lex_state = 0},
[172] = {.lex_state = 0},
[173] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[174] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[175] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[176] = {.lex_state = 0},
[177] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[178] = {.lex_state = 0},
[179] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[180] = {.lex_state = 0},
[181] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[182] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[183] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[184] = {.lex_state = 2},
[185] = {.lex_state = 0},
[186] = {.lex_state = 104},
[187] = {.lex_state = 0},
[188] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[189] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[190] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[191] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[192] = {.lex_state = 5},
[193] = {.lex_state = 104},
[194] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[195] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[196] = {.lex_state = 0},
[197] = {.lex_state = 104},
[198] = {.lex_state = 8},
[199] = {.lex_state = 6},
[200] = {.lex_state = 7},
[201] = {.lex_state = 6},
[202] = {.lex_state = 9},
[203] = {.lex_state = 9},
[204] = {.lex_state = 0},
[205] = {.lex_state = 8},
2022-12-06 12:32:50 +03:00
[206] = {.lex_state = 0},
2022-12-07 12:09:27 +03:00
[207] = {.lex_state = 8},
2022-12-07 18:52:19 +03:00
[208] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[209] = {.lex_state = 6},
2022-12-07 18:52:19 +03:00
[210] = {.lex_state = 9},
[211] = {.lex_state = 0},
[212] = {.lex_state = 7},
[213] = {.lex_state = 104},
2022-12-06 12:32:50 +03:00
[214] = {.lex_state = 104},
[215] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[216] = {.lex_state = 104},
2022-12-06 12:40:18 +03:00
[217] = {.lex_state = 104},
2022-12-04 00:07:26 +03:00
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
2022-12-04 18:35:50 +03:00
[sym__word] = ACTIONS(1),
2022-12-06 11:57:59 +03:00
[anon_sym_] = ACTIONS(1),
2022-12-07 18:52:19 +03:00
[anon_sym_TAB] = ACTIONS(1),
2022-12-04 23:45:53 +03:00
[sym__root_attr_key] = ACTIONS(1),
2022-12-06 11:57:59 +03:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
2022-12-06 12:32:50 +03:00
[anon_sym_style] = ACTIONS(1),
2022-12-04 23:45:53 +03:00
[anon_sym_shape] = ACTIONS(1),
[anon_sym_label] = ACTIONS(1),
[anon_sym_constraint] = ACTIONS(1),
[anon_sym_icon] = ACTIONS(1),
[anon_sym_width] = ACTIONS(1),
[anon_sym_height] = ACTIONS(1),
[anon_sym_opacity] = ACTIONS(1),
[anon_sym_fill] = ACTIONS(1),
[anon_sym_stroke] = ACTIONS(1),
[anon_sym_shadow] = ACTIONS(1),
[anon_sym_multiple] = ACTIONS(1),
[anon_sym_animated] = ACTIONS(1),
[anon_sym_3d] = ACTIONS(1),
[anon_sym_link] = ACTIONS(1),
[sym__text_attr_key] = ACTIONS(1),
2022-12-05 00:26:24 +03:00
[anon_sym_COLON] = ACTIONS(1),
2022-12-04 00:07:26 +03:00
[anon_sym_DASH_DASH] = ACTIONS(1),
[anon_sym_LT_DASH] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
2022-12-06 00:53:06 +03:00
[sym__dash] = ACTIONS(1),
[sym_dot] = ACTIONS(1),
2022-12-04 00:07:26 +03:00
[anon_sym_SQUOTE] = ACTIONS(1),
[anon_sym_DQUOTE] = ACTIONS(1),
[anon_sym_BQUOTE] = ACTIONS(1),
2022-12-07 12:09:27 +03:00
[sym_line_comment] = ACTIONS(3),
2022-12-05 11:36:14 +03:00
[anon_sym_LF] = ACTIONS(1),
2022-12-04 23:45:53 +03:00
[anon_sym_2] = ACTIONS(1),
2022-12-06 00:34:41 +03:00
[anon_sym_SEMI] = ACTIONS(1),
2022-12-04 00:07:26 +03:00
},
[1] = {
2022-12-07 18:52:19 +03:00
[sym_source_file] = STATE(215),
[sym__definition] = STATE(2),
[sym_connection] = STATE(2),
[sym_shape] = STATE(2),
[sym__root_attribute] = STATE(2),
[sym__shape_attribute] = STATE(119),
[sym__style_attribute] = STATE(152),
[sym__shape_attr_key] = STATE(170),
[sym__identifier] = STATE(22),
[sym_identifier] = STATE(22),
[sym__emptyline] = STATE(2),
[sym__eof] = STATE(2),
[aux_sym_source_file_repeat1] = STATE(2),
[aux_sym_attr_value_repeat1] = STATE(92),
[aux_sym_identifier_repeat1] = STATE(65),
2022-12-07 12:09:27 +03:00
[ts_builtin_sym_end] = ACTIONS(5),
[sym__word] = ACTIONS(7),
[anon_sym_] = ACTIONS(9),
2022-12-07 18:52:19 +03:00
[anon_sym_TAB] = ACTIONS(9),
2022-12-07 12:09:27 +03:00
[sym__root_attr_key] = ACTIONS(11),
2022-12-07 18:52:19 +03:00
[anon_sym_style] = ACTIONS(13),
[anon_sym_shape] = ACTIONS(15),
[anon_sym_label] = ACTIONS(15),
[anon_sym_constraint] = ACTIONS(15),
[anon_sym_icon] = ACTIONS(15),
[anon_sym_width] = ACTIONS(15),
[anon_sym_height] = ACTIONS(15),
[sym__dash] = ACTIONS(17),
2022-12-07 12:09:27 +03:00
[sym_line_comment] = ACTIONS(3),
2022-12-07 18:52:19 +03:00
[anon_sym_LF] = ACTIONS(19),
[anon_sym_2] = ACTIONS(19),
2022-12-04 00:07:26 +03:00
},
};
static const uint16_t ts_small_parse_table[] = {
2022-12-07 12:09:27 +03:00
[0] = 16,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(11), 1,
sym__root_attr_key,
2022-12-07 12:09:27 +03:00
ACTIONS(13), 1,
2022-12-07 18:52:19 +03:00
anon_sym_style,
2022-12-06 12:32:50 +03:00
ACTIONS(17), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 12:09:27 +03:00
ACTIONS(21), 1,
2022-12-07 18:52:19 +03:00
ts_builtin_sym_end,
STATE(65), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(92), 1,
aux_sym_attr_value_repeat1,
STATE(119), 1,
sym__shape_attribute,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(9), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(23), 2,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
sym__identifier,
sym_identifier,
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
STATE(3), 7,
sym__definition,
sym_connection,
sym_shape,
sym__root_attribute,
sym__emptyline,
sym__eof,
aux_sym_source_file_repeat1,
[63] = 16,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(25), 1,
ts_builtin_sym_end,
ACTIONS(27), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(33), 1,
sym__root_attr_key,
ACTIONS(36), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(42), 1,
sym__dash,
STATE(65), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(92), 1,
aux_sym_attr_value_repeat1,
STATE(119), 1,
sym__shape_attribute,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(30), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(45), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
sym__identifier,
sym_identifier,
ACTIONS(39), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
STATE(3), 7,
sym__definition,
sym_connection,
sym_shape,
sym__root_attribute,
sym__emptyline,
sym__eof,
aux_sym_source_file_repeat1,
[126] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 12:09:27 +03:00
ACTIONS(13), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(50), 1,
2022-12-07 12:09:27 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(12), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(48), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(52), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
2022-12-06 12:32:50 +03:00
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
STATE(5), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
2022-12-07 18:52:19 +03:00
STATE(104), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[185] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 12:09:27 +03:00
ACTIONS(13), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(56), 1,
anon_sym_RBRACE,
STATE(10), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(54), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(58), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
2022-12-06 12:32:50 +03:00
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
STATE(7), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
2022-12-07 18:52:19 +03:00
STATE(107), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[244] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 12:09:27 +03:00
ACTIONS(13), 1,
2022-12-06 12:40:18 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(56), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(10), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(54), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(60), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
2022-12-06 12:32:50 +03:00
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
STATE(8), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
2022-12-07 18:52:19 +03:00
STATE(107), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[303] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(62), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(68), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(70), 1,
anon_sym_style,
ACTIONS(76), 1,
sym__dash,
STATE(13), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(65), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(79), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(22), 2,
2022-12-06 12:40:18 +03:00
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
STATE(7), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
2022-12-07 18:52:19 +03:00
STATE(112), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(73), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[362] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 12:09:27 +03:00
ACTIONS(13), 1,
2022-12-07 18:52:19 +03:00
anon_sym_style,
ACTIONS(17), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(84), 1,
2022-12-07 12:09:27 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(9), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(58), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(82), 2,
anon_sym_,
anon_sym_TAB,
STATE(22), 2,
2022-12-06 12:32:50 +03:00
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
STATE(7), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
2022-12-07 18:52:19 +03:00
STATE(95), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[421] = 16,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(13), 1,
2022-12-06 12:40:18 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(88), 1,
anon_sym_RBRACE,
STATE(22), 1,
sym__identifier,
STATE(51), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(56), 1,
sym__eof,
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(79), 1,
sym_identifier,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(86), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(90), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(131), 4,
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
ACTIONS(15), 6,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[480] = 16,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
sym__word,
ACTIONS(13), 1,
anon_sym_style,
ACTIONS(17), 1,
sym__dash,
ACTIONS(84), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-06 12:40:18 +03:00
sym__identifier,
2022-12-07 18:52:19 +03:00
STATE(51), 1,
aux_sym_attr_value_repeat1,
STATE(56), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(79), 1,
sym_identifier,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
sym__shape_attr_key,
ACTIONS(86), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(90), 2,
anon_sym_LF,
anon_sym_2,
STATE(131), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[539] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(92), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(97), 2,
2022-12-06 12:32:50 +03:00
anon_sym_stroke,
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(95), 20,
anon_sym_LBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:32:50 +03:00
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[576] = 16,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
sym__word,
ACTIONS(13), 1,
anon_sym_style,
ACTIONS(17), 1,
sym__dash,
ACTIONS(56), 1,
anon_sym_RBRACE,
STATE(22), 1,
sym__identifier,
STATE(51), 1,
aux_sym_attr_value_repeat1,
STATE(56), 1,
sym__eof,
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(79), 1,
sym_identifier,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
sym__shape_attr_key,
ACTIONS(86), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(90), 2,
anon_sym_LF,
anon_sym_2,
STATE(131), 4,
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
ACTIONS(15), 6,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[635] = 15,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(7), 1,
sym__word,
ACTIONS(13), 1,
anon_sym_style,
ACTIONS(17), 1,
sym__dash,
STATE(22), 1,
sym__identifier,
STATE(51), 1,
aux_sym_attr_value_repeat1,
STATE(56), 1,
sym__eof,
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(79), 1,
sym_identifier,
STATE(152), 1,
sym__style_attribute,
STATE(170), 1,
sym__shape_attr_key,
ACTIONS(86), 2,
2022-12-07 12:09:27 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(90), 2,
anon_sym_LF,
anon_sym_2,
STATE(131), 4,
sym_connection,
sym_shape,
sym__shape_block_definition,
sym__shape_attribute,
ACTIONS(15), 6,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[691] = 10,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(101), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
STATE(26), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(105), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-07 18:52:19 +03:00
STATE(176), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(99), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(107), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(15), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-07 18:52:19 +03:00
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[736] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(112), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(117), 1,
anon_sym_stroke,
STATE(28), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(113), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-06 12:40:18 +03:00
STATE(176), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(109), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(120), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(15), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
sym__eof,
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(114), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[781] = 11,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(101), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
STATE(25), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(37), 1,
sym__eof,
STATE(105), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-07 18:52:19 +03:00
STATE(178), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(123), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(125), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(20), 2,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[828] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(129), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(16), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(96), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-06 12:40:18 +03:00
STATE(176), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(127), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(131), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(14), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
sym__eof,
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[873] = 11,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(129), 1,
anon_sym_RBRACE,
STATE(23), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(37), 1,
sym__eof,
STATE(96), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-07 18:52:19 +03:00
STATE(178), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(125), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(133), 2,
anon_sym_,
anon_sym_TAB,
STATE(14), 2,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[920] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(137), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(18), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(103), 1,
2022-12-06 12:40:18 +03:00
sym__inner_style_attribute,
2022-12-07 18:52:19 +03:00
STATE(176), 1,
2022-12-06 12:40:18 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(135), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(139), 2,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
STATE(21), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-07 18:52:19 +03:00
sym__eof,
2022-12-06 12:40:18 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 12:40:18 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[965] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 12:32:50 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(143), 1,
anon_sym_RBRACE,
2022-12-06 12:40:18 +03:00
STATE(27), 1,
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(98), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-06 12:40:18 +03:00
STATE(176), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(107), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(141), 2,
anon_sym_,
anon_sym_TAB,
STATE(15), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
sym__eof,
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1010] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(129), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
STATE(24), 1,
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(96), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
2022-12-06 12:40:18 +03:00
STATE(176), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(107), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(145), 2,
anon_sym_,
anon_sym_TAB,
STATE(15), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-06 11:57:59 +03:00
sym__eof,
aux_sym__style_attr_block_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1055] = 19,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(149), 1,
anon_sym_LBRACE,
ACTIONS(151), 1,
2022-12-07 12:09:27 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
ACTIONS(153), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DASH_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(155), 1,
2022-12-07 12:09:27 +03:00
anon_sym_LT_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(157), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DASH_GT,
2022-12-07 18:52:19 +03:00
ACTIONS(159), 1,
2022-12-07 12:09:27 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(161), 1,
2022-12-06 11:57:59 +03:00
sym_dot,
2022-12-07 18:52:19 +03:00
STATE(29), 1,
2022-12-06 11:57:59 +03:00
aux_sym_connection_repeat1,
2022-12-07 18:52:19 +03:00
STATE(42), 1,
sym__end,
STATE(47), 1,
sym__eof,
STATE(57), 1,
2022-12-06 11:57:59 +03:00
sym__colon,
2022-12-07 18:52:19 +03:00
STATE(61), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(67), 1,
2022-12-06 12:32:50 +03:00
aux_sym_shape_repeat1,
2022-12-07 18:52:19 +03:00
STATE(129), 1,
sym__shape_block,
STATE(200), 1,
2022-12-06 11:57:59 +03:00
aux_sym_arrow_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(147), 2,
anon_sym_,
anon_sym_TAB,
STATE(128), 2,
2022-12-06 11:57:59 +03:00
sym__arrow,
sym_arrow,
2022-12-07 18:52:19 +03:00
ACTIONS(163), 3,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[1117] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(165), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(171), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(92), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(174), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(168), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1157] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(101), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
anon_sym_stroke,
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(179), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1197] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(171), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(181), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
2022-12-06 12:40:18 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(92), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(174), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(168), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1237] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(143), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
2022-12-06 12:40:18 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(179), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1277] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(184), 1,
anon_sym_RBRACE,
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
2022-12-06 12:40:18 +03:00
sym__style_attr_key,
2022-12-07 18:52:19 +03:00
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(179), 2,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1317] = 8,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
anon_sym_stroke,
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(41), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(166), 1,
sym__style_attr_key,
ACTIONS(177), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(179), 2,
anon_sym_LF,
anon_sym_2,
ACTIONS(103), 11,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
[1354] = 16,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(153), 1,
anon_sym_DASH_DASH,
ACTIONS(155), 1,
anon_sym_LT_DASH,
ACTIONS(157), 1,
anon_sym_DASH_GT,
ACTIONS(159), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(188), 1,
anon_sym_COLON,
ACTIONS(190), 1,
sym_dot,
STATE(47), 1,
sym__eof,
STATE(50), 1,
sym__end,
STATE(53), 1,
aux_sym_connection_repeat1,
STATE(70), 1,
aux_sym_attr_value_repeat1,
STATE(143), 1,
sym__colon,
STATE(200), 1,
aux_sym_arrow_repeat1,
ACTIONS(186), 2,
anon_sym_,
anon_sym_TAB,
STATE(128), 2,
sym__arrow,
sym_arrow,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[1407] = 12,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(13), 1,
2022-12-06 12:40:18 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(192), 1,
2022-12-07 12:09:27 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(196), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(82), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(122), 1,
2022-12-06 12:40:18 +03:00
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
STATE(139), 1,
aux_sym_attr_value_repeat1,
STATE(152), 1,
2022-12-06 12:40:18 +03:00
sym__style_attribute,
2022-12-07 18:52:19 +03:00
STATE(170), 1,
sym__shape_attr_key,
ACTIONS(194), 2,
anon_sym_,
anon_sym_TAB,
STATE(125), 2,
2022-12-06 12:40:18 +03:00
sym__identifier,
2022-12-06 12:32:50 +03:00
sym_identifier,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-06 12:32:50 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[1451] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(201), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(204), 1,
anon_sym_stroke,
STATE(180), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(198), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(112), 13,
2022-12-06 12:40:18 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1483] = 12,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(13), 1,
2022-12-06 11:57:59 +03:00
anon_sym_style,
2022-12-07 18:52:19 +03:00
ACTIONS(192), 1,
2022-12-07 12:09:27 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(196), 1,
2022-12-05 00:26:24 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(82), 1,
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(118), 1,
2022-12-05 00:26:24 +03:00
sym__shape_attribute,
2022-12-07 18:52:19 +03:00
STATE(139), 1,
aux_sym_attr_value_repeat1,
STATE(152), 1,
2022-12-06 11:57:59 +03:00
sym__style_attribute,
2022-12-07 18:52:19 +03:00
STATE(170), 1,
sym__shape_attr_key,
ACTIONS(194), 2,
anon_sym_,
anon_sym_TAB,
STATE(125), 2,
sym__identifier,
sym_identifier,
2022-12-07 18:52:19 +03:00
ACTIONS(15), 6,
2022-12-04 23:45:53 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
[1527] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(204), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(209), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(187), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(206), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(112), 13,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1559] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
aux_sym_attr_value_repeat1,
ACTIONS(212), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(95), 7,
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
anon_sym_COLON,
2022-12-06 12:40:18 +03:00
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(97), 8,
2022-12-06 12:40:18 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 18:52:19 +03:00
sym__word,
[1589] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(204), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(218), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(195), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(215), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(112), 13,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1621] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(204), 1,
anon_sym_stroke,
ACTIONS(224), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(191), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(221), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(112), 13,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1653] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(230), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(227), 16,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1678] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(235), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(233), 16,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1703] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(237), 8,
ts_builtin_sym_end,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
sym__dash,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
ACTIONS(239), 9,
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[1728] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(241), 8,
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(243), 9,
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[1753] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(247), 1,
2022-12-04 23:45:53 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(245), 16,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-04 23:45:53 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
[1778] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(249), 8,
2022-12-06 12:40:18 +03:00
ts_builtin_sym_end,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(251), 9,
2022-12-06 12:40:18 +03:00
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[1803] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(253), 8,
ts_builtin_sym_end,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-05 10:37:04 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
ACTIONS(255), 9,
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[1828] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(204), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
2022-12-07 18:52:19 +03:00
ACTIONS(112), 16,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
[1853] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(257), 8,
ts_builtin_sym_end,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(259), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[1878] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(105), 1,
anon_sym_stroke,
STATE(55), 1,
aux_sym_attr_value_repeat1,
STATE(148), 1,
sym__inner_style_attribute,
STATE(176), 1,
sym__style_attr_key,
ACTIONS(261), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(103), 11,
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
[1911] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(233), 8,
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(235), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[1936] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(263), 8,
ts_builtin_sym_end,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(265), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-05 10:37:04 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
[1961] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(259), 1,
anon_sym_stroke,
ACTIONS(257), 16,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
anon_sym_LF,
anon_sym_2,
[1986] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(267), 8,
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(269), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[2011] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(271), 1,
sym__word,
ACTIONS(274), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(77), 1,
sym_identifier,
ACTIONS(212), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(95), 3,
anon_sym_RBRACE,
2022-12-06 00:34:41 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(97), 7,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[2048] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(277), 8,
ts_builtin_sym_end,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
ACTIONS(279), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[2073] = 11,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(286), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DASH_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(289), 1,
2022-12-07 12:09:27 +03:00
anon_sym_LT_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(292), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DASH_GT,
2022-12-07 18:52:19 +03:00
ACTIONS(295), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(53), 1,
aux_sym_connection_repeat1,
STATE(97), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(200), 1,
2022-12-06 12:40:18 +03:00
aux_sym_arrow_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(281), 2,
anon_sym_,
anon_sym_TAB,
STATE(128), 2,
sym__arrow,
2022-12-06 12:40:18 +03:00
sym_arrow,
2022-12-07 18:52:19 +03:00
ACTIONS(284), 5,
anon_sym_COLON,
sym_dot,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2113] = 15,
ACTIONS(149), 1,
anon_sym_LBRACE,
ACTIONS(300), 1,
sym__unquoted_string,
ACTIONS(302), 1,
anon_sym_SQUOTE,
ACTIONS(304), 1,
anon_sym_DQUOTE,
ACTIONS(306), 1,
anon_sym_BQUOTE,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(310), 1,
anon_sym_2,
STATE(47), 1,
sym__eof,
STATE(48), 1,
sym__end,
STATE(91), 1,
sym_label,
STATE(118), 1,
sym__shape_block,
STATE(126), 1,
aux_sym_attr_value_repeat1,
STATE(144), 1,
sym_string,
ACTIONS(163), 2,
anon_sym_LF,
anon_sym_SEMI,
ACTIONS(298), 2,
anon_sym_,
anon_sym_TAB,
[2161] = 6,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(105), 1,
anon_sym_stroke,
STATE(11), 1,
aux_sym_attr_value_repeat1,
STATE(166), 1,
sym__style_attr_key,
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(103), 11,
anon_sym_opacity,
anon_sym_fill,
anon_sym_stroke_DASHwidth,
anon_sym_stroke_DASHdash,
anon_sym_border_DASHradius,
anon_sym_font_DASHcolor,
anon_sym_shadow,
anon_sym_multiple,
anon_sym_animated,
anon_sym_3d,
anon_sym_link,
[2191] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(245), 7,
ts_builtin_sym_end,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-06 00:34:41 +03:00
sym__dash,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(247), 9,
sym__root_attr_key,
2022-12-06 12:32:50 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
2022-12-07 18:52:19 +03:00
[2215] = 15,
ACTIONS(149), 1,
anon_sym_LBRACE,
ACTIONS(300), 1,
sym__unquoted_string,
ACTIONS(302), 1,
anon_sym_SQUOTE,
ACTIONS(304), 1,
anon_sym_DQUOTE,
ACTIONS(306), 1,
anon_sym_BQUOTE,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(310), 1,
anon_sym_2,
STATE(43), 1,
sym__end,
STATE(47), 1,
sym__eof,
STATE(88), 1,
sym_label,
STATE(122), 1,
sym__shape_block,
STATE(126), 1,
aux_sym_attr_value_repeat1,
STATE(144), 1,
sym_string,
ACTIONS(163), 2,
anon_sym_LF,
anon_sym_SEMI,
ACTIONS(298), 2,
anon_sym_,
anon_sym_TAB,
[2263] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(317), 1,
anon_sym_RBRACE,
STATE(185), 1,
aux_sym_attr_value_repeat1,
ACTIONS(314), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(68), 3,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-04 23:45:53 +03:00
anon_sym_LF,
2022-12-04 18:35:50 +03:00
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(312), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2292] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(323), 1,
anon_sym_RBRACE,
STATE(182), 1,
aux_sym_attr_value_repeat1,
ACTIONS(320), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(68), 3,
sym__dash,
2022-12-06 00:34:41 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(312), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2321] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(326), 6,
ts_builtin_sym_end,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(328), 9,
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2344] = 13,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(153), 1,
2022-12-04 18:35:37 +03:00
anon_sym_DASH_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(155), 1,
2022-12-04 18:35:37 +03:00
anon_sym_LT_DASH,
2022-12-07 18:52:19 +03:00
ACTIONS(157), 1,
2022-12-04 18:35:37 +03:00
anon_sym_DASH_GT,
2022-12-07 18:52:19 +03:00
ACTIONS(159), 1,
sym__dash,
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(332), 1,
anon_sym_COLON,
STATE(11), 1,
aux_sym_attr_value_repeat1,
STATE(45), 1,
sym__eof,
STATE(186), 1,
sym_arrow,
STATE(200), 1,
aux_sym_arrow_repeat1,
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2387] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(339), 1,
2022-12-07 18:52:19 +03:00
anon_sym_RBRACE,
STATE(196), 1,
aux_sym_attr_value_repeat1,
ACTIONS(336), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(68), 3,
2022-12-05 11:36:14 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(312), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2416] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(342), 6,
ts_builtin_sym_end,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__dash,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(344), 9,
sym__root_attr_key,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2439] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(346), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(350), 1,
2022-12-05 10:33:49 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(68), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(348), 11,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-04 03:36:46 +03:00
anon_sym_COLON,
2022-12-04 18:35:37 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2465] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(346), 1,
sym__word,
ACTIONS(355), 1,
2022-12-05 10:33:49 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(68), 1,
aux_sym_identifier_repeat1,
ACTIONS(353), 11,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-05 00:26:24 +03:00
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-05 00:26:24 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2491] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(358), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(363), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(197), 1,
aux_sym_attr_value_repeat1,
ACTIONS(360), 2,
2022-12-06 00:34:41 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(353), 9,
anon_sym_LBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_COLON,
2022-12-06 12:32:50 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2519] = 12,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(149), 1,
anon_sym_LBRACE,
ACTIONS(368), 1,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
ACTIONS(370), 1,
2022-12-06 11:57:59 +03:00
sym_dot,
2022-12-07 18:52:19 +03:00
STATE(43), 1,
sym__end,
STATE(47), 1,
sym__eof,
STATE(54), 1,
sym__colon,
STATE(99), 1,
aux_sym_attr_value_repeat1,
STATE(101), 1,
aux_sym_shape_repeat1,
STATE(122), 1,
sym__shape_block,
ACTIONS(366), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2559] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(372), 1,
2022-12-07 18:52:19 +03:00
sym__word,
ACTIONS(377), 1,
2022-12-05 00:26:24 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(68), 1,
aux_sym_identifier_repeat1,
ACTIONS(375), 11,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-04 18:35:37 +03:00
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2585] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(68), 6,
2022-12-05 11:36:14 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_LF,
anon_sym_2,
ACTIONS(312), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2607] = 12,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(153), 1,
anon_sym_DASH_DASH,
ACTIONS(155), 1,
anon_sym_LT_DASH,
ACTIONS(157), 1,
anon_sym_DASH_GT,
ACTIONS(159), 1,
sym__dash,
ACTIONS(379), 1,
2022-12-04 18:35:37 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(45), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(186), 1,
sym_arrow,
STATE(200), 1,
aux_sym_arrow_repeat1,
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2647] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(383), 6,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(381), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2669] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(358), 1,
sym__word,
ACTIONS(388), 1,
2022-12-05 11:36:14 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(197), 1,
aux_sym_attr_value_repeat1,
ACTIONS(385), 2,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(348), 9,
anon_sym_LBRACE,
2022-12-05 00:26:24 +03:00
anon_sym_COLON,
2022-12-04 18:35:50 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
2022-12-04 18:35:37 +03:00
anon_sym_DASH_GT,
sym_dot,
2022-12-04 23:45:53 +03:00
anon_sym_LF,
2022-12-04 18:35:50 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2697] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(391), 1,
sym__word,
ACTIONS(395), 1,
2022-12-05 11:36:14 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(393), 11,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-04 23:45:53 +03:00
anon_sym_COLON,
2022-12-06 12:32:50 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2720] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(377), 1,
2022-12-06 11:57:59 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(375), 12,
2022-12-06 00:34:41 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-06 11:57:59 +03:00
sym__word,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
[2741] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(399), 1,
2022-12-06 00:53:06 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(397), 12,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
2022-12-06 12:32:50 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
2022-12-04 23:45:53 +03:00
sym_dot,
2022-12-07 18:52:19 +03:00
sym__word,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2762] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(391), 1,
sym__word,
ACTIONS(401), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(348), 11,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 12:40:18 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2785] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(405), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(403), 11,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2805] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(395), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(393), 11,
anon_sym_,
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2825] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(410), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(407), 11,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
2022-12-06 12:40:18 +03:00
sym_dot,
2022-12-05 11:36:14 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 12:40:18 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2845] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(401), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(348), 11,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
2022-12-06 11:57:59 +03:00
sym_dot,
2022-12-05 10:33:49 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2865] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(413), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(284), 10,
anon_sym_,
anon_sym_TAB,
anon_sym_COLON,
anon_sym_DASH_DASH,
anon_sym_LT_DASH,
anon_sym_DASH_GT,
sym_dot,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2884] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(415), 1,
2022-12-06 00:34:41 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(417), 1,
2022-12-05 11:36:14 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(83), 1,
aux_sym_identifier_repeat1,
ACTIONS(353), 8,
anon_sym_,
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_COLON,
sym_dot,
2022-12-05 10:37:04 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2907] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(419), 1,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
STATE(83), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(375), 9,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2928] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(422), 1,
2022-12-06 00:53:06 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(427), 1,
2022-12-06 00:53:06 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(188), 1,
aux_sym_attr_value_repeat1,
ACTIONS(424), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(348), 6,
anon_sym_LBRACE,
anon_sym_COLON,
sym_dot,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2953] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(415), 1,
sym__word,
2022-12-07 12:09:27 +03:00
ACTIONS(429), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
STATE(83), 1,
aux_sym_identifier_repeat1,
ACTIONS(348), 8,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
sym_dot,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[2976] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(422), 1,
2022-12-06 11:57:59 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(434), 1,
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(188), 1,
aux_sym_attr_value_repeat1,
ACTIONS(431), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(353), 6,
anon_sym_LBRACE,
anon_sym_COLON,
sym_dot,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3001] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(375), 10,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
2022-12-06 11:57:59 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
sym_dot,
sym__word,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3017] = 8,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(149), 1,
anon_sym_LBRACE,
STATE(47), 1,
sym__eof,
STATE(48), 1,
sym__end,
STATE(118), 1,
sym__shape_block,
STATE(126), 1,
aux_sym_attr_value_repeat1,
ACTIONS(436), 2,
2022-12-04 18:35:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-05 11:36:14 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3045] = 3,
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(438), 4,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
sym__unquoted_string,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(440), 6,
2022-12-06 12:40:18 +03:00
anon_sym_LBRACE,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3063] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(397), 10,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
2022-12-06 00:34:41 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
sym_dot,
sym__word,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 18:35:50 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3079] = 8,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(149), 1,
anon_sym_LBRACE,
STATE(40), 1,
sym__end,
STATE(47), 1,
sym__eof,
STATE(117), 1,
sym__shape_block,
STATE(126), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(436), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3107] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(442), 1,
sym__word,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(56), 1,
2022-12-06 11:57:59 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(77), 1,
sym_identifier,
ACTIONS(90), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[3137] = 9,
ACTIONS(302), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(304), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(306), 1,
2022-12-06 12:32:50 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(448), 1,
2022-12-06 12:32:50 +03:00
sym__unquoted_string,
STATE(115), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(145), 1,
2022-12-06 12:32:50 +03:00
sym_string,
2022-12-07 18:52:19 +03:00
STATE(146), 1,
2022-12-06 12:40:18 +03:00
sym_attr_value,
2022-12-07 18:52:19 +03:00
ACTIONS(446), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[3166] = 9,
ACTIONS(302), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(304), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(306), 1,
2022-12-06 12:40:18 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(448), 1,
2022-12-06 12:40:18 +03:00
sym__unquoted_string,
STATE(115), 1,
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(145), 1,
2022-12-06 12:40:18 +03:00
sym_string,
2022-12-07 18:52:19 +03:00
STATE(156), 1,
sym_attr_value,
ACTIONS(446), 2,
anon_sym_,
anon_sym_TAB,
[3195] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(88), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(58), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(121), 1,
aux_sym_attr_value_repeat1,
ACTIONS(450), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 00:34:41 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-04 18:35:37 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3220] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(101), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(31), 1,
2022-12-06 11:57:59 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(38), 1,
sym__eof,
STATE(114), 1,
aux_sym_attr_value_repeat1,
ACTIONS(452), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(454), 3,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3245] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(153), 1,
anon_sym_DASH_DASH,
ACTIONS(155), 1,
anon_sym_LT_DASH,
ACTIONS(157), 1,
anon_sym_DASH_GT,
ACTIONS(159), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(11), 1,
aux_sym_attr_value_repeat1,
STATE(186), 1,
sym_arrow,
STATE(200), 1,
aux_sym_arrow_repeat1,
ACTIONS(177), 2,
anon_sym_,
anon_sym_TAB,
[3274] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(184), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(36), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(38), 1,
sym__eof,
STATE(130), 1,
aux_sym_attr_value_repeat1,
ACTIONS(456), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(454), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3299] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(332), 1,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
aux_sym_attr_value_repeat1,
STATE(45), 1,
sym__eof,
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3324] = 9,
ACTIONS(302), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(304), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(306), 1,
2022-12-06 12:32:50 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(448), 1,
2022-12-06 12:32:50 +03:00
sym__unquoted_string,
STATE(115), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(145), 1,
2022-12-06 12:40:18 +03:00
sym_string,
2022-12-07 18:52:19 +03:00
STATE(160), 1,
sym_attr_value,
ACTIONS(446), 2,
anon_sym_,
anon_sym_TAB,
[3353] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(460), 1,
sym_dot,
STATE(101), 1,
aux_sym_shape_repeat1,
ACTIONS(458), 7,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3372] = 9,
ACTIONS(302), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(304), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(306), 1,
2022-12-06 12:32:50 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(448), 1,
2022-12-06 12:32:50 +03:00
sym__unquoted_string,
STATE(115), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(145), 1,
2022-12-06 12:32:50 +03:00
sym_string,
2022-12-07 18:52:19 +03:00
STATE(171), 1,
sym_attr_value,
ACTIONS(446), 2,
anon_sym_,
anon_sym_TAB,
[3401] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(129), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(35), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(38), 1,
sym__eof,
STATE(132), 1,
aux_sym_attr_value_repeat1,
ACTIONS(463), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(454), 3,
2022-12-05 11:36:14 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3426] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(56), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(59), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(111), 1,
aux_sym_attr_value_repeat1,
ACTIONS(465), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3451] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(143), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(33), 1,
sym__end,
STATE(38), 1,
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(127), 1,
aux_sym_attr_value_repeat1,
ACTIONS(467), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(454), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3476] = 9,
ACTIONS(302), 1,
anon_sym_SQUOTE,
ACTIONS(304), 1,
anon_sym_DQUOTE,
ACTIONS(306), 1,
anon_sym_BQUOTE,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(448), 1,
sym__unquoted_string,
STATE(115), 1,
aux_sym_attr_value_repeat1,
STATE(116), 1,
sym_attr_value,
STATE(145), 1,
sym_string,
ACTIONS(446), 2,
anon_sym_,
anon_sym_TAB,
[3505] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(84), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(62), 1,
sym__end,
STATE(123), 1,
aux_sym_attr_value_repeat1,
ACTIONS(469), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3530] = 9,
ACTIONS(302), 1,
anon_sym_SQUOTE,
ACTIONS(304), 1,
anon_sym_DQUOTE,
ACTIONS(306), 1,
anon_sym_BQUOTE,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(448), 1,
sym__unquoted_string,
STATE(115), 1,
aux_sym_attr_value_repeat1,
STATE(145), 1,
sym_string,
STATE(155), 1,
sym_attr_value,
ACTIONS(446), 2,
anon_sym_,
anon_sym_TAB,
[3559] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(471), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(348), 8,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
sym_dot,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3576] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(471), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(393), 8,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_COLON,
sym_dot,
2022-12-04 18:35:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3593] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(84), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(45), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3615] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(69), 1,
sym__end,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-04 23:45:53 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3637] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(38), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(44), 1,
sym__end,
STATE(136), 1,
aux_sym_attr_value_repeat1,
ACTIONS(475), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(454), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3659] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(143), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(49), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(477), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3681] = 8,
ACTIONS(302), 1,
anon_sym_SQUOTE,
ACTIONS(304), 1,
anon_sym_DQUOTE,
ACTIONS(306), 1,
anon_sym_BQUOTE,
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(481), 1,
sym__unquoted_string,
STATE(134), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(149), 1,
sym_string,
ACTIONS(479), 2,
anon_sym_,
anon_sym_TAB,
[3707] = 6,
ACTIONS(3), 1,
sym_line_comment,
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(63), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3729] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(52), 1,
2022-12-06 12:32:50 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3751] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(40), 1,
sym__end,
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3773] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(60), 1,
2022-12-06 12:40:18 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-05 11:36:14 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3795] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-06 12:40:18 +03:00
STATE(39), 1,
2022-12-07 18:52:19 +03:00
sym__end,
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3817] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(483), 1,
anon_sym_RBRACE,
STATE(34), 1,
aux_sym_attr_value_repeat1,
STATE(45), 1,
sym__eof,
ACTIONS(444), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3839] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(48), 1,
2022-12-06 12:40:18 +03:00
sym__end,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3861] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(88), 1,
anon_sym_RBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(45), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3883] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(196), 1,
sym__dash,
ACTIONS(485), 1,
sym__word,
STATE(82), 1,
aux_sym_identifier_repeat1,
STATE(139), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(194), 2,
anon_sym_,
anon_sym_TAB,
STATE(125), 2,
sym__identifier,
sym_identifier,
[3907] = 2,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(458), 8,
anon_sym_,
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
sym_dot,
2022-12-05 11:36:14 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3921] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(330), 1,
anon_sym_LBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(45), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3943] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(184), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(49), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(477), 3,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[3965] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(442), 1,
sym__word,
STATE(65), 1,
aux_sym_identifier_repeat1,
STATE(135), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(487), 2,
anon_sym_,
anon_sym_TAB,
STATE(81), 2,
sym__identifier,
sym_identifier,
[3989] = 6,
ACTIONS(3), 1,
sym_line_comment,
2022-12-06 12:40:18 +03:00
STATE(43), 1,
2022-12-07 18:52:19 +03:00
sym__end,
STATE(47), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4011] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(489), 1,
anon_sym_RBRACE,
STATE(34), 1,
aux_sym_attr_value_repeat1,
STATE(49), 1,
sym__eof,
ACTIONS(444), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(477), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 18:52:19 +03:00
anon_sym_SEMI,
[4033] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(47), 1,
sym__eof,
STATE(71), 1,
sym__end,
STATE(138), 1,
aux_sym_attr_value_repeat1,
ACTIONS(473), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(163), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4055] = 6,
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(101), 1,
anon_sym_RBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(49), 1,
sym__eof,
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(477), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4077] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(491), 7,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4090] = 5,
ACTIONS(97), 1,
sym__unquoted_string,
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(134), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(493), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(95), 3,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
2022-12-05 10:37:04 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
[4109] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(17), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
ACTIONS(442), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(65), 1,
2022-12-06 12:32:50 +03:00
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
STATE(77), 1,
2022-12-06 12:32:50 +03:00
sym_identifier,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4132] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
aux_sym_attr_value_repeat1,
STATE(49), 1,
sym__eof,
ACTIONS(444), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(477), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4151] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(496), 7,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_RBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4164] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
STATE(45), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(334), 3,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4183] = 7,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(196), 1,
sym__dash,
ACTIONS(485), 1,
sym__word,
STATE(34), 1,
aux_sym_attr_value_repeat1,
STATE(77), 1,
sym_identifier,
STATE(82), 1,
aux_sym_identifier_repeat1,
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4206] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(500), 1,
anon_sym_GT,
ACTIONS(502), 1,
sym__dash,
STATE(150), 1,
aux_sym_arrow_repeat1,
ACTIONS(498), 3,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__word,
[4224] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(505), 6,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4236] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(507), 6,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4248] = 7,
ACTIONS(300), 1,
2022-12-06 12:40:18 +03:00
sym__unquoted_string,
2022-12-07 18:52:19 +03:00
ACTIONS(302), 1,
2022-12-06 12:40:18 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(304), 1,
2022-12-06 12:40:18 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(306), 1,
2022-12-06 12:40:18 +03:00
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(308), 1,
sym_line_comment,
STATE(120), 1,
sym_label,
STATE(144), 1,
sym_string,
[4270] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(509), 6,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4282] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(511), 6,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4294] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(513), 6,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4306] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(516), 6,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4318] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(518), 6,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4330] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(520), 6,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4342] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(524), 1,
anon_sym_GT,
ACTIONS(526), 1,
sym__dash,
STATE(154), 1,
aux_sym_arrow_repeat1,
ACTIONS(522), 3,
anon_sym_,
anon_sym_TAB,
sym__word,
[4360] = 2,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(529), 6,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4372] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(531), 6,
2022-12-05 00:26:24 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4384] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(533), 6,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4396] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(537), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(154), 1,
2022-12-06 12:40:18 +03:00
aux_sym_arrow_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(535), 4,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 12:09:27 +03:00
anon_sym_GT,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
[4412] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(540), 6,
2022-12-07 12:09:27 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4424] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(542), 6,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4436] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(544), 6,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4448] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(546), 6,
2022-12-05 10:37:04 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 12:09:27 +03:00
anon_sym_RBRACE,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4460] = 3,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(438), 3,
anon_sym_,
anon_sym_TAB,
sym__unquoted_string,
ACTIONS(440), 3,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
[4474] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(548), 6,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4486] = 6,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(552), 1,
anon_sym_COLON,
ACTIONS(554), 1,
sym_dot,
STATE(172), 1,
sym__colon,
STATE(189), 1,
aux_sym_attr_value_repeat1,
ACTIONS(550), 2,
anon_sym_,
anon_sym_TAB,
[4506] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(556), 5,
2022-12-05 10:37:04 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-05 10:33:49 +03:00
anon_sym_LF,
2022-12-05 11:36:14 +03:00
anon_sym_2,
2022-12-05 10:33:49 +03:00
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4517] = 5,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(358), 1,
sym__word,
ACTIONS(560), 1,
sym__dash,
STATE(197), 1,
aux_sym_attr_value_repeat1,
ACTIONS(558), 2,
anon_sym_,
anon_sym_TAB,
[4534] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(562), 5,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 12:09:27 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4545] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(566), 1,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(106), 1,
2022-12-06 12:40:18 +03:00
sym__colon,
2022-12-07 18:52:19 +03:00
STATE(181), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(564), 2,
anon_sym_,
anon_sym_TAB,
[4562] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(568), 1,
2022-12-06 12:32:50 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(94), 1,
2022-12-06 12:32:50 +03:00
sym__colon,
2022-12-07 18:52:19 +03:00
STATE(181), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(564), 2,
anon_sym_,
anon_sym_TAB,
[4579] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(570), 1,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(102), 1,
2022-12-06 12:40:18 +03:00
sym__colon,
2022-12-07 18:52:19 +03:00
STATE(181), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(564), 2,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4596] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(572), 5,
2022-12-05 11:36:14 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4607] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(422), 1,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
ACTIONS(576), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(188), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(574), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4624] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(578), 1,
2022-12-06 00:53:06 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
STATE(108), 1,
2022-12-06 11:57:59 +03:00
sym__colon,
2022-12-07 18:52:19 +03:00
STATE(181), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(564), 2,
anon_sym_,
anon_sym_TAB,
[4641] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(580), 5,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4652] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(584), 1,
anon_sym_LBRACE,
STATE(148), 1,
sym__style_attr_block,
STATE(183), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(582), 2,
anon_sym_,
anon_sym_TAB,
[4669] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(586), 1,
sym__dash,
STATE(175), 1,
aux_sym_arrow_repeat1,
ACTIONS(498), 3,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__word,
[4684] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(589), 5,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4695] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(526), 1,
sym__dash,
2022-12-07 18:52:19 +03:00
STATE(154), 1,
aux_sym_arrow_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(522), 3,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
[4710] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(591), 1,
anon_sym_COLON,
STATE(100), 1,
sym__colon,
STATE(181), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(564), 2,
anon_sym_,
anon_sym_TAB,
[4727] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(593), 5,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-07 18:52:19 +03:00
[4738] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(595), 1,
anon_sym_COLON,
STATE(93), 1,
sym__colon,
STATE(181), 1,
aux_sym_attr_value_repeat1,
ACTIONS(564), 2,
anon_sym_,
anon_sym_TAB,
[4755] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(597), 5,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4766] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(184), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4780] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(599), 1,
anon_sym_COLON,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4794] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(88), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4808] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(601), 1,
anon_sym_LBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4822] = 4,
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
STATE(120), 1,
sym__connection_attribute,
STATE(167), 1,
sym__connection_attr_key,
ACTIONS(603), 2,
anon_sym_source_DASHarrowhead,
anon_sym_target_DASHarrowhead,
[4836] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(605), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4850] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(607), 4,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
sym__dash,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
[4860] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(489), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4874] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(471), 1,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4888] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(609), 1,
anon_sym_COLON,
STATE(34), 1,
aux_sym_attr_value_repeat1,
ACTIONS(444), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4902] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(522), 4,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:40:18 +03:00
sym__dash,
sym__word,
2022-12-07 18:52:19 +03:00
[4912] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(611), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4926] = 3,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(438), 1,
sym__unquoted_string,
ACTIONS(440), 3,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
[4938] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(498), 4,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__dash,
sym__word,
[4948] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(613), 4,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
sym__dash,
sym__word,
2022-12-07 18:52:19 +03:00
[4958] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(143), 1,
anon_sym_RBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4972] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(483), 1,
anon_sym_RBRACE,
STATE(34), 1,
2022-12-06 12:40:18 +03:00
aux_sym_attr_value_repeat1,
2022-12-07 18:52:19 +03:00
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[4986] = 4,
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(391), 1,
sym__word,
STATE(34), 1,
aux_sym_attr_value_repeat1,
ACTIONS(444), 2,
anon_sym_,
anon_sym_TAB,
[5000] = 4,
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(615), 1,
2022-12-06 12:40:18 +03:00
anon_sym_SQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(617), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_token1,
2022-12-07 18:52:19 +03:00
STATE(207), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_repeat1,
2022-12-07 18:52:19 +03:00
[5013] = 4,
ACTIONS(308), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(615), 1,
2022-12-06 12:40:18 +03:00
anon_sym_DQUOTE,
2022-12-07 18:52:19 +03:00
ACTIONS(619), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_token2,
2022-12-07 18:52:19 +03:00
STATE(209), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_repeat2,
2022-12-07 18:52:19 +03:00
[5026] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(500), 1,
anon_sym_DASH_GT,
ACTIONS(621), 1,
sym__dash,
STATE(212), 1,
aux_sym_arrow_repeat1,
[5039] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(623), 1,
anon_sym_DQUOTE,
ACTIONS(625), 1,
aux_sym_string_token2,
STATE(199), 1,
aux_sym_string_repeat2,
[5052] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(623), 1,
anon_sym_BQUOTE,
ACTIONS(627), 1,
aux_sym_string_token3,
STATE(203), 1,
aux_sym_string_repeat3,
[5065] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(615), 1,
anon_sym_BQUOTE,
ACTIONS(629), 1,
aux_sym_string_token3,
STATE(210), 1,
aux_sym_string_repeat3,
[5078] = 2,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(440), 3,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 11:57:59 +03:00
anon_sym_LBRACE,
2022-12-07 18:52:19 +03:00
[5087] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(623), 1,
anon_sym_SQUOTE,
ACTIONS(631), 1,
aux_sym_string_token1,
STATE(198), 1,
aux_sym_string_repeat1,
[5100] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(633), 3,
anon_sym_,
anon_sym_TAB,
anon_sym_COLON,
[5109] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(635), 1,
anon_sym_SQUOTE,
ACTIONS(637), 1,
aux_sym_string_token1,
STATE(207), 1,
aux_sym_string_repeat1,
[5122] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(640), 3,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
[5131] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(642), 1,
anon_sym_DQUOTE,
ACTIONS(644), 1,
aux_sym_string_token2,
STATE(209), 1,
aux_sym_string_repeat2,
[5144] = 4,
ACTIONS(308), 1,
sym_line_comment,
ACTIONS(647), 1,
anon_sym_BQUOTE,
ACTIONS(649), 1,
aux_sym_string_token3,
STATE(210), 1,
aux_sym_string_repeat3,
[5157] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(652), 3,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-06 00:53:06 +03:00
anon_sym_COLON,
2022-12-07 18:52:19 +03:00
[5166] = 4,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(535), 1,
anon_sym_DASH_GT,
ACTIONS(654), 1,
sym__dash,
STATE(212), 1,
aux_sym_arrow_repeat1,
[5179] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(657), 1,
2022-12-04 18:35:37 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
STATE(64), 1,
aux_sym_identifier_repeat1,
2022-12-07 18:52:19 +03:00
[5189] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(659), 1,
sym__word,
STATE(85), 1,
aux_sym_identifier_repeat1,
[5199] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(661), 1,
2022-12-04 03:25:38 +03:00
ts_builtin_sym_end,
2022-12-07 18:52:19 +03:00
[5206] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(471), 1,
2022-12-06 12:40:18 +03:00
sym__word,
2022-12-07 18:52:19 +03:00
[5213] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 18:52:19 +03:00
ACTIONS(391), 1,
2022-12-06 11:57:59 +03:00
sym__word,
2022-12-04 00:07:26 +03:00
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2022-12-07 18:52:19 +03:00
[SMALL_STATE(3)] = 63,
[SMALL_STATE(4)] = 126,
[SMALL_STATE(5)] = 185,
[SMALL_STATE(6)] = 244,
[SMALL_STATE(7)] = 303,
[SMALL_STATE(8)] = 362,
[SMALL_STATE(9)] = 421,
[SMALL_STATE(10)] = 480,
[SMALL_STATE(11)] = 539,
[SMALL_STATE(12)] = 576,
[SMALL_STATE(13)] = 635,
[SMALL_STATE(14)] = 691,
[SMALL_STATE(15)] = 736,
[SMALL_STATE(16)] = 781,
[SMALL_STATE(17)] = 828,
[SMALL_STATE(18)] = 873,
[SMALL_STATE(19)] = 920,
[SMALL_STATE(20)] = 965,
[SMALL_STATE(21)] = 1010,
[SMALL_STATE(22)] = 1055,
[SMALL_STATE(23)] = 1117,
[SMALL_STATE(24)] = 1157,
[SMALL_STATE(25)] = 1197,
[SMALL_STATE(26)] = 1237,
[SMALL_STATE(27)] = 1277,
[SMALL_STATE(28)] = 1317,
[SMALL_STATE(29)] = 1354,
[SMALL_STATE(30)] = 1407,
[SMALL_STATE(31)] = 1451,
[SMALL_STATE(32)] = 1483,
[SMALL_STATE(33)] = 1527,
[SMALL_STATE(34)] = 1559,
[SMALL_STATE(35)] = 1589,
[SMALL_STATE(36)] = 1621,
[SMALL_STATE(37)] = 1653,
[SMALL_STATE(38)] = 1678,
[SMALL_STATE(39)] = 1703,
[SMALL_STATE(40)] = 1728,
[SMALL_STATE(41)] = 1753,
[SMALL_STATE(42)] = 1778,
[SMALL_STATE(43)] = 1803,
[SMALL_STATE(44)] = 1828,
[SMALL_STATE(45)] = 1853,
[SMALL_STATE(46)] = 1878,
[SMALL_STATE(47)] = 1911,
[SMALL_STATE(48)] = 1936,
[SMALL_STATE(49)] = 1961,
[SMALL_STATE(50)] = 1986,
[SMALL_STATE(51)] = 2011,
[SMALL_STATE(52)] = 2048,
[SMALL_STATE(53)] = 2073,
[SMALL_STATE(54)] = 2113,
[SMALL_STATE(55)] = 2161,
[SMALL_STATE(56)] = 2191,
[SMALL_STATE(57)] = 2215,
[SMALL_STATE(58)] = 2263,
[SMALL_STATE(59)] = 2292,
[SMALL_STATE(60)] = 2321,
[SMALL_STATE(61)] = 2344,
[SMALL_STATE(62)] = 2387,
[SMALL_STATE(63)] = 2416,
[SMALL_STATE(64)] = 2439,
[SMALL_STATE(65)] = 2465,
[SMALL_STATE(66)] = 2491,
[SMALL_STATE(67)] = 2519,
[SMALL_STATE(68)] = 2559,
[SMALL_STATE(69)] = 2585,
[SMALL_STATE(70)] = 2607,
[SMALL_STATE(71)] = 2647,
[SMALL_STATE(72)] = 2669,
[SMALL_STATE(73)] = 2697,
[SMALL_STATE(74)] = 2720,
[SMALL_STATE(75)] = 2741,
[SMALL_STATE(76)] = 2762,
[SMALL_STATE(77)] = 2785,
[SMALL_STATE(78)] = 2805,
[SMALL_STATE(79)] = 2825,
[SMALL_STATE(80)] = 2845,
[SMALL_STATE(81)] = 2865,
[SMALL_STATE(82)] = 2884,
[SMALL_STATE(83)] = 2907,
[SMALL_STATE(84)] = 2928,
[SMALL_STATE(85)] = 2953,
[SMALL_STATE(86)] = 2976,
[SMALL_STATE(87)] = 3001,
[SMALL_STATE(88)] = 3017,
[SMALL_STATE(89)] = 3045,
[SMALL_STATE(90)] = 3063,
[SMALL_STATE(91)] = 3079,
[SMALL_STATE(92)] = 3107,
[SMALL_STATE(93)] = 3137,
[SMALL_STATE(94)] = 3166,
[SMALL_STATE(95)] = 3195,
[SMALL_STATE(96)] = 3220,
[SMALL_STATE(97)] = 3245,
[SMALL_STATE(98)] = 3274,
[SMALL_STATE(99)] = 3299,
[SMALL_STATE(100)] = 3324,
[SMALL_STATE(101)] = 3353,
[SMALL_STATE(102)] = 3372,
[SMALL_STATE(103)] = 3401,
[SMALL_STATE(104)] = 3426,
[SMALL_STATE(105)] = 3451,
[SMALL_STATE(106)] = 3476,
[SMALL_STATE(107)] = 3505,
[SMALL_STATE(108)] = 3530,
[SMALL_STATE(109)] = 3559,
[SMALL_STATE(110)] = 3576,
[SMALL_STATE(111)] = 3593,
[SMALL_STATE(112)] = 3615,
[SMALL_STATE(113)] = 3637,
[SMALL_STATE(114)] = 3659,
[SMALL_STATE(115)] = 3681,
[SMALL_STATE(116)] = 3707,
[SMALL_STATE(117)] = 3729,
[SMALL_STATE(118)] = 3751,
[SMALL_STATE(119)] = 3773,
[SMALL_STATE(120)] = 3795,
[SMALL_STATE(121)] = 3817,
[SMALL_STATE(122)] = 3839,
[SMALL_STATE(123)] = 3861,
[SMALL_STATE(124)] = 3883,
[SMALL_STATE(125)] = 3907,
[SMALL_STATE(126)] = 3921,
[SMALL_STATE(127)] = 3943,
[SMALL_STATE(128)] = 3965,
[SMALL_STATE(129)] = 3989,
[SMALL_STATE(130)] = 4011,
[SMALL_STATE(131)] = 4033,
[SMALL_STATE(132)] = 4055,
[SMALL_STATE(133)] = 4077,
[SMALL_STATE(134)] = 4090,
[SMALL_STATE(135)] = 4109,
[SMALL_STATE(136)] = 4132,
[SMALL_STATE(137)] = 4151,
[SMALL_STATE(138)] = 4164,
[SMALL_STATE(139)] = 4183,
[SMALL_STATE(140)] = 4206,
[SMALL_STATE(141)] = 4224,
[SMALL_STATE(142)] = 4236,
[SMALL_STATE(143)] = 4248,
[SMALL_STATE(144)] = 4270,
[SMALL_STATE(145)] = 4282,
[SMALL_STATE(146)] = 4294,
[SMALL_STATE(147)] = 4306,
[SMALL_STATE(148)] = 4318,
[SMALL_STATE(149)] = 4330,
[SMALL_STATE(150)] = 4342,
[SMALL_STATE(151)] = 4360,
[SMALL_STATE(152)] = 4372,
[SMALL_STATE(153)] = 4384,
[SMALL_STATE(154)] = 4396,
[SMALL_STATE(155)] = 4412,
[SMALL_STATE(156)] = 4424,
[SMALL_STATE(157)] = 4436,
[SMALL_STATE(158)] = 4448,
[SMALL_STATE(159)] = 4460,
[SMALL_STATE(160)] = 4474,
[SMALL_STATE(161)] = 4486,
[SMALL_STATE(162)] = 4506,
[SMALL_STATE(163)] = 4517,
[SMALL_STATE(164)] = 4534,
[SMALL_STATE(165)] = 4545,
[SMALL_STATE(166)] = 4562,
[SMALL_STATE(167)] = 4579,
[SMALL_STATE(168)] = 4596,
[SMALL_STATE(169)] = 4607,
[SMALL_STATE(170)] = 4624,
[SMALL_STATE(171)] = 4641,
[SMALL_STATE(172)] = 4652,
[SMALL_STATE(173)] = 4669,
[SMALL_STATE(174)] = 4684,
[SMALL_STATE(175)] = 4695,
[SMALL_STATE(176)] = 4710,
[SMALL_STATE(177)] = 4727,
[SMALL_STATE(178)] = 4738,
[SMALL_STATE(179)] = 4755,
[SMALL_STATE(180)] = 4766,
[SMALL_STATE(181)] = 4780,
[SMALL_STATE(182)] = 4794,
[SMALL_STATE(183)] = 4808,
[SMALL_STATE(184)] = 4822,
[SMALL_STATE(185)] = 4836,
[SMALL_STATE(186)] = 4850,
[SMALL_STATE(187)] = 4860,
[SMALL_STATE(188)] = 4874,
[SMALL_STATE(189)] = 4888,
[SMALL_STATE(190)] = 4902,
[SMALL_STATE(191)] = 4912,
[SMALL_STATE(192)] = 4926,
[SMALL_STATE(193)] = 4938,
[SMALL_STATE(194)] = 4948,
[SMALL_STATE(195)] = 4958,
[SMALL_STATE(196)] = 4972,
[SMALL_STATE(197)] = 4986,
[SMALL_STATE(198)] = 5000,
[SMALL_STATE(199)] = 5013,
[SMALL_STATE(200)] = 5026,
[SMALL_STATE(201)] = 5039,
[SMALL_STATE(202)] = 5052,
[SMALL_STATE(203)] = 5065,
[SMALL_STATE(204)] = 5078,
[SMALL_STATE(205)] = 5087,
[SMALL_STATE(206)] = 5100,
[SMALL_STATE(207)] = 5109,
[SMALL_STATE(208)] = 5122,
[SMALL_STATE(209)] = 5131,
[SMALL_STATE(210)] = 5144,
[SMALL_STATE(211)] = 5157,
[SMALL_STATE(212)] = 5166,
[SMALL_STATE(213)] = 5179,
[SMALL_STATE(214)] = 5189,
[SMALL_STATE(215)] = 5199,
[SMALL_STATE(216)] = 5206,
[SMALL_STATE(217)] = 5213,
2022-12-04 00:07:26 +03:00
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2022-12-07 12:09:27 +03:00
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0),
2022-12-07 18:52:19 +03:00
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[21] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[25] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
[27] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66),
[30] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(92),
[33] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(165),
[36] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161),
[39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(211),
[42] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(213),
[45] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3),
[48] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[50] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[54] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[56] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[58] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[60] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(66),
[65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(13),
[68] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2),
[70] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(161),
[73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(211),
[76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(213),
[79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(7),
[82] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[84] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[92] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT_REPEAT(11),
[95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2),
[97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_value_repeat1, 2),
[99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208),
[107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(28),
[112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2),
[114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(208),
[117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(208),
[120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(15),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200),
[161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(157),
[168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(208),
[171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(208),
[174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(41),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(141),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86),
[194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(180),
[201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(141),
[204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__style_attr_block_repeat1, 2),
[206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(187),
[209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(151),
[212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT_REPEAT(34),
[215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(195),
[218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(157),
[221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(191),
[224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(153),
[227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__emptyline, 1), REDUCE(sym__emptyline, 2),
[230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__emptyline, 1), REDUCE(sym__emptyline, 2),
[233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end, 1),
[235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__end, 1),
[237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection, 5),
[239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection, 5),
[241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 5),
[243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 5),
[245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emptyline, 2),
[247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emptyline, 2),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 2),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 2),
[253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 3),
[255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 3),
[257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end, 2),
[259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__end, 2),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 4),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 4),
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection, 3),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection, 3),
[271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(66),
[274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT(213),
[277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape, 6),
[279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape, 6),
[281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(97),
[284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2),
[286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(173),
[289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(140),
[292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(193),
[295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(200),
[298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
[300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[308] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(),
[310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2),
[314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(185),
[317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(177),
[320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(182),
[323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(179),
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__root_attribute, 2, .production_id = 1),
[328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__root_attribute, 2, .production_id = 1),
[330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(196),
[339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(168),
[342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__root_attribute, 4),
[344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__root_attribute, 4),
[346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2),
[350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 2), SHIFT(78),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1),
[355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1), SHIFT(80),
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), SHIFT(197),
[363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 1), SHIFT(76),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(163),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2),
[377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2),
[379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 3),
[383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 3),
[385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 2), SHIFT(197),
[388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_identifier, 2), SHIFT(73),
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 3),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 3),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 3),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 3),
[401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2),
[403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier, 2),
[405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier, 2),
[407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__identifier, 1), REDUCE(sym__identifier, 2),
[410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__identifier, 1), REDUCE(sym__identifier, 2),
[413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_connection_repeat1, 2),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(169),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 2), SHIFT(188),
[427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_identifier, 1), SHIFT(188),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__colon, 2),
[440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__colon, 2),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115),
[448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2),
[460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_repeat1, 2), SHIFT_REPEAT(124),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2),
[493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_value_repeat1, 2), SHIFT_REPEAT(134),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3),
[498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow, 1),
[500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_arrow, 1), SHIFT(150),
[505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 5),
[507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 8),
[509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1),
[511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_value, 1),
[513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inner_style_attribute, 3), REDUCE(sym__inner_style_attribute, 4),
[516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 3),
[518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attribute, 3),
[520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_value, 2),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow, 2),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_arrow, 2), SHIFT(154),
[529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 6),
[531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attribute, 1),
[533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 7),
[535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arrow_repeat1, 2),
[537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arrow_repeat1, 2), SHIFT_REPEAT(154),
[540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attribute, 3),
[542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_style_attribute, 4),
[544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 4),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 2),
[548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_style_attribute, 3),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 7),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 3),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 5),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__connection_attribute, 3),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_arrow, 1), SHIFT(175),
[589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 2),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 6),
[595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 4),
[599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow, 2),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow, 3),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
[619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
[621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
[627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
[631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__connection_attr_key, 1),
[635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2),
[637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(207),
[640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_key, 1),
[642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2),
[644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(209),
[647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2),
[649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat3, 2), SHIFT_REPEAT(210),
[652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attr_key, 1),
[654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_arrow_repeat1, 2), SHIFT_REPEAT(212),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[661] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
2022-12-04 00:07:26 +03:00
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_d2(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
2022-12-04 18:35:50 +03:00
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym__word,
2022-12-04 00:07:26 +03:00
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif