tree-sitter-d2/src/parser.c

7065 lines
184 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
#define STATE_COUNT 216
2022-12-04 00:07:26 +03:00
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 84
2022-12-08 01:15:09 +03:00
#define ALIAS_COUNT 2
2022-12-07 18:52:19 +03:00
#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-08 01:15:09 +03:00
#define PRODUCTION_ID_COUNT 3
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,
aux_sym_arrow_token1 = 30,
aux_sym_arrow_token2 = 31,
aux_sym_arrow_token3 = 32,
aux_sym_arrow_token4 = 33,
2022-12-07 18:52:19 +03:00
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,
2022-12-07 23:14:25 +03:00
sym__root_definition = 48,
2022-12-07 18:52:19 +03:00
sym_connection = 49,
2022-12-07 23:14:25 +03:00
sym__shape_definition = 50,
sym__shape_path = 51,
2022-12-08 01:15:09 +03:00
sym_shape_key = 52,
sym_label = 53,
sym_attr_value = 54,
sym__root_attribute = 55,
sym__shape_block = 56,
sym__shape_block_definition = 57,
sym__shape_attribute = 58,
sym__style_attribute = 59,
sym__style_attr_block = 60,
sym__inner_style_attribute = 61,
sym__connection_attribute = 62,
sym__shape_attr_key = 63,
sym__style_attr_key = 64,
sym__connection_attr_key = 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_definition_repeat1 = 75,
2022-12-07 23:14:25 +03:00
aux_sym__shape_path_repeat1 = 76,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat1 = 77,
aux_sym_shape_key_repeat2 = 78,
aux_sym__shape_block_repeat1 = 79,
aux_sym__style_attr_block_repeat1 = 80,
aux_sym_string_repeat1 = 81,
aux_sym_string_repeat2 = 82,
aux_sym_string_repeat3 = 83,
alias_sym_container_key = 84,
alias_sym_invalid = 85,
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] = ":",
[aux_sym_arrow_token1] = "arrow_token1",
[aux_sym_arrow_token2] = "arrow_token2",
[aux_sym_arrow_token3] = "arrow_token3",
[aux_sym_arrow_token4] = "arrow_token4",
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",
2022-12-07 23:14:25 +03:00
[sym__root_definition] = "_root_definition",
2022-12-04 00:07:26 +03:00
[sym_connection] = "connection",
2022-12-07 23:14:25 +03:00
[sym__shape_definition] = "_shape_definition",
[sym__shape_path] = "_shape_path",
2022-12-08 01:15:09 +03:00
[sym_shape_key] = "shape_key",
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-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-08 01:15:09 +03:00
[aux_sym__shape_definition_repeat1] = "_shape_definition_repeat1",
2022-12-07 23:14:25 +03:00
[aux_sym__shape_path_repeat1] = "_shape_path_repeat1",
[aux_sym_shape_key_repeat1] = "shape_key_repeat1",
[aux_sym_shape_key_repeat2] = "shape_key_repeat2",
2022-12-08 01:15:09 +03:00
[aux_sym__shape_block_repeat1] = "_shape_block_repeat1",
[aux_sym__style_attr_block_repeat1] = "_style_attr_block_repeat1",
2022-12-04 00:07:26 +03:00
[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-08 01:15:09 +03:00
[alias_sym_container_key] = "container_key",
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,
[aux_sym_arrow_token1] = aux_sym_arrow_token1,
[aux_sym_arrow_token2] = aux_sym_arrow_token2,
[aux_sym_arrow_token3] = aux_sym_arrow_token3,
[aux_sym_arrow_token4] = aux_sym_arrow_token4,
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,
2022-12-07 23:14:25 +03:00
[sym__root_definition] = sym__root_definition,
2022-12-04 00:07:26 +03:00
[sym_connection] = sym_connection,
2022-12-07 23:14:25 +03:00
[sym__shape_definition] = sym__shape_definition,
[sym__shape_path] = sym__shape_path,
2022-12-08 01:15:09 +03:00
[sym_shape_key] = sym_shape_key,
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-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-08 01:15:09 +03:00
[aux_sym__shape_definition_repeat1] = aux_sym__shape_definition_repeat1,
2022-12-07 23:14:25 +03:00
[aux_sym__shape_path_repeat1] = aux_sym__shape_path_repeat1,
[aux_sym_shape_key_repeat1] = aux_sym_shape_key_repeat1,
[aux_sym_shape_key_repeat2] = aux_sym_shape_key_repeat2,
2022-12-08 01:15:09 +03:00
[aux_sym__shape_block_repeat1] = aux_sym__shape_block_repeat1,
[aux_sym__style_attr_block_repeat1] = aux_sym__style_attr_block_repeat1,
2022-12-04 00:07:26 +03:00
[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-08 01:15:09 +03:00
[alias_sym_container_key] = alias_sym_container_key,
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,
},
[aux_sym_arrow_token1] = {
.visible = false,
2022-12-04 00:07:26 +03:00
.named = false,
},
[aux_sym_arrow_token2] = {
.visible = false,
2022-12-04 00:07:26 +03:00
.named = false,
},
[aux_sym_arrow_token3] = {
.visible = false,
2022-12-04 00:07:26 +03:00
.named = false,
},
[aux_sym_arrow_token4] = {
.visible = false,
2022-12-04 00:07:26 +03:00
.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,
},
2022-12-07 23:14:25 +03:00
[sym__root_definition] = {
2022-12-04 00:07:26 +03:00
.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-07 23:14:25 +03:00
[sym__shape_definition] = {
.visible = false,
.named = true,
},
[sym__shape_path] = {
.visible = false,
2022-12-04 18:35:50 +03:00
.named = true,
},
2022-12-08 01:15:09 +03:00
[sym_shape_key] = {
.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-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-08 01:15:09 +03:00
[aux_sym__shape_definition_repeat1] = {
2022-12-04 03:21:42 +03:00
.visible = false,
.named = false,
},
2022-12-08 01:15:09 +03:00
[aux_sym__shape_path_repeat1] = {
2022-12-04 03:36:46 +03:00
.visible = false,
.named = false,
},
2022-12-08 01:15:09 +03:00
[aux_sym_shape_key_repeat1] = {
2022-12-06 11:57:59 +03:00
.visible = false,
.named = false,
},
2022-12-08 01:15:09 +03:00
[aux_sym_shape_key_repeat2] = {
2022-12-04 18:35:37 +03:00
.visible = false,
.named = false,
},
2022-12-08 01:15:09 +03:00
[aux_sym__shape_block_repeat1] = {
2022-12-07 23:14:25 +03:00
.visible = false,
.named = false,
},
2022-12-08 01:15:09 +03:00
[aux_sym__style_attr_block_repeat1] = {
2022-12-04 18:35:37 +03:00
.visible = false,
.named = false,
},
2022-12-04 00:07:26 +03:00
[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-08 01:15:09 +03:00
[alias_sym_container_key] = {
.visible = true,
.named = true,
},
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] = {
2022-12-08 01:15:09 +03:00
[0] = alias_sym_container_key,
},
[2] = {
2022-12-07 18:52:19 +03:00
[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-08 01:15:09 +03:00
sym_shape_key, 2,
sym_shape_key,
alias_sym_container_key,
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,
[22] = 13,
[23] = 23,
2022-12-08 01:15:09 +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 23:14:25 +03:00
[34] = 34,
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 23:14:25 +03:00
[47] = 47,
2022-12-06 12:32:50 +03:00
[48] = 48,
2022-12-07 23:14:25 +03:00
[49] = 49,
2022-12-06 12:40:18 +03:00
[50] = 50,
2022-12-06 12:32:50 +03:00
[51] = 51,
2022-12-08 01:15:09 +03:00
[52] = 52,
[53] = 30,
[54] = 40,
2022-12-07 18:52:19 +03:00
[55] = 55,
2022-12-08 01:15:09 +03:00
[56] = 36,
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 23:14:25 +03:00
[82] = 82,
[83] = 83,
[84] = 84,
[85] = 85,
2022-12-08 01:15:09 +03:00
[86] = 13,
2022-12-07 23:14:25 +03:00
[87] = 87,
2022-12-06 12:40:18 +03:00
[88] = 88,
2022-12-07 18:52:19 +03:00
[89] = 89,
2022-12-07 23:14:25 +03:00
[90] = 90,
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 23:14:25 +03:00
[109] = 109,
[110] = 110,
2022-12-07 18:52:19 +03:00
[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-08 01:15:09 +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,
2022-12-08 01:15:09 +03:00
[132] = 132,
2022-12-07 18:52:19 +03:00
[133] = 133,
[134] = 133,
2022-12-06 11:57:59 +03:00
[135] = 135,
2022-12-06 12:40:18 +03:00
[136] = 136,
[137] = 13,
[138] = 138,
2022-12-07 23:14:25 +03:00
[139] = 139,
[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,
[146] = 62,
2022-12-06 11:57:59 +03:00
[147] = 147,
[148] = 148,
[149] = 91,
2022-12-06 11:57:59 +03:00
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 65,
[154] = 64,
2022-12-06 11:57:59 +03:00
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
2022-12-07 23:14:25 +03:00
[159] = 159,
2022-12-06 11:57:59 +03:00
[160] = 160,
2022-12-06 12:40:18 +03:00
[161] = 161,
[162] = 70,
[163] = 68,
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 23:14:25 +03:00
[169] = 169,
[170] = 69,
2022-12-08 01:15:09 +03:00
[171] = 171,
2022-12-06 12:32:50 +03:00
[172] = 172,
[173] = 173,
2022-12-08 01:15:09 +03:00
[174] = 174,
2022-12-06 12:32:50 +03:00
[175] = 175,
[176] = 176,
[177] = 177,
2022-12-06 12:32:50 +03:00
[178] = 178,
2022-12-07 18:52:19 +03:00
[179] = 179,
[180] = 91,
2022-12-06 12:32:50 +03:00
[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,
2022-12-06 12:32:50 +03:00
[186] = 186,
[187] = 187,
[188] = 187,
[189] = 71,
2022-12-06 12:32:50 +03:00
[190] = 190,
[191] = 191,
[192] = 74,
[193] = 193,
2022-12-06 12:32:50 +03:00
[194] = 194,
[195] = 195,
2022-12-08 01:15:09 +03:00
[196] = 196,
[197] = 197,
2022-12-06 12:40:18 +03:00
[198] = 198,
2022-12-06 12:32:50 +03:00
[199] = 199,
2022-12-08 01:15:09 +03:00
[200] = 200,
[201] = 201,
[202] = 91,
2022-12-08 01:15:09 +03:00
[203] = 203,
[204] = 204,
[205] = 201,
[206] = 206,
2022-12-08 01:15:09 +03:00
[207] = 207,
[208] = 208,
[209] = 209,
[210] = 204,
[211] = 211,
[212] = 211,
2022-12-08 01:15:09 +03:00
[213] = 213,
[214] = 213,
2022-12-08 01:15:09 +03:00
[215] = 215,
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);
if (lookahead == 0) ADVANCE(192);
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(191);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(153);
if (lookahead == '\'') ADVANCE(144);
2022-12-07 18:52:19 +03:00
if (lookahead == '-') ADVANCE(140);
if (lookahead == '.') ADVANCE(141);
if (lookahead == '3') ADVANCE(158);
2022-12-07 18:52:19 +03:00
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(194);
2022-12-07 12:09:27 +03:00
if (lookahead == '<') ADVANCE(10);
if (lookahead == '`') ADVANCE(150);
if (lookahead == 'a') ADVANCE(178);
if (lookahead == 'f') ADVANCE(165);
if (lookahead == 'l') ADVANCE(167);
if (lookahead == 'm') ADVANCE(187);
if (lookahead == 'o') ADVANCE(181);
if (lookahead == 's') ADVANCE(164);
2022-12-07 18:52:19 +03:00
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') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 00:07:26 +03:00
END_STATE();
case 1:
if (lookahead == 0) ADVANCE(192);
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(191);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
if (lookahead == '#') ADVANCE(153);
2022-12-07 18:52:19 +03:00
if (lookahead == '-') ADVANCE(140);
if (lookahead == '.') ADVANCE(141);
2022-12-07 18:52:19 +03:00
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(194);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 00:07:26 +03:00
END_STATE();
case 2:
if (lookahead == 0) ADVANCE(192);
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(191);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
if (lookahead == '#') ADVANCE(153);
if (lookahead == '-') ADVANCE(9);
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(194);
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:
if (lookahead == 0) ADVANCE(193);
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(109);
if (lookahead == '\n') ADVANCE(191);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(107);
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(142);
if (lookahead == '\'') ADVANCE(144);
if (lookahead == ';') ADVANCE(194);
if (lookahead == '`') ADVANCE(150);
2022-12-07 18:52:19 +03:00
if (lookahead == '{') ADVANCE(110);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
lookahead != '}') ADVANCE(143);
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);
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(142);
if (lookahead == '\'') ADVANCE(144);
if (lookahead == '`') ADVANCE(150);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
2022-12-06 11:57:59 +03:00
lookahead != '\n' &&
lookahead != ';' &&
lookahead != '{' &&
lookahead != '}') ADVANCE(143);
2022-12-04 00:07:26 +03:00
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(142);
if (lookahead == '\'') ADVANCE(144);
if (lookahead == '`') ADVANCE(150);
2022-12-05 11:36:14 +03:00
if (lookahead != 0 &&
2022-12-06 12:32:50 +03:00
lookahead != '\n' &&
lookahead != ';' &&
lookahead != '{' &&
lookahead != '}') ADVANCE(143);
2022-12-04 00:07:26 +03:00
END_STATE();
case 6:
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(148);
2022-12-06 11:57:59 +03:00
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(149);
2022-12-04 00:07:26 +03:00
END_STATE();
case 7:
if (lookahead == '#') ADVANCE(145);
if (lookahead == '\'') ADVANCE(144);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(146);
2022-12-04 00:07:26 +03:00
END_STATE();
case 8:
if (lookahead == '#') ADVANCE(151);
if (lookahead == '`') ADVANCE(150);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(152);
2022-12-04 00:07:26 +03:00
END_STATE();
case 9:
if (lookahead == '-') ADVANCE(136);
if (lookahead == '>') ADVANCE(135);
2022-12-04 00:07:26 +03:00
END_STATE();
case 10:
if (lookahead == '-') ADVANCE(137);
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);
if (lookahead == 0) ADVANCE(192);
2022-12-07 18:52:19 +03:00
if (lookahead == '\t') ADVANCE(108);
if (lookahead == '\n') ADVANCE(191);
2022-12-06 12:32:50 +03:00
if (lookahead == ' ') ADVANCE(106);
if (lookahead == '"') ADVANCE(147);
if (lookahead == '#') ADVANCE(153);
if (lookahead == '\'') ADVANCE(144);
2022-12-07 18:52:19 +03:00
if (lookahead == '-') ADVANCE(139);
if (lookahead == '.') ADVANCE(141);
2022-12-07 18:52:19 +03:00
if (lookahead == ':') ADVANCE(134);
if (lookahead == ';') ADVANCE(194);
if (lookahead == '`') ADVANCE(150);
2022-12-07 18:52:19 +03:00
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 && lookahead <= 'z')) ADVANCE(190);
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 != '{' &&
lookahead != '}') ADVANCE(143);
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(143);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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:
ACCEPT_TOKEN(aux_sym_arrow_token1);
END_STATE();
2022-12-07 18:52:19 +03:00
case 136:
ACCEPT_TOKEN(aux_sym_arrow_token2);
if (lookahead == '-') ADVANCE(136);
if (lookahead == '>') ADVANCE(135);
END_STATE();
2022-12-07 18:52:19 +03:00
case 137:
ACCEPT_TOKEN(aux_sym_arrow_token3);
if (lookahead == '-') ADVANCE(137);
if (lookahead == '>') ADVANCE(138);
END_STATE();
2022-12-07 18:52:19 +03:00
case 138:
ACCEPT_TOKEN(aux_sym_arrow_token4);
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);
if (lookahead == '-') ADVANCE(136);
if (lookahead == '>') ADVANCE(135);
END_STATE();
2022-12-07 18:52:19 +03:00
case 141:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(sym_dot);
END_STATE();
case 142:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__unquoted_string);
if (lookahead == '"' ||
lookahead == '\'' ||
lookahead == ';' ||
lookahead == '`' ||
lookahead == '{' ||
lookahead == '}') ADVANCE(153);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(142);
2022-12-07 12:09:27 +03:00
END_STATE();
case 143:
ACCEPT_TOKEN(sym__unquoted_string);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
2022-12-06 11:57:59 +03:00
lookahead != '{' &&
lookahead != '}') ADVANCE(143);
END_STATE();
case 144:
ACCEPT_TOKEN(anon_sym_SQUOTE);
END_STATE();
case 145:
ACCEPT_TOKEN(aux_sym_string_token1);
if (lookahead == '\'') ADVANCE(153);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(145);
END_STATE();
case 146:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token1);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '\'') ADVANCE(146);
END_STATE();
case 147:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
case 148:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token2);
if (lookahead == '"') ADVANCE(153);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(148);
2022-12-04 23:45:53 +03:00
END_STATE();
case 149:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token2);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"') ADVANCE(149);
2022-12-04 23:45:53 +03:00
END_STATE();
case 150:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(anon_sym_BQUOTE);
2022-12-04 23:45:53 +03:00
END_STATE();
case 151:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token3);
if (lookahead == '`') ADVANCE(153);
2022-12-07 12:09:27 +03:00
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(151);
2022-12-04 23:45:53 +03:00
END_STATE();
case 152:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(aux_sym_string_token3);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '`') ADVANCE(152);
2022-12-04 23:45:53 +03:00
END_STATE();
case 153:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym_line_comment);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(153);
END_STATE();
case 154:
ACCEPT_TOKEN(sym__word);
if (lookahead == 'a') ADVANCE(157);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 155:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'a') ADVANCE(160);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 156:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'a') ADVANCE(185);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 157:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'c') ADVANCE(169);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 158:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'd') ADVANCE(129);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 159:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'd') ADVANCE(127);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 160:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'd') ADVANCE(179);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 161:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'e') ADVANCE(117);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 162:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'e') ADVANCE(125);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 163:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'e') ADVANCE(159);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 164:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'h') ADVANCE(155);
if (lookahead == 't') ADVANCE(183);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 165:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'i') ADVANCE(174);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 166:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'i') ADVANCE(176);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 168:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'i') ADVANCE(182);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 169:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'i') ADVANCE(184);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 170:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'k') ADVANCE(131);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 171:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'k') ADVANCE(161);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 172:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'l') ADVANCE(186);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 173:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'l') ADVANCE(115);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 174:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'l') ADVANCE(173);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 175:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'l') ADVANCE(162);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 176:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'm') ADVANCE(156);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 177:
2022-12-04 23:45:53 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'n') ADVANCE(170);
2022-12-04 23:45:53 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 178:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'n') ADVANCE(166);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 179:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'o') ADVANCE(188);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-04 23:45:53 +03:00
END_STATE();
case 180:
2022-12-05 00:26:24 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'o') ADVANCE(171);
2022-12-05 00:26:24 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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);
if (lookahead == 'p') ADVANCE(154);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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);
if (lookahead == 'p') ADVANCE(175);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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);
if (lookahead == 'r') ADVANCE(180);
2022-12-06 11:57:59 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-06 11:57:59 +03:00
END_STATE();
case 184:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 't') ADVANCE(189);
2022-12-06 12:32:50 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-06 11:57:59 +03:00
END_STATE();
case 185:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 't') ADVANCE(163);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-06 11:57:59 +03:00
END_STATE();
case 186:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 't') ADVANCE(168);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-06 12:32:50 +03:00
END_STATE();
case 187:
2022-12-07 12:09:27 +03:00
ACCEPT_TOKEN(sym__word);
if (lookahead == 'u') ADVANCE(172);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-07 12:09:27 +03:00
END_STATE();
case 188:
ACCEPT_TOKEN(sym__word);
if (lookahead == 'w') ADVANCE(123);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-07 12:09:27 +03:00
END_STATE();
case 189:
ACCEPT_TOKEN(sym__word);
if (lookahead == 'y') ADVANCE(113);
2022-12-07 12:09:27 +03:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
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 (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(190);
2022-12-07 12:09:27 +03:00
END_STATE();
case 191:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_LF);
END_STATE();
case 192:
2022-12-07 18:52:19 +03:00
ACCEPT_TOKEN(anon_sym_2);
END_STATE();
case 193:
2022-12-06 12:32:50 +03:00
ACCEPT_TOKEN(anon_sym_2);
if (lookahead != 0 &&
lookahead != '\n' &&
lookahead != '"' &&
lookahead != '\'' &&
lookahead != ';' &&
lookahead != '`' &&
lookahead != '{' &&
lookahead != '}') ADVANCE(143);
2022-12-06 12:32:50 +03:00
END_STATE();
case 194:
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-07 23:14:25 +03:00
[11] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[12] = {.lex_state = 104},
2022-12-07 23:14:25 +03:00
[13] = {.lex_state = 2},
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 23:14:25 +03:00
[22] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[23] = {.lex_state = 104},
[24] = {.lex_state = 2},
[25] = {.lex_state = 2},
[26] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[27] = {.lex_state = 104},
2022-12-07 23:14:25 +03:00
[28] = {.lex_state = 104},
[29] = {.lex_state = 2},
2022-12-08 01:15:09 +03:00
[30] = {.lex_state = 104},
[31] = {.lex_state = 104},
[32] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[33] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[34] = {.lex_state = 104},
[35] = {.lex_state = 2},
2022-12-07 23:14:25 +03:00
[36] = {.lex_state = 104},
[37] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[38] = {.lex_state = 2},
[39] = {.lex_state = 2},
[40] = {.lex_state = 104},
[41] = {.lex_state = 2},
[42] = {.lex_state = 104},
[43] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[44] = {.lex_state = 104},
[45] = {.lex_state = 2},
[46] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[47] = {.lex_state = 104},
[48] = {.lex_state = 2},
[49] = {.lex_state = 2},
2022-12-06 12:40:18 +03:00
[50] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[51] = {.lex_state = 104},
[52] = {.lex_state = 2},
2022-12-07 23:14:25 +03:00
[53] = {.lex_state = 2},
[54] = {.lex_state = 2},
2022-12-07 18:52:19 +03:00
[55] = {.lex_state = 2},
2022-12-07 23:14:25 +03:00
[56] = {.lex_state = 2},
2022-12-08 01:15:09 +03:00
[57] = {.lex_state = 2},
[58] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[59] = {.lex_state = 3},
[60] = {.lex_state = 2},
[61] = {.lex_state = 0},
[62] = {.lex_state = 1},
2022-12-07 18:52:19 +03:00
[63] = {.lex_state = 104},
[64] = {.lex_state = 1},
[65] = {.lex_state = 1},
[66] = {.lex_state = 0},
[67] = {.lex_state = 3},
[68] = {.lex_state = 0},
[69] = {.lex_state = 1},
2022-12-07 18:52:19 +03:00
[70] = {.lex_state = 0},
[71] = {.lex_state = 1},
2022-12-07 23:14:25 +03:00
[72] = {.lex_state = 0},
[73] = {.lex_state = 0},
[74] = {.lex_state = 1},
2022-12-08 01:15:09 +03:00
[75] = {.lex_state = 0},
[76] = {.lex_state = 0},
[77] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[78] = {.lex_state = 0},
[79] = {.lex_state = 104},
[80] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[81] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[82] = {.lex_state = 0},
[83] = {.lex_state = 0},
[84] = {.lex_state = 104},
[85] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[86] = {.lex_state = 3},
2022-12-07 23:14:25 +03:00
[87] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[88] = {.lex_state = 0},
[89] = {.lex_state = 0},
[90] = {.lex_state = 104},
[91] = {.lex_state = 3},
[92] = {.lex_state = 104},
2022-12-07 23:14:25 +03:00
[93] = {.lex_state = 0},
[94] = {.lex_state = 4},
[95] = {.lex_state = 0},
[96] = {.lex_state = 4},
2022-12-07 23:14:25 +03:00
[97] = {.lex_state = 4},
[98] = {.lex_state = 104},
[99] = {.lex_state = 4},
2022-12-07 23:14:25 +03:00
[100] = {.lex_state = 104},
[101] = {.lex_state = 0},
[102] = {.lex_state = 4},
[103] = {.lex_state = 4},
[104] = {.lex_state = 0},
[105] = {.lex_state = 0},
[106] = {.lex_state = 104},
[107] = {.lex_state = 0},
[108] = {.lex_state = 0},
[109] = {.lex_state = 0},
[110] = {.lex_state = 0},
[111] = {.lex_state = 0},
[112] = {.lex_state = 104},
2022-12-06 11:57:59 +03:00
[113] = {.lex_state = 0},
[114] = {.lex_state = 104},
2022-12-07 23:14:25 +03:00
[115] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[116] = {.lex_state = 0},
[117] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[118] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[119] = {.lex_state = 104},
2022-12-06 11:57:59 +03:00
[120] = {.lex_state = 0},
[121] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[122] = {.lex_state = 0},
[123] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[124] = {.lex_state = 0},
[125] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[126] = {.lex_state = 0},
[127] = {.lex_state = 0},
[128] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[129] = {.lex_state = 0},
[130] = {.lex_state = 0},
[131] = {.lex_state = 0},
[132] = {.lex_state = 4},
2022-12-08 01:15:09 +03:00
[133] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[134] = {.lex_state = 0},
[135] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[136] = {.lex_state = 104},
[137] = {.lex_state = 4},
[138] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[139] = {.lex_state = 0},
[140] = {.lex_state = 0},
[141] = {.lex_state = 0},
[142] = {.lex_state = 0},
[143] = {.lex_state = 0},
[144] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[145] = {.lex_state = 0},
[146] = {.lex_state = 104},
[147] = {.lex_state = 5},
2022-12-08 01:15:09 +03:00
[148] = {.lex_state = 0},
[149] = {.lex_state = 4},
[150] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[151] = {.lex_state = 0},
[152] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[153] = {.lex_state = 104},
[154] = {.lex_state = 104},
2022-12-07 18:52:19 +03:00
[155] = {.lex_state = 0},
[156] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[157] = {.lex_state = 0},
[158] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[159] = {.lex_state = 0},
2022-12-06 11:57:59 +03:00
[160] = {.lex_state = 0},
2022-12-06 12:40:18 +03:00
[161] = {.lex_state = 0},
[162] = {.lex_state = 104},
[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-08 01:15:09 +03:00
[167] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[168] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[169] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[170] = {.lex_state = 104},
[171] = {.lex_state = 0},
2022-12-07 18:52:19 +03:00
[172] = {.lex_state = 0},
[173] = {.lex_state = 0},
2022-12-06 12:32:50 +03:00
[174] = {.lex_state = 0},
2022-12-07 23:14:25 +03:00
[175] = {.lex_state = 0},
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},
[180] = {.lex_state = 5},
2022-12-08 01:15:09 +03:00
[181] = {.lex_state = 0},
[182] = {.lex_state = 0},
[183] = {.lex_state = 2},
2022-12-07 23:14:25 +03:00
[184] = {.lex_state = 0},
[185] = {.lex_state = 0},
2022-12-08 01:15:09 +03:00
[186] = {.lex_state = 0},
[187] = {.lex_state = 0},
[188] = {.lex_state = 0},
[189] = {.lex_state = 104},
2022-12-07 23:14:25 +03:00
[190] = {.lex_state = 0},
[191] = {.lex_state = 0},
[192] = {.lex_state = 104},
[193] = {.lex_state = 7},
2022-12-08 01:15:09 +03:00
[194] = {.lex_state = 0},
[195] = {.lex_state = 8},
[196] = {.lex_state = 6},
[197] = {.lex_state = 8},
[198] = {.lex_state = 8},
[199] = {.lex_state = 6},
[200] = {.lex_state = 7},
[201] = {.lex_state = 104},
[202] = {.lex_state = 0},
[203] = {.lex_state = 6},
2022-12-08 01:15:09 +03:00
[204] = {.lex_state = 104},
[205] = {.lex_state = 104},
[206] = {.lex_state = 0},
[207] = {.lex_state = 0},
[208] = {.lex_state = 7},
2022-12-08 01:15:09 +03:00
[209] = {.lex_state = 104},
[210] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[211] = {.lex_state = 104},
[212] = {.lex_state = 104},
[213] = {.lex_state = 104},
[214] = {.lex_state = 104},
2022-12-08 01:15:09 +03:00
[215] = {.lex_state = 0},
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),
[aux_sym_arrow_token1] = ACTIONS(1),
[aux_sym_arrow_token2] = ACTIONS(1),
[aux_sym_arrow_token3] = ACTIONS(1),
[aux_sym_arrow_token4] = 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] = {
[sym_source_file] = STATE(215),
2022-12-07 23:14:25 +03:00
[sym__root_definition] = STATE(3),
[sym_connection] = STATE(3),
[sym__shape_definition] = STATE(3),
[sym__shape_path] = STATE(32),
[sym_shape_key] = STATE(76),
2022-12-07 23:14:25 +03:00
[sym__root_attribute] = STATE(3),
[sym__shape_attribute] = STATE(124),
[sym__style_attribute] = STATE(139),
[sym__shape_attr_key] = STATE(176),
[sym_string] = STATE(83),
2022-12-07 23:14:25 +03:00
[sym__emptyline] = STATE(3),
[sym__eof] = STATE(3),
[aux_sym_source_file_repeat1] = STATE(3),
2022-12-08 01:15:09 +03:00
[aux_sym__shape_definition_repeat1] = STATE(63),
[aux_sym__shape_path_repeat1] = STATE(100),
[aux_sym_shape_key_repeat2] = 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 23:14:25 +03:00
[anon_sym_SQUOTE] = ACTIONS(19),
[anon_sym_DQUOTE] = ACTIONS(21),
[anon_sym_BQUOTE] = ACTIONS(23),
2022-12-07 12:09:27 +03:00
[sym_line_comment] = ACTIONS(3),
2022-12-07 23:14:25 +03:00
[anon_sym_LF] = ACTIONS(25),
[anon_sym_2] = ACTIONS(25),
2022-12-04 00:07:26 +03:00
},
};
static const uint16_t ts_small_parse_table[] = {
2022-12-08 01:15:09 +03:00
[0] = 22,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(27), 1,
ts_builtin_sym_end,
ACTIONS(29), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 23:14:25 +03:00
ACTIONS(35), 1,
2022-12-07 18:52:19 +03:00
sym__root_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(38), 1,
2022-12-07 18:52:19 +03:00
anon_sym_style,
2022-12-07 23:14:25 +03:00
ACTIONS(44), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(47), 1,
anon_sym_SQUOTE,
ACTIONS(50), 1,
anon_sym_DQUOTE,
ACTIONS(53), 1,
anon_sym_BQUOTE,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(63), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(124), 1,
2022-12-07 18:52:19 +03:00
sym__shape_attribute,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(32), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(56), 2,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +03:00
ACTIONS(41), 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 23:14:25 +03:00
STATE(2), 7,
sym__root_definition,
2022-12-07 18:52:19 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-07 18:52:19 +03:00
sym__root_attribute,
sym__emptyline,
sym__eof,
aux_sym_source_file_repeat1,
2022-12-08 01:15:09 +03:00
[80] = 22,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 23:14:25 +03:00
ACTIONS(11), 1,
2022-12-07 18:52:19 +03:00
sym__root_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(13), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
2022-12-07 23:14:25 +03:00
ACTIONS(17), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(59), 1,
ts_builtin_sym_end,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(63), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(124), 1,
2022-12-07 18:52:19 +03:00
sym__shape_attribute,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(9), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(61), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +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 23:14:25 +03:00
STATE(2), 7,
sym__root_definition,
2022-12-07 18:52:19 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-07 18:52:19 +03:00
sym__root_attribute,
sym__emptyline,
sym__eof,
aux_sym_source_file_repeat1,
2022-12-08 01:15:09 +03:00
[160] = 21,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-08 01:15:09 +03:00
ACTIONS(13), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
2022-12-08 01:15:09 +03:00
ACTIONS(17), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-08 01:15:09 +03:00
ACTIONS(19), 1,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
2022-12-08 01:15:09 +03:00
ACTIONS(21), 1,
2022-12-07 23:14:25 +03:00
anon_sym_DQUOTE,
2022-12-08 01:15:09 +03:00
ACTIONS(23), 1,
2022-12-07 23:14:25 +03:00
anon_sym_BQUOTE,
2022-12-08 01:15:09 +03:00
ACTIONS(65), 1,
anon_sym_RBRACE,
STATE(10), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-08 01:15:09 +03:00
ACTIONS(63), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
ACTIONS(67), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
STATE(8), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
STATE(95), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
sym__shape_block_definition,
sym__shape_attribute,
2022-12-08 01:15:09 +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-08 01:15:09 +03:00
[236] = 21,
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,
ACTIONS(13), 1,
2022-12-06 12:32:50 +03:00
anon_sym_style,
ACTIONS(17), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
ACTIONS(19), 1,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
ACTIONS(21), 1,
2022-12-07 23:14:25 +03:00
anon_sym_DQUOTE,
ACTIONS(23), 1,
2022-12-07 23:14:25 +03:00
anon_sym_BQUOTE,
ACTIONS(71), 1,
anon_sym_RBRACE,
STATE(11), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
ACTIONS(67), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(69), 2,
anon_sym_,
anon_sym_TAB,
STATE(8), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
STATE(107), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
sym__shape_block_definition,
sym__shape_attribute,
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-08 01:15:09 +03:00
[312] = 21,
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,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(75), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-08 01:15:09 +03:00
STATE(9), 1,
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
ACTIONS(73), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(77), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +03:00
STATE(5), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
STATE(104), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
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-08 01:15:09 +03:00
[388] = 21,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(7), 1,
2022-12-06 12:32:50 +03:00
sym__word,
2022-12-07 23:14:25 +03:00
ACTIONS(13), 1,
2022-12-07 18:52:19 +03:00
anon_sym_style,
2022-12-07 23:14:25 +03:00
ACTIONS(17), 1,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(71), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
2022-12-08 01:15:09 +03:00
STATE(11), 1,
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
ACTIONS(69), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(79), 2,
anon_sym_LF,
anon_sym_2,
STATE(4), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
STATE(107), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
sym__shape_block_definition,
sym__shape_attribute,
2022-12-07 23:14:25 +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-08 01:15:09 +03:00
[464] = 21,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(81), 1,
2022-12-06 12:32:50 +03:00
sym__word,
ACTIONS(87), 1,
anon_sym_RBRACE,
ACTIONS(89), 1,
2022-12-07 18:52:19 +03:00
anon_sym_style,
ACTIONS(95), 1,
2022-12-06 12:32:50 +03:00
sym__dash,
ACTIONS(98), 1,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
ACTIONS(101), 1,
2022-12-07 23:14:25 +03:00
anon_sym_DQUOTE,
ACTIONS(104), 1,
2022-12-07 23:14:25 +03:00
anon_sym_BQUOTE,
STATE(12), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(76), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(100), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
ACTIONS(84), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(107), 2,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
STATE(8), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
aux_sym__shape_block_repeat1,
STATE(126), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
sym__shape_block_definition,
sym__shape_attribute,
ACTIONS(92), 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-08 01:15:09 +03:00
[540] = 21,
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 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(71), 1,
2022-12-07 18:52:19 +03:00
anon_sym_RBRACE,
STATE(23), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(40), 1,
2022-12-07 18:52:19 +03:00
sym__eof,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(73), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(106), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-06 12:32:50 +03:00
sym__shape_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(110), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(112), 2,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
STATE(117), 4,
2022-12-07 18:52:19 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-07 18:52:19 +03:00
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,
2022-12-08 01:15:09 +03:00
[614] = 21,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
sym__word,
ACTIONS(13), 1,
anon_sym_style,
ACTIONS(17), 1,
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(114), 1,
2022-12-07 18:52:19 +03:00
anon_sym_RBRACE,
STATE(23), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(40), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(73), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(106), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-07 18:52:19 +03:00
sym__shape_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(110), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(112), 2,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
STATE(117), 4,
2022-12-06 12:32:50 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-06 12:32:50 +03:00
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-08 01:15:09 +03:00
[688] = 21,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(7), 1,
sym__word,
ACTIONS(13), 1,
anon_sym_style,
ACTIONS(17), 1,
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(65), 1,
2022-12-07 18:52:19 +03:00
anon_sym_RBRACE,
STATE(23), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(40), 1,
2022-12-07 18:52:19 +03:00
sym__eof,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(73), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(106), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 18:52:19 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-07 18:52:19 +03:00
sym__shape_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(110), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(112), 2,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
STATE(117), 4,
2022-12-07 18:52:19 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-07 18:52:19 +03:00
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,
2022-12-08 01:15:09 +03:00
[762] = 20,
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,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
STATE(23), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(32), 1,
2022-12-07 23:14:25 +03:00
sym__shape_path,
STATE(40), 1,
2022-12-07 18:52:19 +03:00
sym__eof,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(73), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(106), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
STATE(139), 1,
2022-12-07 23:14:25 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-07 23:14:25 +03:00
sym__shape_attr_key,
ACTIONS(110), 2,
2022-12-07 12:09:27 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(112), 2,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
STATE(117), 4,
2022-12-07 18:52:19 +03:00
sym_connection,
2022-12-07 23:14:25 +03:00
sym__shape_definition,
2022-12-07 18:52:19 +03:00
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,
2022-12-08 01:15:09 +03:00
[833] = 5,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(116), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(121), 3,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(119), 19,
2022-12-07 23:14:25 +03:00
anon_sym_LBRACE,
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_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
2022-12-08 01:15:09 +03:00
[870] = 11,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(125), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
2022-12-07 23:14:25 +03:00
ACTIONS(129), 1,
2022-12-06 11:57:59 +03:00
anon_sym_stroke,
STATE(35), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(55), 1,
sym__eof,
STATE(101), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(175), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(123), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(131), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
STATE(17), 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 23:14:25 +03:00
ACTIONS(127), 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-08 01:15:09 +03:00
[917] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(125), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
ACTIONS(129), 1,
2022-12-08 01:15:09 +03:00
anon_sym_stroke,
STATE(38), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(101), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-07 23:14:25 +03:00
ACTIONS(133), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(135), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
STATE(16), 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,
ACTIONS(127), 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-08 01:15:09 +03:00
[962] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(140), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
ACTIONS(145), 1,
anon_sym_stroke,
STATE(39), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(121), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
ACTIONS(137), 2,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(148), 2,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
STATE(16), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-07 23:14:25 +03:00
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
ACTIONS(142), 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-08 01:15:09 +03:00
[1007] = 10,
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-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(153), 1,
anon_sym_RBRACE,
STATE(29), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(93), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
ACTIONS(135), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(151), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
STATE(16), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-08 01:15:09 +03:00
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(127), 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-08 01:15:09 +03:00
[1052] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(125), 1,
anon_sym_RBRACE,
2022-12-07 18:52:19 +03:00
ACTIONS(129), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
STATE(19), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(101), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-08 01:15:09 +03:00
ACTIONS(155), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(157), 2,
anon_sym_LF,
anon_sym_2,
STATE(17), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-07 23:14:25 +03:00
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(127), 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,
[1097] = 11,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(129), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
ACTIONS(153), 1,
anon_sym_RBRACE,
STATE(24), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(55), 1,
sym__eof,
STATE(93), 1,
2022-12-06 12:40:18 +03:00
sym__inner_style_attribute,
STATE(175), 1,
2022-12-06 12:40:18 +03:00
sym__style_attr_key,
ACTIONS(131), 2,
anon_sym_LF,
anon_sym_2,
2022-12-08 01:15:09 +03:00
ACTIONS(159), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
STATE(21), 2,
2022-12-06 12:40:18 +03:00
sym__emptyline,
aux_sym__style_attr_block_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(127), 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,
[1144] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
ACTIONS(129), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(163), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(14), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(105), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
ACTIONS(161), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(165), 2,
anon_sym_LF,
anon_sym_2,
STATE(15), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-08 01:15:09 +03:00
ACTIONS(127), 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-08 01:15:09 +03:00
[1189] = 10,
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-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(169), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
STATE(25), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(108), 1,
2022-12-06 11:57:59 +03:00
sym__inner_style_attribute,
STATE(173), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
ACTIONS(135), 2,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(167), 2,
anon_sym_,
anon_sym_TAB,
STATE(16), 3,
2022-12-06 12:40:18 +03:00
sym__emptyline,
2022-12-08 01:15:09 +03:00
sym__eof,
2022-12-06 11:57:59 +03:00
aux_sym__style_attr_block_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(127), 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,
[1234] = 5,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(171), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(121), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
ACTIONS(119), 11,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_COLON,
sym__dash,
sym_dot,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1268] = 14,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(174), 1,
sym__word,
ACTIONS(177), 1,
2022-12-07 12:09:27 +03:00
sym__dash,
ACTIONS(180), 1,
anon_sym_SQUOTE,
ACTIONS(183), 1,
anon_sym_DQUOTE,
ACTIONS(186), 1,
anon_sym_BQUOTE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(65), 1,
aux_sym_shape_key_repeat2,
STATE(77), 1,
sym_shape_key,
STATE(83), 1,
sym_string,
STATE(98), 1,
aux_sym__shape_path_repeat1,
ACTIONS(171), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(119), 3,
anon_sym_RBRACE,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(121), 7,
2022-12-07 23:14:25 +03:00
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[1320] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(189), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
ACTIONS(195), 1,
2022-12-08 01:15:09 +03:00
anon_sym_stroke,
2022-12-07 23:14:25 +03:00
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(54), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
STATE(161), 1,
2022-12-06 11:57:59 +03:00
sym__style_attr_key,
2022-12-08 01:15:09 +03:00
ACTIONS(116), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(198), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(192), 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,
[1360] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(129), 1,
anon_sym_stroke,
ACTIONS(203), 1,
anon_sym_RBRACE,
STATE(13), 1,
aux_sym__shape_definition_repeat1,
STATE(54), 1,
sym__eof,
STATE(161), 1,
sym__style_attr_key,
ACTIONS(201), 2,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(205), 2,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(127), 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,
[1400] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(209), 9,
2022-12-07 23:14:25 +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,
ACTIONS(207), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1428] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(213), 9,
2022-12-07 23:14:25 +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,
ACTIONS(211), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1456] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(217), 9,
2022-12-07 23:14:25 +03:00
sym__root_attr_key,
2022-12-06 12:40:18 +03:00
anon_sym_style,
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 23:14:25 +03:00
sym__word,
ACTIONS(215), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +03:00
anon_sym_SEMI,
[1484] = 9,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(129), 1,
anon_sym_stroke,
ACTIONS(169), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(13), 1,
aux_sym__shape_definition_repeat1,
STATE(54), 1,
sym__eof,
STATE(161), 1,
2022-12-08 01:15:09 +03:00
sym__style_attr_key,
ACTIONS(201), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(205), 2,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(127), 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,
[1524] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(221), 9,
2022-12-07 23:14:25 +03:00
sym__root_attr_key,
2022-12-06 11:57:59 +03:00
anon_sym_style,
2022-12-07 23:14:25 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
2022-12-07 12:09:27 +03:00
sym__word,
ACTIONS(219), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1552] = 3,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(225), 9,
2022-12-07 23:14:25 +03:00
sym__root_attr_key,
anon_sym_style,
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 23:14:25 +03:00
sym__word,
ACTIONS(223), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +03:00
anon_sym_SEMI,
[1580] = 15,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(229), 1,
anon_sym_LBRACE,
ACTIONS(231), 1,
anon_sym_COLON,
ACTIONS(237), 1,
sym_dot,
STATE(33), 1,
sym__end,
STATE(36), 1,
sym__eof,
STATE(43), 1,
aux_sym_connection_repeat1,
STATE(59), 1,
sym__colon,
STATE(66), 1,
aux_sym__shape_definition_repeat1,
STATE(116), 1,
sym__shape_block,
ACTIONS(227), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(233), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(235), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
STATE(79), 2,
sym__arrow,
sym_arrow,
ACTIONS(239), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1632] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(243), 9,
2022-12-07 23:14:25 +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,
ACTIONS(241), 11,
2022-12-07 23:14:25 +03:00
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,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
sym__dash,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
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,
[1660] = 3,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(247), 9,
2022-12-07 23:14:25 +03:00
sym__root_attr_key,
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,
ACTIONS(245), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1688] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(195), 1,
2022-12-08 01:15:09 +03:00
anon_sym_stroke,
ACTIONS(249), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(13), 1,
aux_sym__shape_definition_repeat1,
STATE(54), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
STATE(161), 1,
2022-12-08 01:15:09 +03:00
sym__style_attr_key,
ACTIONS(116), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(198), 2,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(192), 11,
2022-12-08 01:15:09 +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,
[1728] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(254), 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,
ACTIONS(252), 11,
ts_builtin_sym_end,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1756] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(258), 9,
2022-12-07 23:14:25 +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,
ACTIONS(256), 11,
2022-12-07 23:14:25 +03:00
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1784] = 9,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
ACTIONS(129), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(153), 1,
anon_sym_RBRACE,
2022-12-08 01:15:09 +03:00
STATE(13), 1,
aux_sym__shape_definition_repeat1,
STATE(54), 1,
sym__eof,
STATE(161), 1,
2022-12-08 01:15:09 +03:00
sym__style_attr_key,
ACTIONS(201), 2,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(205), 2,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(127), 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,
[1824] = 8,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(129), 1,
anon_sym_stroke,
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(54), 1,
sym__eof,
STATE(161), 1,
sym__style_attr_key,
ACTIONS(201), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(205), 2,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(127), 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,
[1861] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(262), 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,
ACTIONS(260), 10,
ts_builtin_sym_end,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
[1888] = 6,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(267), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
ACTIONS(270), 1,
2022-12-08 01:15:09 +03:00
anon_sym_stroke,
STATE(186), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(264), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(140), 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,
[1920] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(277), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(184), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(274), 2,
2022-12-04 23:45:53 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(87), 6,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(272), 8,
2022-12-07 18:52:19 +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,
[1952] = 13,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(282), 1,
anon_sym_COLON,
ACTIONS(284), 1,
sym_dot,
STATE(27), 1,
sym__end,
STATE(36), 1,
sym__eof,
STATE(61), 1,
aux_sym_connection_repeat1,
STATE(81), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(147), 1,
sym__colon,
ACTIONS(233), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(235), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(280), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
STATE(79), 2,
sym__arrow,
sym_arrow,
ACTIONS(239), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[1998] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(289), 1,
anon_sym_RBRACE,
STATE(181), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(286), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(87), 6,
2022-12-07 18:52:19 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(272), 8,
2022-12-07 18:52:19 +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,
[2030] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(270), 1,
2022-12-04 23:45:53 +03:00
anon_sym_stroke,
ACTIONS(295), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
STATE(178), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(292), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(140), 13,
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,
[2062] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(301), 1,
anon_sym_RBRACE,
STATE(177), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(298), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(87), 6,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
ACTIONS(272), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
[2094] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(304), 9,
2022-12-07 18:52:19 +03:00
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,
2022-12-06 12:32:50 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-05 10:37:04 +03:00
anon_sym_LF,
anon_sym_2,
ACTIONS(306), 9,
2022-12-07 18:52:19 +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,
[2120] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(270), 1,
2022-12-08 01:15:09 +03:00
anon_sym_stroke,
ACTIONS(311), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(190), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(308), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(140), 13,
2022-12-08 01:15:09 +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,
[2152] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(270), 1,
2022-12-06 12:40:18 +03:00
anon_sym_stroke,
ACTIONS(317), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
STATE(179), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(314), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(140), 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,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
[2184] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(320), 9,
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-07 23:14:25 +03:00
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
ACTIONS(322), 9,
sym__root_attr_key,
2022-12-07 23:14:25 +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,
[2210] = 3,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(324), 8,
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,
ACTIONS(326), 9,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
[2235] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(129), 1,
2022-12-07 18:52:19 +03:00
anon_sym_stroke,
STATE(60), 1,
aux_sym__shape_definition_repeat1,
STATE(140), 1,
sym__inner_style_attribute,
STATE(173), 1,
sym__style_attr_key,
ACTIONS(328), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(127), 11,
2022-12-07 18:52:19 +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,
[2268] = 3,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(221), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(219), 16,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 23:14:25 +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,
[2293] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(262), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(260), 16,
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-07 23:14:25 +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,
[2318] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(333), 1,
2022-12-07 18:52:19 +03:00
anon_sym_stroke,
ACTIONS(330), 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,
[2343] = 3,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(254), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(252), 16,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-07 23:14:25 +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,
[2368] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(270), 1,
2022-12-07 23:14:25 +03:00
anon_sym_stroke,
ACTIONS(140), 16,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
2022-12-07 23:14:25 +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,
2022-12-07 18:52:19 +03:00
anon_sym_2,
[2393] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(272), 8,
anon_sym_style,
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
sym__word,
ACTIONS(87), 9,
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_2,
[2418] = 15,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(229), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
sym__unquoted_string,
ACTIONS(340), 1,
sym_line_comment,
ACTIONS(342), 1,
anon_sym_2,
STATE(28), 1,
sym__end,
STATE(36), 1,
2022-12-08 01:15:09 +03:00
sym__eof,
STATE(67), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(89), 1,
2022-12-07 18:52:19 +03:00
sym_label,
STATE(113), 1,
2022-12-07 18:52:19 +03:00
sym__shape_block,
STATE(158), 1,
2022-12-07 18:52:19 +03:00
sym_string,
ACTIONS(239), 2,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_SEMI,
ACTIONS(336), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[2466] = 6,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(129), 1,
2022-12-07 18:52:19 +03:00
anon_sym_stroke,
2022-12-07 23:14:25 +03:00
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(161), 1,
2022-12-07 18:52:19 +03:00
sym__style_attr_key,
ACTIONS(201), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
ACTIONS(127), 11,
2022-12-07 18:52:19 +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,
[2496] = 8,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(61), 1,
aux_sym_connection_repeat1,
STATE(109), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(344), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(349), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(352), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
STATE(79), 2,
sym__arrow,
2022-12-07 23:14:25 +03:00
sym_arrow,
ACTIONS(347), 5,
anon_sym_COLON,
sym_dot,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[2529] = 5,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(355), 1,
sym__word,
STATE(62), 1,
aux_sym_shape_key_repeat2,
ACTIONS(360), 3,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
sym__dash,
ACTIONS(358), 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,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
sym_dot,
2022-12-06 00:34:41 +03:00
anon_sym_LF,
anon_sym_2,
2022-12-07 23:14:25 +03:00
anon_sym_SEMI,
[2556] = 14,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(362), 1,
2022-12-07 23:14:25 +03:00
sym__word,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(40), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(77), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(98), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
2022-12-07 23:14:25 +03:00
ACTIONS(112), 2,
anon_sym_LF,
anon_sym_2,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[2601] = 6,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(366), 1,
2022-12-08 01:15:09 +03:00
sym__word,
ACTIONS(372), 1,
2022-12-07 23:14:25 +03:00
sym__dash,
STATE(62), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
ACTIONS(370), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(368), 10,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_LBRACE,
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-08 01:15:09 +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-07 23:14:25 +03:00
anon_sym_SEMI,
[2630] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(366), 1,
2022-12-08 01:15:09 +03:00
sym__word,
ACTIONS(378), 1,
2022-12-07 23:14:25 +03:00
sym__dash,
STATE(62), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
ACTIONS(376), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(374), 10,
2022-12-08 01:15:09 +03:00
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,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2659] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(380), 1,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
ACTIONS(382), 1,
2022-12-05 00:26:24 +03:00
anon_sym_COLON,
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
sym__eof,
STATE(135), 1,
sym_arrow,
ACTIONS(201), 2,
2022-12-06 00:34:41 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(233), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(235), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(384), 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,
[2695] = 13,
2022-12-08 01:15:09 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(338), 1,
sym__unquoted_string,
ACTIONS(340), 1,
sym_line_comment,
ACTIONS(380), 1,
anon_sym_LBRACE,
ACTIONS(388), 1,
anon_sym_2,
STATE(30), 1,
sym__eof,
STATE(86), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(88), 1,
sym_label,
STATE(158), 1,
sym_string,
ACTIONS(384), 2,
anon_sym_LF,
anon_sym_SEMI,
ACTIONS(386), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
[2737] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(390), 1,
2022-12-07 23:14:25 +03:00
anon_sym_,
ACTIONS(393), 1,
sym__dash,
STATE(201), 1,
aux_sym_shape_key_repeat1,
ACTIONS(376), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(374), 9,
2022-12-07 23:14:25 +03:00
anon_sym_TAB,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2765] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(397), 3,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
2022-12-05 00:26:24 +03:00
sym__dash,
ACTIONS(395), 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,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2787] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(399), 1,
anon_sym_,
ACTIONS(402), 1,
2022-12-07 23:14:25 +03:00
sym__dash,
STATE(201), 1,
aux_sym_shape_key_repeat1,
ACTIONS(370), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(368), 9,
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-08 01:15:09 +03:00
sym_dot,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[2815] = 4,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(404), 1,
sym__word,
ACTIONS(370), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(368), 10,
2022-12-05 11:36:14 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_LBRACE,
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2838] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(408), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(406), 11,
2022-12-07 23:14:25 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_RBRACE,
2022-12-05 00:26:24 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2859] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(420), 1,
sym_dot,
STATE(182), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(410), 2,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(417), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(414), 7,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
2022-12-04 23:45:53 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2886] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(404), 1,
2022-12-08 01:15:09 +03:00
sym__word,
ACTIONS(426), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(424), 10,
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,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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-07 18:52:19 +03:00
anon_sym_SEMI,
[2909] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(430), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(428), 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-08 01:15:09 +03:00
anon_sym_RBRACE,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-04 23:45:53 +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,
[2930] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(439), 1,
2022-12-08 01:15:09 +03:00
sym_dot,
STATE(182), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(432), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(437), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(435), 7,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2957] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(449), 1,
sym_dot,
STATE(182), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(442), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(447), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(445), 7,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[2984] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(459), 1,
sym_dot,
STATE(182), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(452), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(457), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(455), 7,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[3011] = 13,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(17), 1,
2022-12-06 12:40:18 +03:00
sym__dash,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(362), 1,
sym__word,
STATE(65), 1,
aux_sym_shape_key_repeat2,
STATE(76), 1,
sym_shape_key,
STATE(83), 1,
sym_string,
STATE(84), 1,
aux_sym__shape_definition_repeat1,
STATE(87), 1,
sym__shape_path,
STATE(100), 1,
aux_sym__shape_path_repeat1,
ACTIONS(462), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[3052] = 6,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(474), 1,
sym_dot,
STATE(182), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(464), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(471), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(468), 7,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
2022-12-06 12:40:18 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[3079] = 9,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(478), 1,
anon_sym_COLON,
STATE(13), 1,
aux_sym__shape_definition_repeat1,
STATE(30), 1,
sym__eof,
STATE(135), 1,
sym_arrow,
ACTIONS(201), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(233), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(235), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(384), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3112] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(426), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(424), 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,
2022-12-05 11:36:14 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
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,
[3132] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(376), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(374), 10,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_LBRACE,
2022-12-07 18:52:19 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-07 18:52:19 +03:00
sym_dot,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3152] = 12,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-07 23:14:25 +03:00
ACTIONS(17), 1,
2022-12-05 11:36:14 +03:00
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(362), 1,
2022-12-06 12:40:18 +03:00
sym__word,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(65), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
STATE(77), 1,
2022-12-07 23:14:25 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(98), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[3190] = 3,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(370), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(368), 10,
anon_sym_,
anon_sym_TAB,
anon_sym_LBRACE,
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
sym_dot,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3210] = 5,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
2022-12-08 01:15:09 +03:00
STATE(86), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(121), 2,
sym__unquoted_string,
anon_sym_2,
ACTIONS(480), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
ACTIONS(119), 6,
anon_sym_LBRACE,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-06 00:53:06 +03:00
anon_sym_LF,
anon_sym_SEMI,
[3233] = 3,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(483), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
ACTIONS(347), 9,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_COLON,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
2022-12-08 01:15:09 +03:00
sym_dot,
anon_sym_LF,
2022-12-06 12:32:50 +03:00
anon_sym_2,
2022-12-08 01:15:09 +03:00
anon_sym_SEMI,
[3252] = 8,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(229), 1,
2022-12-07 18:52:19 +03:00
anon_sym_LBRACE,
STATE(36), 1,
sym__eof,
STATE(37), 1,
sym__end,
STATE(118), 1,
sym__shape_block,
STATE(123), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(485), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3280] = 8,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(229), 1,
anon_sym_LBRACE,
STATE(26), 1,
2022-12-08 01:15:09 +03:00
sym__end,
STATE(36), 1,
sym__eof,
STATE(122), 1,
2022-12-08 01:15:09 +03:00
sym__shape_block,
STATE(123), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(485), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-04 18:35:37 +03:00
anon_sym_LF,
2022-12-08 01:15:09 +03:00
anon_sym_2,
2022-12-06 00:34:41 +03:00
anon_sym_SEMI,
[3308] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(487), 1,
2022-12-07 23:14:25 +03:00
anon_sym_style,
STATE(113), 1,
2022-12-07 23:14:25 +03:00
sym__shape_attribute,
STATE(139), 1,
2022-12-07 23:14:25 +03:00
sym__style_attribute,
STATE(176), 1,
2022-12-07 23:14:25 +03:00
sym__shape_attr_key,
ACTIONS(489), 6,
2022-12-07 23:14:25 +03:00
anon_sym_shape,
anon_sym_label,
anon_sym_constraint,
anon_sym_icon,
anon_sym_width,
anon_sym_height,
[3332] = 3,
ACTIONS(340), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(491), 4,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
sym__unquoted_string,
anon_sym_2,
ACTIONS(493), 6,
2022-12-08 01:15:09 +03:00
anon_sym_LBRACE,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
anon_sym_LF,
anon_sym_SEMI,
[3350] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(495), 1,
sym__word,
ACTIONS(498), 1,
sym__dash,
ACTIONS(501), 1,
anon_sym_SQUOTE,
ACTIONS(504), 1,
anon_sym_DQUOTE,
ACTIONS(507), 1,
anon_sym_BQUOTE,
STATE(83), 1,
sym_string,
STATE(92), 1,
aux_sym__shape_path_repeat1,
STATE(153), 1,
aux_sym_shape_key_repeat2,
STATE(191), 1,
sym_shape_key,
[3381] = 7,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(169), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(41), 1,
2022-12-08 01:15:09 +03:00
sym__end,
STATE(56), 1,
sym__eof,
STATE(127), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(510), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(512), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3406] = 9,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(516), 1,
sym__unquoted_string,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
sym_string,
STATE(155), 1,
sym_attr_value,
ACTIONS(514), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[3435] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(114), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(36), 1,
sym__eof,
2022-12-08 01:15:09 +03:00
STATE(42), 1,
sym__end,
STATE(130), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(518), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3460] = 9,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(21), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(23), 1,
2022-12-06 12:40:18 +03:00
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(516), 1,
2022-12-06 12:40:18 +03:00
sym__unquoted_string,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
2022-12-06 12:40:18 +03:00
sym_string,
STATE(172), 1,
2022-12-07 18:52:19 +03:00
sym_attr_value,
ACTIONS(514), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[3489] = 9,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(516), 1,
2022-12-07 23:14:25 +03:00
sym__unquoted_string,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
2022-12-07 23:14:25 +03:00
sym_string,
STATE(145), 1,
2022-12-07 23:14:25 +03:00
sym_attr_value,
ACTIONS(514), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[3518] = 10,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(17), 1,
sym__dash,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
2022-12-07 12:09:27 +03:00
anon_sym_SQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(21), 1,
2022-12-07 12:09:27 +03:00
anon_sym_DQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(23), 1,
2022-12-06 12:32:50 +03:00
anon_sym_BQUOTE,
ACTIONS(362), 1,
2022-12-08 01:15:09 +03:00
sym__word,
STATE(65), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
STATE(78), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-08 01:15:09 +03:00
sym_string,
STATE(92), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
[3549] = 9,
ACTIONS(19), 1,
2022-12-08 01:15:09 +03:00
anon_sym_SQUOTE,
ACTIONS(21), 1,
2022-12-08 01:15:09 +03:00
anon_sym_DQUOTE,
ACTIONS(23), 1,
2022-12-08 01:15:09 +03:00
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(516), 1,
sym__unquoted_string,
STATE(131), 1,
sym_attr_value,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
sym_string,
ACTIONS(514), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[3578] = 10,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
ACTIONS(17), 1,
sym__dash,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(362), 1,
2022-12-08 01:15:09 +03:00
sym__word,
STATE(65), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
STATE(77), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-08 01:15:09 +03:00
sym_string,
STATE(92), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
[3609] = 7,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(153), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
STATE(49), 1,
2022-12-07 18:52:19 +03:00
sym__end,
2022-12-08 01:15:09 +03:00
STATE(56), 1,
sym__eof,
STATE(111), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(520), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(512), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3634] = 9,
2022-12-07 23:14:25 +03:00
ACTIONS(19), 1,
2022-12-07 18:52:19 +03:00
anon_sym_SQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(21), 1,
2022-12-07 18:52:19 +03:00
anon_sym_DQUOTE,
2022-12-07 23:14:25 +03:00
ACTIONS(23), 1,
2022-12-07 18:52:19 +03:00
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(516), 1,
2022-12-07 18:52:19 +03:00
sym__unquoted_string,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
2022-12-07 18:52:19 +03:00
sym_string,
STATE(148), 1,
2022-12-07 18:52:19 +03:00
sym_attr_value,
ACTIONS(514), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[3663] = 9,
2022-12-08 01:15:09 +03:00
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(516), 1,
2022-12-08 01:15:09 +03:00
sym__unquoted_string,
STATE(132), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(141), 1,
2022-12-08 01:15:09 +03:00
sym_string,
STATE(156), 1,
sym_attr_value,
ACTIONS(514), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
[3692] = 7,
ACTIONS(3), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(71), 1,
anon_sym_RBRACE,
STATE(36), 1,
sym__eof,
STATE(44), 1,
sym__end,
STATE(115), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(522), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3717] = 7,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(125), 1,
anon_sym_RBRACE,
STATE(45), 1,
sym__end,
STATE(56), 1,
sym__eof,
STATE(110), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(524), 2,
anon_sym_,
anon_sym_TAB,
ACTIONS(512), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3742] = 10,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(17), 1,
sym__dash,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(362), 1,
2022-12-08 01:15:09 +03:00
sym__word,
STATE(65), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
STATE(80), 1,
2022-12-08 01:15:09 +03:00
sym_shape_key,
STATE(83), 1,
2022-12-08 01:15:09 +03:00
sym_string,
STATE(92), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_path_repeat1,
[3773] = 7,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(65), 1,
2022-12-06 12:32:50 +03:00
anon_sym_RBRACE,
2022-12-08 01:15:09 +03:00
STATE(36), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
STATE(46), 1,
2022-12-07 18:52:19 +03:00
sym__end,
STATE(129), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(526), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3798] = 7,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(203), 1,
anon_sym_RBRACE,
STATE(48), 1,
2022-12-08 01:15:09 +03:00
sym__end,
STATE(56), 1,
sym__eof,
STATE(120), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(528), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(512), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3823] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(13), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(135), 1,
sym_arrow,
ACTIONS(201), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(233), 2,
aux_sym_arrow_token1,
aux_sym_arrow_token4,
ACTIONS(235), 2,
aux_sym_arrow_token2,
aux_sym_arrow_token3,
[3845] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(153), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(53), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(530), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3867] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(169), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(53), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(530), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3889] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(22), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(532), 5,
sym__dash,
2022-12-07 18:52:19 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
2022-12-08 01:15:09 +03:00
sym__word,
[3907] = 6,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
STATE(26), 1,
sym__end,
STATE(36), 1,
2022-12-08 01:15:09 +03:00
sym__eof,
STATE(133), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-08 01:15:09 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3929] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(128), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(536), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(532), 5,
sym__dash,
2022-12-08 01:15:09 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
sym__word,
[3947] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(65), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(384), 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,
[3969] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(28), 1,
sym__end,
STATE(36), 1,
2022-12-06 12:32:50 +03:00
sym__eof,
STATE(133), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[3991] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(36), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
STATE(51), 1,
sym__end,
STATE(133), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4013] = 6,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
STATE(31), 1,
sym__end,
STATE(36), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
STATE(133), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4035] = 4,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(112), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(540), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(538), 5,
2022-12-08 01:15:09 +03:00
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
sym__word,
[4053] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(542), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(53), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(530), 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,
[4075] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(56), 1,
sym__eof,
STATE(57), 1,
sym__end,
STATE(134), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(544), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(512), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4097] = 6,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
STATE(36), 1,
2022-12-07 18:52:19 +03:00
sym__eof,
STATE(37), 1,
sym__end,
STATE(133), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-07 18:52:19 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4119] = 6,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(380), 1,
2022-12-08 01:15:09 +03:00
anon_sym_LBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(384), 3,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4141] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
STATE(36), 1,
sym__eof,
STATE(47), 1,
sym__end,
STATE(133), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4163] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(34), 1,
sym__end,
STATE(36), 1,
2022-12-07 18:52:19 +03:00
sym__eof,
STATE(133), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4185] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
STATE(36), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
STATE(58), 1,
sym__end,
STATE(133), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-06 12:40:18 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 12:40:18 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4207] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(203), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(53), 1,
2022-12-06 12:40:18 +03:00
sym__eof,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(530), 3,
2022-12-06 11:57:59 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4229] = 4,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(546), 5,
sym__dash,
2022-12-08 01:15:09 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
sym__word,
[4247] = 6,
ACTIONS(3), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(114), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(384), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4269] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(548), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
sym__eof,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(384), 3,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4291] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
2022-12-08 01:15:09 +03:00
STATE(36), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
STATE(50), 1,
sym__end,
STATE(133), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(534), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(239), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4313] = 8,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(552), 1,
sym__unquoted_string,
STATE(137), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(143), 1,
sym_string,
ACTIONS(550), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4339] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(30), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(384), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4358] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
STATE(53), 1,
2022-12-07 23:14:25 +03:00
sym__eof,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
ACTIONS(530), 3,
2022-12-06 12:32:50 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4377] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(554), 7,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
sym__word,
[4390] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(556), 7,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
sym__dash,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
sym__word,
[4403] = 5,
ACTIONS(121), 1,
sym__unquoted_string,
ACTIONS(340), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
STATE(137), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(558), 2,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
ACTIONS(119), 3,
2022-12-07 23:14:25 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
[4422] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(561), 6,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4434] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(563), 6,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4446] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(565), 6,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4458] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(567), 6,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4470] = 2,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(569), 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,
[4482] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(571), 6,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4494] = 6,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(575), 1,
anon_sym_COLON,
ACTIONS(577), 1,
sym_dot,
STATE(167), 1,
sym__colon,
STATE(188), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(573), 2,
2022-12-05 00:26:24 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4514] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(579), 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,
[4526] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(581), 1,
sym__word,
STATE(146), 1,
aux_sym_shape_key_repeat2,
ACTIONS(358), 4,
2022-12-07 12:09:27 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__dash,
sym_dot,
[4542] = 7,
ACTIONS(19), 1,
anon_sym_SQUOTE,
ACTIONS(21), 1,
anon_sym_DQUOTE,
ACTIONS(23), 1,
anon_sym_BQUOTE,
ACTIONS(338), 1,
sym__unquoted_string,
ACTIONS(340), 1,
sym_line_comment,
STATE(125), 1,
sym_label,
STATE(158), 1,
sym_string,
[4564] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(584), 6,
2022-12-04 23:45:53 +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,
[4576] = 3,
ACTIONS(340), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(491), 3,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
sym__unquoted_string,
ACTIONS(493), 3,
2022-12-08 01:15:09 +03:00
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
[4590] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(586), 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,
[4602] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(588), 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,
[4614] = 2,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(590), 6,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4626] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(592), 1,
sym__word,
ACTIONS(594), 1,
sym__dash,
STATE(146), 1,
aux_sym_shape_key_repeat2,
ACTIONS(374), 3,
2022-12-06 00:53:06 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym_dot,
[4644] = 5,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(592), 1,
sym__word,
ACTIONS(596), 1,
sym__dash,
STATE(146), 1,
aux_sym_shape_key_repeat2,
ACTIONS(368), 3,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
sym_dot,
[4662] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(598), 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 23:14:25 +03:00
anon_sym_RBRACE,
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,
[4674] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(601), 6,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
2022-12-07 12:09:27 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4686] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(603), 6,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4698] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(605), 6,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_LBRACE,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4710] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(607), 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-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4722] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(609), 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,
[4733] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(613), 1,
2022-12-06 00:53:06 +03:00
anon_sym_COLON,
STATE(103), 1,
2022-12-06 11:57:59 +03:00
sym__colon,
2022-12-08 01:15:09 +03:00
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4750] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(615), 1,
anon_sym_,
ACTIONS(618), 1,
sym__dash,
STATE(205), 1,
aux_sym_shape_key_repeat1,
ACTIONS(368), 2,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym_dot,
[4767] = 5,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(620), 1,
2022-12-08 01:15:09 +03:00
anon_sym_,
ACTIONS(623), 1,
2022-12-08 01:15:09 +03:00
sym__dash,
STATE(205), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat1,
ACTIONS(374), 2,
2022-12-08 01:15:09 +03:00
anon_sym_TAB,
sym_dot,
[4784] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(625), 5,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-07 23:14:25 +03:00
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4795] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(627), 5,
anon_sym_,
anon_sym_TAB,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4806] = 5,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(629), 1,
anon_sym_COLON,
STATE(99), 1,
sym__colon,
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
anon_sym_,
anon_sym_TAB,
[4823] = 5,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(633), 1,
2022-12-08 01:15:09 +03:00
anon_sym_LBRACE,
STATE(140), 1,
2022-12-08 01:15:09 +03:00
sym__style_attr_block,
STATE(185), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(631), 2,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[4840] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(635), 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,
[4851] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(637), 5,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4862] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(395), 5,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
sym__dash,
sym_dot,
sym__word,
[4873] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(639), 1,
2022-12-07 18:52:19 +03:00
anon_sym_COLON,
STATE(96), 1,
2022-12-07 18:52:19 +03:00
sym__colon,
2022-12-08 01:15:09 +03:00
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4890] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(641), 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,
[4901] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(643), 1,
2022-12-07 23:14:25 +03:00
anon_sym_COLON,
STATE(102), 1,
2022-12-07 23:14:25 +03:00
sym__colon,
2022-12-08 01:15:09 +03:00
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4918] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(645), 5,
anon_sym_,
anon_sym_TAB,
anon_sym_LF,
anon_sym_2,
anon_sym_SEMI,
[4929] = 5,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(647), 1,
2022-12-07 18:52:19 +03:00
anon_sym_COLON,
STATE(94), 1,
2022-12-07 23:14:25 +03:00
sym__colon,
2022-12-08 01:15:09 +03:00
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4946] = 5,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(649), 1,
2022-12-08 01:15:09 +03:00
anon_sym_COLON,
STATE(97), 1,
2022-12-08 01:15:09 +03:00
sym__colon,
STATE(187), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(611), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4963] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(548), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
[4977] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(169), 1,
2022-12-06 11:57:59 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[4991] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(203), 1,
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
[5005] = 3,
ACTIONS(340), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(491), 1,
sym__unquoted_string,
ACTIONS(493), 3,
anon_sym_SQUOTE,
anon_sym_DQUOTE,
anon_sym_BQUOTE,
[5017] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(114), 1,
2022-12-06 12:40:18 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[5031] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(651), 1,
2022-12-08 01:15:09 +03:00
sym_dot,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
[5045] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
STATE(125), 1,
2022-12-08 01:15:09 +03:00
sym__connection_attribute,
STATE(171), 1,
2022-12-08 01:15:09 +03:00
sym__connection_attr_key,
ACTIONS(653), 2,
2022-12-08 01:15:09 +03:00
anon_sym_source_DASHarrowhead,
anon_sym_target_DASHarrowhead,
[5059] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(655), 1,
2022-12-07 23:14:25 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[5073] = 4,
ACTIONS(3), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(657), 1,
anon_sym_LBRACE,
STATE(22), 1,
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
anon_sym_,
anon_sym_TAB,
[5087] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(542), 1,
2022-12-08 01:15:09 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[5101] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(659), 1,
2022-12-07 23:14:25 +03:00
anon_sym_COLON,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[5115] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(661), 1,
anon_sym_COLON,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
[5129] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(663), 1,
2022-12-08 01:15:09 +03:00
sym__word,
ACTIONS(368), 3,
2022-12-06 11:57:59 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
sym_dot,
[5141] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(665), 1,
2022-12-07 18:52:19 +03:00
anon_sym_RBRACE,
STATE(22), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(364), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[5155] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(669), 1,
2022-12-08 01:15:09 +03:00
sym_dot,
STATE(182), 1,
2022-12-08 01:15:09 +03:00
aux_sym__shape_definition_repeat1,
ACTIONS(667), 2,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
[5169] = 3,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(663), 1,
sym__word,
ACTIONS(424), 3,
2022-12-07 18:52:19 +03:00
anon_sym_,
anon_sym_TAB,
sym_dot,
[5181] = 4,
ACTIONS(340), 1,
2022-12-07 12:09:27 +03:00
sym_line_comment,
ACTIONS(671), 1,
2022-12-06 12:40:18 +03:00
anon_sym_SQUOTE,
ACTIONS(673), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_token1,
STATE(193), 1,
2022-12-06 12:40:18 +03:00
aux_sym_string_repeat1,
[5194] = 2,
ACTIONS(3), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(676), 3,
anon_sym_,
anon_sym_TAB,
anon_sym_COLON,
[5203] = 4,
ACTIONS(340), 1,
sym_line_comment,
ACTIONS(678), 1,
2022-12-07 23:14:25 +03:00
anon_sym_BQUOTE,
ACTIONS(680), 1,
2022-12-07 23:14:25 +03:00
aux_sym_string_token3,
STATE(195), 1,
2022-12-07 23:14:25 +03:00
aux_sym_string_repeat3,
[5216] = 4,
ACTIONS(340), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(683), 1,
anon_sym_DQUOTE,
ACTIONS(685), 1,
aux_sym_string_token2,
STATE(196), 1,
aux_sym_string_repeat2,
[5229] = 4,
ACTIONS(340), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(688), 1,
2022-12-07 18:52:19 +03:00
anon_sym_BQUOTE,
ACTIONS(690), 1,
2022-12-07 18:52:19 +03:00
aux_sym_string_token3,
STATE(198), 1,
2022-12-07 18:52:19 +03:00
aux_sym_string_repeat3,
[5242] = 4,
ACTIONS(340), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(692), 1,
anon_sym_BQUOTE,
ACTIONS(694), 1,
aux_sym_string_token3,
STATE(195), 1,
aux_sym_string_repeat3,
[5255] = 4,
ACTIONS(340), 1,
2022-12-08 01:15:09 +03:00
sym_line_comment,
ACTIONS(688), 1,
2022-12-08 01:15:09 +03:00
anon_sym_DQUOTE,
ACTIONS(696), 1,
2022-12-08 01:15:09 +03:00
aux_sym_string_token2,
STATE(203), 1,
2022-12-08 01:15:09 +03:00
aux_sym_string_repeat2,
[5268] = 4,
ACTIONS(340), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(688), 1,
2022-12-07 18:52:19 +03:00
anon_sym_SQUOTE,
ACTIONS(698), 1,
2022-12-07 18:52:19 +03:00
aux_sym_string_token1,
STATE(208), 1,
2022-12-07 18:52:19 +03:00
aux_sym_string_repeat1,
[5281] = 4,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(404), 1,
sym__word,
ACTIONS(700), 1,
2022-12-07 18:52:19 +03:00
anon_sym_,
STATE(209), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat1,
[5294] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(493), 3,
2022-12-06 12:32:50 +03:00
anon_sym_,
2022-12-07 18:52:19 +03:00
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_LBRACE,
[5303] = 4,
ACTIONS(340), 1,
sym_line_comment,
ACTIONS(692), 1,
anon_sym_DQUOTE,
ACTIONS(702), 1,
aux_sym_string_token2,
STATE(196), 1,
aux_sym_string_repeat2,
[5316] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(704), 1,
2022-12-08 01:15:09 +03:00
anon_sym_,
ACTIONS(706), 1,
2022-12-08 01:15:09 +03:00
sym__dash,
STATE(205), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat1,
[5329] = 4,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(663), 1,
2022-12-08 01:15:09 +03:00
sym__word,
ACTIONS(700), 1,
2022-12-08 01:15:09 +03:00
anon_sym_,
STATE(209), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat1,
[5342] = 2,
2022-12-07 23:14:25 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(708), 3,
2022-12-07 23:14:25 +03:00
anon_sym_,
anon_sym_TAB,
2022-12-08 01:15:09 +03:00
anon_sym_COLON,
[5351] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(710), 3,
2022-12-08 01:15:09 +03:00
anon_sym_,
anon_sym_TAB,
anon_sym_COLON,
[5360] = 4,
ACTIONS(340), 1,
2022-12-07 23:14:25 +03:00
sym_line_comment,
ACTIONS(692), 1,
2022-12-08 01:15:09 +03:00
anon_sym_SQUOTE,
ACTIONS(712), 1,
2022-12-08 01:15:09 +03:00
aux_sym_string_token1,
STATE(193), 1,
2022-12-08 01:15:09 +03:00
aux_sym_string_repeat1,
[5373] = 4,
ACTIONS(3), 1,
2022-12-07 18:52:19 +03:00
sym_line_comment,
ACTIONS(714), 1,
sym__word,
ACTIONS(716), 1,
anon_sym_,
STATE(209), 1,
aux_sym_shape_key_repeat1,
[5386] = 4,
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(719), 1,
anon_sym_,
ACTIONS(721), 1,
sym__dash,
STATE(201), 1,
aux_sym_shape_key_repeat1,
[5399] = 3,
2022-12-07 18:52:19 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(723), 1,
2022-12-08 01:15:09 +03:00
sym__word,
STATE(154), 1,
2022-12-08 01:15:09 +03:00
aux_sym_shape_key_repeat2,
[5409] = 3,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(725), 1,
2022-12-07 18:52:19 +03:00
sym__word,
STATE(64), 1,
2022-12-07 23:14:25 +03:00
aux_sym_shape_key_repeat2,
[5419] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(404), 1,
2022-12-08 01:15:09 +03:00
sym__word,
[5426] = 2,
2022-12-07 12:09:27 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(663), 1,
2022-12-06 11:57:59 +03:00
sym__word,
[5433] = 2,
2022-12-08 01:15:09 +03:00
ACTIONS(3), 1,
sym_line_comment,
ACTIONS(727), 1,
2022-12-08 01:15:09 +03:00
ts_builtin_sym_end,
2022-12-04 00:07:26 +03:00
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2022-12-08 01:15:09 +03:00
[SMALL_STATE(3)] = 80,
[SMALL_STATE(4)] = 160,
[SMALL_STATE(5)] = 236,
[SMALL_STATE(6)] = 312,
[SMALL_STATE(7)] = 388,
[SMALL_STATE(8)] = 464,
[SMALL_STATE(9)] = 540,
[SMALL_STATE(10)] = 614,
[SMALL_STATE(11)] = 688,
[SMALL_STATE(12)] = 762,
[SMALL_STATE(13)] = 833,
[SMALL_STATE(14)] = 870,
[SMALL_STATE(15)] = 917,
[SMALL_STATE(16)] = 962,
[SMALL_STATE(17)] = 1007,
[SMALL_STATE(18)] = 1052,
[SMALL_STATE(19)] = 1097,
[SMALL_STATE(20)] = 1144,
2022-12-08 01:15:09 +03:00
[SMALL_STATE(21)] = 1189,
[SMALL_STATE(22)] = 1234,
[SMALL_STATE(23)] = 1268,
2022-12-08 01:15:09 +03:00
[SMALL_STATE(24)] = 1320,
[SMALL_STATE(25)] = 1360,
[SMALL_STATE(26)] = 1400,
[SMALL_STATE(27)] = 1428,
[SMALL_STATE(28)] = 1456,
[SMALL_STATE(29)] = 1484,
[SMALL_STATE(30)] = 1524,
[SMALL_STATE(31)] = 1552,
[SMALL_STATE(32)] = 1580,
[SMALL_STATE(33)] = 1632,
[SMALL_STATE(34)] = 1660,
[SMALL_STATE(35)] = 1688,
[SMALL_STATE(36)] = 1728,
[SMALL_STATE(37)] = 1756,
[SMALL_STATE(38)] = 1784,
[SMALL_STATE(39)] = 1824,
[SMALL_STATE(40)] = 1861,
[SMALL_STATE(41)] = 1888,
[SMALL_STATE(42)] = 1920,
[SMALL_STATE(43)] = 1952,
[SMALL_STATE(44)] = 1998,
[SMALL_STATE(45)] = 2030,
[SMALL_STATE(46)] = 2062,
[SMALL_STATE(47)] = 2094,
[SMALL_STATE(48)] = 2120,
[SMALL_STATE(49)] = 2152,
[SMALL_STATE(50)] = 2184,
[SMALL_STATE(51)] = 2210,
[SMALL_STATE(52)] = 2235,
[SMALL_STATE(53)] = 2268,
[SMALL_STATE(54)] = 2293,
[SMALL_STATE(55)] = 2318,
[SMALL_STATE(56)] = 2343,
[SMALL_STATE(57)] = 2368,
[SMALL_STATE(58)] = 2393,
[SMALL_STATE(59)] = 2418,
[SMALL_STATE(60)] = 2466,
[SMALL_STATE(61)] = 2496,
[SMALL_STATE(62)] = 2529,
[SMALL_STATE(63)] = 2556,
[SMALL_STATE(64)] = 2601,
[SMALL_STATE(65)] = 2630,
[SMALL_STATE(66)] = 2659,
[SMALL_STATE(67)] = 2695,
[SMALL_STATE(68)] = 2737,
[SMALL_STATE(69)] = 2765,
[SMALL_STATE(70)] = 2787,
[SMALL_STATE(71)] = 2815,
[SMALL_STATE(72)] = 2838,
[SMALL_STATE(73)] = 2859,
[SMALL_STATE(74)] = 2886,
[SMALL_STATE(75)] = 2909,
[SMALL_STATE(76)] = 2930,
[SMALL_STATE(77)] = 2957,
[SMALL_STATE(78)] = 2984,
[SMALL_STATE(79)] = 3011,
[SMALL_STATE(80)] = 3052,
[SMALL_STATE(81)] = 3079,
[SMALL_STATE(82)] = 3112,
[SMALL_STATE(83)] = 3132,
[SMALL_STATE(84)] = 3152,
[SMALL_STATE(85)] = 3190,
[SMALL_STATE(86)] = 3210,
[SMALL_STATE(87)] = 3233,
[SMALL_STATE(88)] = 3252,
[SMALL_STATE(89)] = 3280,
[SMALL_STATE(90)] = 3308,
[SMALL_STATE(91)] = 3332,
[SMALL_STATE(92)] = 3350,
[SMALL_STATE(93)] = 3381,
[SMALL_STATE(94)] = 3406,
[SMALL_STATE(95)] = 3435,
[SMALL_STATE(96)] = 3460,
[SMALL_STATE(97)] = 3489,
[SMALL_STATE(98)] = 3518,
[SMALL_STATE(99)] = 3549,
[SMALL_STATE(100)] = 3578,
[SMALL_STATE(101)] = 3609,
[SMALL_STATE(102)] = 3634,
[SMALL_STATE(103)] = 3663,
[SMALL_STATE(104)] = 3692,
[SMALL_STATE(105)] = 3717,
[SMALL_STATE(106)] = 3742,
[SMALL_STATE(107)] = 3773,
[SMALL_STATE(108)] = 3798,
[SMALL_STATE(109)] = 3823,
[SMALL_STATE(110)] = 3845,
[SMALL_STATE(111)] = 3867,
[SMALL_STATE(112)] = 3889,
[SMALL_STATE(113)] = 3907,
[SMALL_STATE(114)] = 3929,
[SMALL_STATE(115)] = 3947,
[SMALL_STATE(116)] = 3969,
[SMALL_STATE(117)] = 3991,
[SMALL_STATE(118)] = 4013,
[SMALL_STATE(119)] = 4035,
[SMALL_STATE(120)] = 4053,
[SMALL_STATE(121)] = 4075,
[SMALL_STATE(122)] = 4097,
[SMALL_STATE(123)] = 4119,
[SMALL_STATE(124)] = 4141,
[SMALL_STATE(125)] = 4163,
[SMALL_STATE(126)] = 4185,
[SMALL_STATE(127)] = 4207,
[SMALL_STATE(128)] = 4229,
[SMALL_STATE(129)] = 4247,
[SMALL_STATE(130)] = 4269,
[SMALL_STATE(131)] = 4291,
[SMALL_STATE(132)] = 4313,
[SMALL_STATE(133)] = 4339,
[SMALL_STATE(134)] = 4358,
[SMALL_STATE(135)] = 4377,
[SMALL_STATE(136)] = 4390,
[SMALL_STATE(137)] = 4403,
[SMALL_STATE(138)] = 4422,
[SMALL_STATE(139)] = 4434,
[SMALL_STATE(140)] = 4446,
[SMALL_STATE(141)] = 4458,
[SMALL_STATE(142)] = 4470,
[SMALL_STATE(143)] = 4482,
[SMALL_STATE(144)] = 4494,
[SMALL_STATE(145)] = 4514,
[SMALL_STATE(146)] = 4526,
[SMALL_STATE(147)] = 4542,
[SMALL_STATE(148)] = 4564,
[SMALL_STATE(149)] = 4576,
[SMALL_STATE(150)] = 4590,
[SMALL_STATE(151)] = 4602,
[SMALL_STATE(152)] = 4614,
[SMALL_STATE(153)] = 4626,
[SMALL_STATE(154)] = 4644,
[SMALL_STATE(155)] = 4662,
[SMALL_STATE(156)] = 4674,
[SMALL_STATE(157)] = 4686,
[SMALL_STATE(158)] = 4698,
[SMALL_STATE(159)] = 4710,
[SMALL_STATE(160)] = 4722,
[SMALL_STATE(161)] = 4733,
[SMALL_STATE(162)] = 4750,
[SMALL_STATE(163)] = 4767,
[SMALL_STATE(164)] = 4784,
[SMALL_STATE(165)] = 4795,
[SMALL_STATE(166)] = 4806,
[SMALL_STATE(167)] = 4823,
[SMALL_STATE(168)] = 4840,
[SMALL_STATE(169)] = 4851,
[SMALL_STATE(170)] = 4862,
[SMALL_STATE(171)] = 4873,
[SMALL_STATE(172)] = 4890,
[SMALL_STATE(173)] = 4901,
[SMALL_STATE(174)] = 4918,
[SMALL_STATE(175)] = 4929,
[SMALL_STATE(176)] = 4946,
[SMALL_STATE(177)] = 4963,
[SMALL_STATE(178)] = 4977,
[SMALL_STATE(179)] = 4991,
[SMALL_STATE(180)] = 5005,
[SMALL_STATE(181)] = 5017,
[SMALL_STATE(182)] = 5031,
[SMALL_STATE(183)] = 5045,
[SMALL_STATE(184)] = 5059,
[SMALL_STATE(185)] = 5073,
[SMALL_STATE(186)] = 5087,
[SMALL_STATE(187)] = 5101,
[SMALL_STATE(188)] = 5115,
[SMALL_STATE(189)] = 5129,
[SMALL_STATE(190)] = 5141,
[SMALL_STATE(191)] = 5155,
[SMALL_STATE(192)] = 5169,
[SMALL_STATE(193)] = 5181,
[SMALL_STATE(194)] = 5194,
[SMALL_STATE(195)] = 5203,
[SMALL_STATE(196)] = 5216,
[SMALL_STATE(197)] = 5229,
[SMALL_STATE(198)] = 5242,
[SMALL_STATE(199)] = 5255,
[SMALL_STATE(200)] = 5268,
[SMALL_STATE(201)] = 5281,
[SMALL_STATE(202)] = 5294,
[SMALL_STATE(203)] = 5303,
[SMALL_STATE(204)] = 5316,
[SMALL_STATE(205)] = 5329,
[SMALL_STATE(206)] = 5342,
[SMALL_STATE(207)] = 5351,
[SMALL_STATE(208)] = 5360,
[SMALL_STATE(209)] = 5373,
[SMALL_STATE(210)] = 5386,
[SMALL_STATE(211)] = 5399,
[SMALL_STATE(212)] = 5409,
[SMALL_STATE(213)] = 5419,
[SMALL_STATE(214)] = 5426,
[SMALL_STATE(215)] = 5433,
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),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68),
2022-12-07 23:14:25 +03:00
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
2022-12-07 23:14:25 +03:00
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[27] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2),
[29] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68),
2022-12-07 23:14:25 +03:00
[32] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(63),
[35] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(166),
[38] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(144),
[41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(207),
[44] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(212),
[47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(200),
[50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(199),
[53] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(197),
2022-12-07 23:14:25 +03:00
[56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2),
[59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(68),
[84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(12),
[87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(144),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(207),
[95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(212),
[98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(200),
[101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(199),
[104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(197),
[107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT_REPEAT(8),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
2022-12-08 01:15:09 +03:00
[116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT_REPEAT(13),
[119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2),
[121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shape_definition_repeat1, 2),
[123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
2022-12-08 01:15:09 +03:00
[131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(39),
[140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2),
[142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(194),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(194),
[148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT_REPEAT(16),
[151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT_REPEAT(22),
[174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(68),
[177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(212),
[180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(200),
[183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(199),
[186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(197),
[189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(159),
[192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(194),
[195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(194),
[198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(54),
[201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_definition, 4),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_definition, 4),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection, 3),
[213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection, 3),
[215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_definition, 3),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_definition, 3),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end, 2),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__end, 2),
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_definition, 6),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_definition, 6),
[227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_definition, 2),
[243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_definition, 2),
[245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection, 5),
[247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection, 5),
[249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT(157),
[252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__end, 1),
[254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__end, 1),
[256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_definition, 5),
[258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_definition, 5),
[260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__emptyline, 2),
[262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__emptyline, 2),
[264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(186),
[267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(150),
[270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__style_attr_block_repeat1, 2),
[272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 2),
[274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(184),
[277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(160),
[280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(181),
[289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(174),
[292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(178),
[295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(157),
[298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(177),
[301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 2), SHIFT(168),
[304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__root_attribute, 2, .production_id = 2),
[306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__root_attribute, 2, .production_id = 2),
[308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(190),
[311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(151),
[314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(179),
[317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__style_attr_block_repeat1, 2), SHIFT(159),
[320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__root_attribute, 4),
[322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__root_attribute, 4),
[324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shape_block_repeat1, 3),
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_block_repeat1, 3),
[328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__emptyline, 1), REDUCE(sym__emptyline, 2),
[333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__emptyline, 1), REDUCE(sym__emptyline, 2),
[336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67),
[338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158),
[340] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(),
[342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36),
[344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(109),
[347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(136),
[352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_connection_repeat1, 2), SHIFT_REPEAT(136),
[355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat2, 2), SHIFT_REPEAT(210),
[358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat2, 2),
[360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shape_key_repeat2, 2),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_key, 2),
[370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_key, 2),
[372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82),
[374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_key, 1),
[376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_key, 1),
[378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86),
[388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30),
[390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_key, 1), SHIFT(201),
[393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat2, 3),
[397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shape_key_repeat2, 3),
[399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_key, 2), SHIFT(201),
[402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3),
[408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3),
[410] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__shape_path, 1), REDUCE(sym__shape_path, 2), SHIFT(182),
[414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 1), REDUCE(sym__shape_path, 2),
[417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shape_path, 1), REDUCE(sym__shape_path, 2),
[420] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__shape_path, 1), REDUCE(sym__shape_path, 2), SHIFT(119),
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shape_key, 3),
[426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shape_key, 3),
[428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2),
[430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2),
[432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 1), SHIFT(182),
[435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_path, 1),
[437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_path, 1),
[439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 1), SHIFT(119),
[442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 2), SHIFT(182),
[445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_path, 2),
[447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_path, 2),
[449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 2), SHIFT(119),
[452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 3), SHIFT(182),
[455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_path, 3),
[457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__shape_path, 3),
[459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 3), SHIFT(119),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[464] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__shape_path, 2), REDUCE(sym__shape_path, 3), SHIFT(182),
[468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__shape_path, 2), REDUCE(sym__shape_path, 3),
[471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__shape_path, 2), REDUCE(sym__shape_path, 3),
[474] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__shape_path, 2), REDUCE(sym__shape_path, 3), SHIFT(119),
[478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT_REPEAT(86),
[483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_connection_repeat1, 2),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__colon, 2),
[493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__colon, 2),
[495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2), SHIFT_REPEAT(163),
[498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2), SHIFT_REPEAT(211),
[501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2), SHIFT_REPEAT(200),
[504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2), SHIFT_REPEAT(199),
[507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2), SHIFT_REPEAT(197),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 3, .production_id = 1),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 2, .production_id = 1),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shape_path_repeat1, 4, .production_id = 1),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143),
[554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arrow, 2),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow, 1),
[558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shape_definition_repeat1, 2), SHIFT_REPEAT(137),
[561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 2),
[563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attribute, 1),
[565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attribute, 3),
[567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_value, 1),
[569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 3),
[571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_value, 2),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attribute, 3),
[581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat2, 2), SHIFT_REPEAT(204),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_style_attribute, 3),
[586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 6),
[588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 7),
[590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 8),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__inner_style_attribute, 3), REDUCE(sym__inner_style_attribute, 4),
[601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_style_attribute, 4),
[603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 4),
[605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 1),
[607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_block, 5),
[609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 6),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_key, 2), SHIFT(205),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_shape_key, 1), SHIFT(205),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 7),
[627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 3),
[629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 5),
[637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 2),
[639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__connection_attribute, 3),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_block, 4),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2),
[673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(193),
[676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__style_attr_key, 1),
[678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat3, 2),
[680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat3, 2), SHIFT_REPEAT(195),
[683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2),
[685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(196),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
[696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208),
[700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__connection_attr_key, 1),
[710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shape_attr_key, 1),
[712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat1, 2),
[716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shape_key_repeat1, 2), SHIFT_REPEAT(209),
[719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[727] = {.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