6274 lines
176 KiB
C
6274 lines
176 KiB
C
#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 13
|
|
#define STATE_COUNT 179
|
|
#define LARGE_STATE_COUNT 2
|
|
#define SYMBOL_COUNT 61
|
|
#define ALIAS_COUNT 0
|
|
#define TOKEN_COUNT 27
|
|
#define EXTERNAL_TOKEN_COUNT 0
|
|
#define FIELD_COUNT 1
|
|
#define MAX_ALIAS_SEQUENCE_LENGTH 8
|
|
#define PRODUCTION_ID_COUNT 2
|
|
|
|
enum {
|
|
anon_sym_EQ = 1,
|
|
anon_sym_LBRACE = 2,
|
|
anon_sym_RBRACE = 3,
|
|
sym_identifier = 4,
|
|
anon_sym_LPAREN = 5,
|
|
anon_sym_RPAREN = 6,
|
|
sym_numeric_lit = 7,
|
|
anon_sym_DQUOTE = 8,
|
|
aux_sym_string_lit_token1 = 9,
|
|
sym_escape_sequence = 10,
|
|
anon_sym_true = 11,
|
|
anon_sym_false = 12,
|
|
sym_null_lit = 13,
|
|
anon_sym_LBRACK = 14,
|
|
anon_sym_COMMA = 15,
|
|
anon_sym_RBRACK = 16,
|
|
anon_sym_COLON = 17,
|
|
anon_sym_DOT = 18,
|
|
anon_sym_STAR = 19,
|
|
anon_sym_EQ_GT = 20,
|
|
anon_sym_for = 21,
|
|
anon_sym_in = 22,
|
|
anon_sym_if = 23,
|
|
sym_ellipsis = 24,
|
|
anon_sym_QMARK = 25,
|
|
sym_comment = 26,
|
|
sym_config_file = 27,
|
|
sym_body = 28,
|
|
sym_attribute = 29,
|
|
sym_block = 30,
|
|
sym_expression = 31,
|
|
sym_expr_term = 32,
|
|
sym_literal_value = 33,
|
|
sym_string_lit = 34,
|
|
sym_bool_lit = 35,
|
|
sym_collection_value = 36,
|
|
sym_tuple = 37,
|
|
sym_object = 38,
|
|
sym_object_elem = 39,
|
|
sym_index = 40,
|
|
sym_get_attr = 41,
|
|
sym_splat = 42,
|
|
sym_attr_splat = 43,
|
|
sym_full_splat = 44,
|
|
sym_for_expr = 45,
|
|
sym_for_tuple_expr = 46,
|
|
sym_for_object_expr = 47,
|
|
sym_for_intro = 48,
|
|
sym_for_cond = 49,
|
|
sym_variable_expr = 50,
|
|
sym_function_call = 51,
|
|
sym_function_arguments = 52,
|
|
sym_conditional = 53,
|
|
aux_sym_body_repeat1 = 54,
|
|
aux_sym_block_repeat1 = 55,
|
|
aux_sym_string_lit_repeat1 = 56,
|
|
aux_sym_tuple_repeat1 = 57,
|
|
aux_sym_object_repeat1 = 58,
|
|
aux_sym_attr_splat_repeat1 = 59,
|
|
aux_sym_full_splat_repeat1 = 60,
|
|
};
|
|
|
|
static const char * const ts_symbol_names[] = {
|
|
[ts_builtin_sym_end] = "end",
|
|
[anon_sym_EQ] = "=",
|
|
[anon_sym_LBRACE] = "{",
|
|
[anon_sym_RBRACE] = "}",
|
|
[sym_identifier] = "identifier",
|
|
[anon_sym_LPAREN] = "(",
|
|
[anon_sym_RPAREN] = ")",
|
|
[sym_numeric_lit] = "numeric_lit",
|
|
[anon_sym_DQUOTE] = "\"",
|
|
[aux_sym_string_lit_token1] = "string_lit_token1",
|
|
[sym_escape_sequence] = "escape_sequence",
|
|
[anon_sym_true] = "true",
|
|
[anon_sym_false] = "false",
|
|
[sym_null_lit] = "null_lit",
|
|
[anon_sym_LBRACK] = "[",
|
|
[anon_sym_COMMA] = ",",
|
|
[anon_sym_RBRACK] = "]",
|
|
[anon_sym_COLON] = ":",
|
|
[anon_sym_DOT] = ".",
|
|
[anon_sym_STAR] = "*",
|
|
[anon_sym_EQ_GT] = "=>",
|
|
[anon_sym_for] = "for",
|
|
[anon_sym_in] = "in",
|
|
[anon_sym_if] = "if",
|
|
[sym_ellipsis] = "ellipsis",
|
|
[anon_sym_QMARK] = "\?",
|
|
[sym_comment] = "comment",
|
|
[sym_config_file] = "config_file",
|
|
[sym_body] = "body",
|
|
[sym_attribute] = "attribute",
|
|
[sym_block] = "block",
|
|
[sym_expression] = "expression",
|
|
[sym_expr_term] = "expr_term",
|
|
[sym_literal_value] = "literal_value",
|
|
[sym_string_lit] = "string_lit",
|
|
[sym_bool_lit] = "bool_lit",
|
|
[sym_collection_value] = "collection_value",
|
|
[sym_tuple] = "tuple",
|
|
[sym_object] = "object",
|
|
[sym_object_elem] = "object_elem",
|
|
[sym_index] = "index",
|
|
[sym_get_attr] = "get_attr",
|
|
[sym_splat] = "splat",
|
|
[sym_attr_splat] = "attr_splat",
|
|
[sym_full_splat] = "full_splat",
|
|
[sym_for_expr] = "for_expr",
|
|
[sym_for_tuple_expr] = "for_tuple_expr",
|
|
[sym_for_object_expr] = "for_object_expr",
|
|
[sym_for_intro] = "for_intro",
|
|
[sym_for_cond] = "for_cond",
|
|
[sym_variable_expr] = "variable_expr",
|
|
[sym_function_call] = "function_call",
|
|
[sym_function_arguments] = "function_arguments",
|
|
[sym_conditional] = "conditional",
|
|
[aux_sym_body_repeat1] = "body_repeat1",
|
|
[aux_sym_block_repeat1] = "block_repeat1",
|
|
[aux_sym_string_lit_repeat1] = "string_lit_repeat1",
|
|
[aux_sym_tuple_repeat1] = "tuple_repeat1",
|
|
[aux_sym_object_repeat1] = "object_repeat1",
|
|
[aux_sym_attr_splat_repeat1] = "attr_splat_repeat1",
|
|
[aux_sym_full_splat_repeat1] = "full_splat_repeat1",
|
|
};
|
|
|
|
static const TSSymbol ts_symbol_map[] = {
|
|
[ts_builtin_sym_end] = ts_builtin_sym_end,
|
|
[anon_sym_EQ] = anon_sym_EQ,
|
|
[anon_sym_LBRACE] = anon_sym_LBRACE,
|
|
[anon_sym_RBRACE] = anon_sym_RBRACE,
|
|
[sym_identifier] = sym_identifier,
|
|
[anon_sym_LPAREN] = anon_sym_LPAREN,
|
|
[anon_sym_RPAREN] = anon_sym_RPAREN,
|
|
[sym_numeric_lit] = sym_numeric_lit,
|
|
[anon_sym_DQUOTE] = anon_sym_DQUOTE,
|
|
[aux_sym_string_lit_token1] = aux_sym_string_lit_token1,
|
|
[sym_escape_sequence] = sym_escape_sequence,
|
|
[anon_sym_true] = anon_sym_true,
|
|
[anon_sym_false] = anon_sym_false,
|
|
[sym_null_lit] = sym_null_lit,
|
|
[anon_sym_LBRACK] = anon_sym_LBRACK,
|
|
[anon_sym_COMMA] = anon_sym_COMMA,
|
|
[anon_sym_RBRACK] = anon_sym_RBRACK,
|
|
[anon_sym_COLON] = anon_sym_COLON,
|
|
[anon_sym_DOT] = anon_sym_DOT,
|
|
[anon_sym_STAR] = anon_sym_STAR,
|
|
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
|
|
[anon_sym_for] = anon_sym_for,
|
|
[anon_sym_in] = anon_sym_in,
|
|
[anon_sym_if] = anon_sym_if,
|
|
[sym_ellipsis] = sym_ellipsis,
|
|
[anon_sym_QMARK] = anon_sym_QMARK,
|
|
[sym_comment] = sym_comment,
|
|
[sym_config_file] = sym_config_file,
|
|
[sym_body] = sym_body,
|
|
[sym_attribute] = sym_attribute,
|
|
[sym_block] = sym_block,
|
|
[sym_expression] = sym_expression,
|
|
[sym_expr_term] = sym_expr_term,
|
|
[sym_literal_value] = sym_literal_value,
|
|
[sym_string_lit] = sym_string_lit,
|
|
[sym_bool_lit] = sym_bool_lit,
|
|
[sym_collection_value] = sym_collection_value,
|
|
[sym_tuple] = sym_tuple,
|
|
[sym_object] = sym_object,
|
|
[sym_object_elem] = sym_object_elem,
|
|
[sym_index] = sym_index,
|
|
[sym_get_attr] = sym_get_attr,
|
|
[sym_splat] = sym_splat,
|
|
[sym_attr_splat] = sym_attr_splat,
|
|
[sym_full_splat] = sym_full_splat,
|
|
[sym_for_expr] = sym_for_expr,
|
|
[sym_for_tuple_expr] = sym_for_tuple_expr,
|
|
[sym_for_object_expr] = sym_for_object_expr,
|
|
[sym_for_intro] = sym_for_intro,
|
|
[sym_for_cond] = sym_for_cond,
|
|
[sym_variable_expr] = sym_variable_expr,
|
|
[sym_function_call] = sym_function_call,
|
|
[sym_function_arguments] = sym_function_arguments,
|
|
[sym_conditional] = sym_conditional,
|
|
[aux_sym_body_repeat1] = aux_sym_body_repeat1,
|
|
[aux_sym_block_repeat1] = aux_sym_block_repeat1,
|
|
[aux_sym_string_lit_repeat1] = aux_sym_string_lit_repeat1,
|
|
[aux_sym_tuple_repeat1] = aux_sym_tuple_repeat1,
|
|
[aux_sym_object_repeat1] = aux_sym_object_repeat1,
|
|
[aux_sym_attr_splat_repeat1] = aux_sym_attr_splat_repeat1,
|
|
[aux_sym_full_splat_repeat1] = aux_sym_full_splat_repeat1,
|
|
};
|
|
|
|
static const TSSymbolMetadata ts_symbol_metadata[] = {
|
|
[ts_builtin_sym_end] = {
|
|
.visible = false,
|
|
.named = true,
|
|
},
|
|
[anon_sym_EQ] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_LBRACE] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_RBRACE] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[sym_identifier] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[anon_sym_LPAREN] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_RPAREN] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[sym_numeric_lit] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[anon_sym_DQUOTE] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[aux_sym_string_lit_token1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[sym_escape_sequence] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[anon_sym_true] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_false] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[sym_null_lit] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[anon_sym_LBRACK] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_COMMA] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_RBRACK] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_COLON] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_DOT] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_STAR] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_EQ_GT] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_for] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_in] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[anon_sym_if] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[sym_ellipsis] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[anon_sym_QMARK] = {
|
|
.visible = true,
|
|
.named = false,
|
|
},
|
|
[sym_comment] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_config_file] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_body] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_attribute] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_block] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_expression] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_expr_term] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_literal_value] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_string_lit] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_bool_lit] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_collection_value] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_tuple] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_object] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_object_elem] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_index] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_get_attr] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_splat] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_attr_splat] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_full_splat] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_for_expr] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_for_tuple_expr] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_for_object_expr] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_for_intro] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_for_cond] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_variable_expr] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_function_call] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_function_arguments] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[sym_conditional] = {
|
|
.visible = true,
|
|
.named = true,
|
|
},
|
|
[aux_sym_body_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_block_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_string_lit_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_tuple_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_object_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_attr_splat_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
[aux_sym_full_splat_repeat1] = {
|
|
.visible = false,
|
|
.named = false,
|
|
},
|
|
};
|
|
|
|
enum {
|
|
field_name = 1,
|
|
};
|
|
|
|
static const char * const ts_field_names[] = {
|
|
[0] = NULL,
|
|
[field_name] = "name",
|
|
};
|
|
|
|
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
|
|
[1] = {.index = 0, .length = 1},
|
|
};
|
|
|
|
static const TSFieldMapEntry ts_field_map_entries[] = {
|
|
[0] =
|
|
{field_name, 0},
|
|
};
|
|
|
|
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
|
|
[0] = {0},
|
|
};
|
|
|
|
static const uint16_t ts_non_terminal_alias_map[] = {
|
|
0,
|
|
};
|
|
|
|
static inline bool sym_identifier_character_set_1(int32_t c) {
|
|
return (c < 6688
|
|
? (c < 2990
|
|
? (c < 2384
|
|
? (c < 1488
|
|
? (c < 886
|
|
? (c < 216
|
|
? (c < 181
|
|
? (c < 'a'
|
|
? (c >= 'A' && c <= 'Z')
|
|
: (c <= 'z' || c == 170))
|
|
: (c <= 181 || (c < 192
|
|
? c == 186
|
|
: c <= 214)))
|
|
: (c <= 246 || (c < 748
|
|
? (c < 710
|
|
? (c >= 248 && c <= 705)
|
|
: (c <= 721 || (c >= 736 && c <= 740)))
|
|
: (c <= 748 || (c < 880
|
|
? c == 750
|
|
: c <= 884)))))
|
|
: (c <= 887 || (c < 931
|
|
? (c < 904
|
|
? (c < 895
|
|
? (c >= 890 && c <= 893)
|
|
: (c <= 895 || c == 902))
|
|
: (c <= 906 || (c < 910
|
|
? c == 908
|
|
: c <= 929)))
|
|
: (c <= 1013 || (c < 1329
|
|
? (c < 1162
|
|
? (c >= 1015 && c <= 1153)
|
|
: c <= 1327)
|
|
: (c <= 1366 || (c < 1376
|
|
? c == 1369
|
|
: c <= 1416)))))))
|
|
: (c <= 1514 || (c < 1994
|
|
? (c < 1774
|
|
? (c < 1649
|
|
? (c < 1568
|
|
? (c >= 1519 && c <= 1522)
|
|
: (c <= 1610 || (c >= 1646 && c <= 1647)))
|
|
: (c <= 1747 || (c < 1765
|
|
? c == 1749
|
|
: c <= 1766)))
|
|
: (c <= 1775 || (c < 1810
|
|
? (c < 1791
|
|
? (c >= 1786 && c <= 1788)
|
|
: (c <= 1791 || c == 1808))
|
|
: (c <= 1839 || (c < 1969
|
|
? (c >= 1869 && c <= 1957)
|
|
: c <= 1969)))))
|
|
: (c <= 2026 || (c < 2112
|
|
? (c < 2074
|
|
? (c < 2042
|
|
? (c >= 2036 && c <= 2037)
|
|
: (c <= 2042 || (c >= 2048 && c <= 2069)))
|
|
: (c <= 2074 || (c < 2088
|
|
? c == 2084
|
|
: c <= 2088)))
|
|
: (c <= 2136 || (c < 2230
|
|
? (c < 2208
|
|
? (c >= 2144 && c <= 2154)
|
|
: c <= 2228)
|
|
: (c <= 2247 || (c < 2365
|
|
? (c >= 2308 && c <= 2361)
|
|
: c <= 2365)))))))))
|
|
: (c <= 2384 || (c < 2707
|
|
? (c < 2556
|
|
? (c < 2482
|
|
? (c < 2447
|
|
? (c < 2417
|
|
? (c >= 2392 && c <= 2401)
|
|
: (c <= 2432 || (c >= 2437 && c <= 2444)))
|
|
: (c <= 2448 || (c < 2474
|
|
? (c >= 2451 && c <= 2472)
|
|
: c <= 2480)))
|
|
: (c <= 2482 || (c < 2524
|
|
? (c < 2493
|
|
? (c >= 2486 && c <= 2489)
|
|
: (c <= 2493 || c == 2510))
|
|
: (c <= 2525 || (c < 2544
|
|
? (c >= 2527 && c <= 2529)
|
|
: c <= 2545)))))
|
|
: (c <= 2556 || (c < 2616
|
|
? (c < 2602
|
|
? (c < 2575
|
|
? (c >= 2565 && c <= 2570)
|
|
: (c <= 2576 || (c >= 2579 && c <= 2600)))
|
|
: (c <= 2608 || (c < 2613
|
|
? (c >= 2610 && c <= 2611)
|
|
: c <= 2614)))
|
|
: (c <= 2617 || (c < 2674
|
|
? (c < 2654
|
|
? (c >= 2649 && c <= 2652)
|
|
: c <= 2654)
|
|
: (c <= 2676 || (c < 2703
|
|
? (c >= 2693 && c <= 2701)
|
|
: c <= 2705)))))))
|
|
: (c <= 2728 || (c < 2877
|
|
? (c < 2809
|
|
? (c < 2749
|
|
? (c < 2738
|
|
? (c >= 2730 && c <= 2736)
|
|
: (c <= 2739 || (c >= 2741 && c <= 2745)))
|
|
: (c <= 2749 || (c < 2784
|
|
? c == 2768
|
|
: c <= 2785)))
|
|
: (c <= 2809 || (c < 2858
|
|
? (c < 2831
|
|
? (c >= 2821 && c <= 2828)
|
|
: (c <= 2832 || (c >= 2835 && c <= 2856)))
|
|
: (c <= 2864 || (c < 2869
|
|
? (c >= 2866 && c <= 2867)
|
|
: c <= 2873)))))
|
|
: (c <= 2877 || (c < 2962
|
|
? (c < 2947
|
|
? (c < 2911
|
|
? (c >= 2908 && c <= 2909)
|
|
: (c <= 2913 || c == 2929))
|
|
: (c <= 2947 || (c < 2958
|
|
? (c >= 2949 && c <= 2954)
|
|
: c <= 2960)))
|
|
: (c <= 2965 || (c < 2974
|
|
? (c < 2972
|
|
? (c >= 2969 && c <= 2970)
|
|
: c <= 2972)
|
|
: (c <= 2975 || (c < 2984
|
|
? (c >= 2979 && c <= 2980)
|
|
: c <= 2986)))))))))))
|
|
: (c <= 3001 || (c < 4193
|
|
? (c < 3461
|
|
? (c < 3253
|
|
? (c < 3160
|
|
? (c < 3090
|
|
? (c < 3077
|
|
? c == 3024
|
|
: (c <= 3084 || (c >= 3086 && c <= 3088)))
|
|
: (c <= 3112 || (c < 3133
|
|
? (c >= 3114 && c <= 3129)
|
|
: c <= 3133)))
|
|
: (c <= 3162 || (c < 3214
|
|
? (c < 3200
|
|
? (c >= 3168 && c <= 3169)
|
|
: (c <= 3200 || (c >= 3205 && c <= 3212)))
|
|
: (c <= 3216 || (c < 3242
|
|
? (c >= 3218 && c <= 3240)
|
|
: c <= 3251)))))
|
|
: (c <= 3257 || (c < 3346
|
|
? (c < 3313
|
|
? (c < 3294
|
|
? c == 3261
|
|
: (c <= 3294 || (c >= 3296 && c <= 3297)))
|
|
: (c <= 3314 || (c < 3342
|
|
? (c >= 3332 && c <= 3340)
|
|
: c <= 3344)))
|
|
: (c <= 3386 || (c < 3412
|
|
? (c < 3406
|
|
? c == 3389
|
|
: c <= 3406)
|
|
: (c <= 3414 || (c < 3450
|
|
? (c >= 3423 && c <= 3425)
|
|
: c <= 3455)))))))
|
|
: (c <= 3478 || (c < 3762
|
|
? (c < 3648
|
|
? (c < 3520
|
|
? (c < 3507
|
|
? (c >= 3482 && c <= 3505)
|
|
: (c <= 3515 || c == 3517))
|
|
: (c <= 3526 || (c < 3634
|
|
? (c >= 3585 && c <= 3632)
|
|
: c <= 3635)))
|
|
: (c <= 3654 || (c < 3724
|
|
? (c < 3716
|
|
? (c >= 3713 && c <= 3714)
|
|
: (c <= 3716 || (c >= 3718 && c <= 3722)))
|
|
: (c <= 3747 || (c < 3751
|
|
? c == 3749
|
|
: c <= 3760)))))
|
|
: (c <= 3763 || (c < 3913
|
|
? (c < 3804
|
|
? (c < 3776
|
|
? c == 3773
|
|
: (c <= 3780 || c == 3782))
|
|
: (c <= 3807 || (c < 3904
|
|
? c == 3840
|
|
: c <= 3911)))
|
|
: (c <= 3948 || (c < 4159
|
|
? (c < 4096
|
|
? (c >= 3976 && c <= 3980)
|
|
: c <= 4138)
|
|
: (c <= 4159 || (c < 4186
|
|
? (c >= 4176 && c <= 4181)
|
|
: c <= 4189)))))))))
|
|
: (c <= 4193 || (c < 5112
|
|
? (c < 4704
|
|
? (c < 4301
|
|
? (c < 4238
|
|
? (c < 4206
|
|
? (c >= 4197 && c <= 4198)
|
|
: (c <= 4208 || (c >= 4213 && c <= 4225)))
|
|
: (c <= 4238 || (c < 4295
|
|
? (c >= 4256 && c <= 4293)
|
|
: c <= 4295)))
|
|
: (c <= 4301 || (c < 4688
|
|
? (c < 4348
|
|
? (c >= 4304 && c <= 4346)
|
|
: (c <= 4680 || (c >= 4682 && c <= 4685)))
|
|
: (c <= 4694 || (c < 4698
|
|
? c == 4696
|
|
: c <= 4701)))))
|
|
: (c <= 4744 || (c < 4808
|
|
? (c < 4792
|
|
? (c < 4752
|
|
? (c >= 4746 && c <= 4749)
|
|
: (c <= 4784 || (c >= 4786 && c <= 4789)))
|
|
: (c <= 4798 || (c < 4802
|
|
? c == 4800
|
|
: c <= 4805)))
|
|
: (c <= 4822 || (c < 4888
|
|
? (c < 4882
|
|
? (c >= 4824 && c <= 4880)
|
|
: c <= 4885)
|
|
: (c <= 4954 || (c < 5024
|
|
? (c >= 4992 && c <= 5007)
|
|
: c <= 5109)))))))
|
|
: (c <= 5117 || (c < 6103
|
|
? (c < 5902
|
|
? (c < 5792
|
|
? (c < 5743
|
|
? (c >= 5121 && c <= 5740)
|
|
: (c <= 5759 || (c >= 5761 && c <= 5786)))
|
|
: (c <= 5866 || (c < 5888
|
|
? (c >= 5873 && c <= 5880)
|
|
: c <= 5900)))
|
|
: (c <= 5905 || (c < 5984
|
|
? (c < 5952
|
|
? (c >= 5920 && c <= 5937)
|
|
: c <= 5969)
|
|
: (c <= 5996 || (c < 6016
|
|
? (c >= 5998 && c <= 6000)
|
|
: c <= 6067)))))
|
|
: (c <= 6103 || (c < 6400
|
|
? (c < 6279
|
|
? (c < 6176
|
|
? c == 6108
|
|
: (c <= 6264 || (c >= 6272 && c <= 6276)))
|
|
: (c <= 6312 || (c < 6320
|
|
? c == 6314
|
|
: c <= 6389)))
|
|
: (c <= 6430 || (c < 6528
|
|
? (c < 6512
|
|
? (c >= 6480 && c <= 6509)
|
|
: c <= 6516)
|
|
: (c <= 6571 || (c < 6656
|
|
? (c >= 6576 && c <= 6601)
|
|
: c <= 6678)))))))))))))
|
|
: (c <= 6740 || (c < 43259
|
|
? (c < 11264
|
|
? (c < 8064
|
|
? (c < 7406
|
|
? (c < 7168
|
|
? (c < 7043
|
|
? (c < 6917
|
|
? c == 6823
|
|
: (c <= 6963 || (c >= 6981 && c <= 6987)))
|
|
: (c <= 7072 || (c < 7098
|
|
? (c >= 7086 && c <= 7087)
|
|
: c <= 7141)))
|
|
: (c <= 7203 || (c < 7312
|
|
? (c < 7258
|
|
? (c >= 7245 && c <= 7247)
|
|
: (c <= 7293 || (c >= 7296 && c <= 7304)))
|
|
: (c <= 7354 || (c < 7401
|
|
? (c >= 7357 && c <= 7359)
|
|
: c <= 7404)))))
|
|
: (c <= 7411 || (c < 8008
|
|
? (c < 7680
|
|
? (c < 7418
|
|
? (c >= 7413 && c <= 7414)
|
|
: (c <= 7418 || (c >= 7424 && c <= 7615)))
|
|
: (c <= 7957 || (c < 7968
|
|
? (c >= 7960 && c <= 7965)
|
|
: c <= 8005)))
|
|
: (c <= 8013 || (c < 8027
|
|
? (c < 8025
|
|
? (c >= 8016 && c <= 8023)
|
|
: c <= 8025)
|
|
: (c <= 8027 || (c < 8031
|
|
? c == 8029
|
|
: c <= 8061)))))))
|
|
: (c <= 8116 || (c < 8455
|
|
? (c < 8160
|
|
? (c < 8134
|
|
? (c < 8126
|
|
? (c >= 8118 && c <= 8124)
|
|
: (c <= 8126 || (c >= 8130 && c <= 8132)))
|
|
: (c <= 8140 || (c < 8150
|
|
? (c >= 8144 && c <= 8147)
|
|
: c <= 8155)))
|
|
: (c <= 8172 || (c < 8319
|
|
? (c < 8182
|
|
? (c >= 8178 && c <= 8180)
|
|
: (c <= 8188 || c == 8305))
|
|
: (c <= 8319 || (c < 8450
|
|
? (c >= 8336 && c <= 8348)
|
|
: c <= 8450)))))
|
|
: (c <= 8455 || (c < 8490
|
|
? (c < 8484
|
|
? (c < 8469
|
|
? (c >= 8458 && c <= 8467)
|
|
: (c <= 8469 || (c >= 8473 && c <= 8477)))
|
|
: (c <= 8484 || (c < 8488
|
|
? c == 8486
|
|
: c <= 8488)))
|
|
: (c <= 8493 || (c < 8517
|
|
? (c < 8508
|
|
? (c >= 8495 && c <= 8505)
|
|
: c <= 8511)
|
|
: (c <= 8521 || (c < 8579
|
|
? c == 8526
|
|
: c <= 8580)))))))))
|
|
: (c <= 11310 || (c < 12549
|
|
? (c < 11704
|
|
? (c < 11565
|
|
? (c < 11506
|
|
? (c < 11360
|
|
? (c >= 11312 && c <= 11358)
|
|
: (c <= 11492 || (c >= 11499 && c <= 11502)))
|
|
: (c <= 11507 || (c < 11559
|
|
? (c >= 11520 && c <= 11557)
|
|
: c <= 11559)))
|
|
: (c <= 11565 || (c < 11680
|
|
? (c < 11631
|
|
? (c >= 11568 && c <= 11623)
|
|
: (c <= 11631 || (c >= 11648 && c <= 11670)))
|
|
: (c <= 11686 || (c < 11696
|
|
? (c >= 11688 && c <= 11694)
|
|
: c <= 11702)))))
|
|
: (c <= 11710 || (c < 12337
|
|
? (c < 11736
|
|
? (c < 11720
|
|
? (c >= 11712 && c <= 11718)
|
|
: (c <= 11726 || (c >= 11728 && c <= 11734)))
|
|
: (c <= 11742 || (c < 12293
|
|
? c == 11823
|
|
: c <= 12294)))
|
|
: (c <= 12341 || (c < 12445
|
|
? (c < 12353
|
|
? (c >= 12347 && c <= 12348)
|
|
: c <= 12438)
|
|
: (c <= 12447 || (c < 12540
|
|
? (c >= 12449 && c <= 12538)
|
|
: c <= 12543)))))))
|
|
: (c <= 12591 || (c < 42623
|
|
? (c < 40956
|
|
? (c < 13312
|
|
? (c < 12704
|
|
? (c >= 12593 && c <= 12686)
|
|
: (c <= 12735 || (c >= 12784 && c <= 12799)))
|
|
: (c <= 13312 || (c < 19968
|
|
? c == 19903
|
|
: c <= 19968)))
|
|
: (c <= 40956 || (c < 42512
|
|
? (c < 42192
|
|
? (c >= 40960 && c <= 42124)
|
|
: (c <= 42237 || (c >= 42240 && c <= 42508)))
|
|
: (c <= 42527 || (c < 42560
|
|
? (c >= 42538 && c <= 42539)
|
|
: c <= 42606)))))
|
|
: (c <= 42653 || (c < 43011
|
|
? (c < 42891
|
|
? (c < 42775
|
|
? (c >= 42656 && c <= 42725)
|
|
: (c <= 42783 || (c >= 42786 && c <= 42888)))
|
|
: (c <= 42943 || (c < 42997
|
|
? (c >= 42946 && c <= 42954)
|
|
: c <= 43009)))
|
|
: (c <= 43013 || (c < 43072
|
|
? (c < 43020
|
|
? (c >= 43015 && c <= 43018)
|
|
: c <= 43042)
|
|
: (c <= 43123 || (c < 43250
|
|
? (c >= 43138 && c <= 43187)
|
|
: c <= 43255)))))))))))
|
|
: (c <= 43259 || (c < 65313
|
|
? (c < 43808
|
|
? (c < 43642
|
|
? (c < 43488
|
|
? (c < 43360
|
|
? (c < 43274
|
|
? (c >= 43261 && c <= 43262)
|
|
: (c <= 43301 || (c >= 43312 && c <= 43334)))
|
|
: (c <= 43388 || (c < 43471
|
|
? (c >= 43396 && c <= 43442)
|
|
: c <= 43471)))
|
|
: (c <= 43492 || (c < 43584
|
|
? (c < 43514
|
|
? (c >= 43494 && c <= 43503)
|
|
: (c <= 43518 || (c >= 43520 && c <= 43560)))
|
|
: (c <= 43586 || (c < 43616
|
|
? (c >= 43588 && c <= 43595)
|
|
: c <= 43638)))))
|
|
: (c <= 43642 || (c < 43739
|
|
? (c < 43705
|
|
? (c < 43697
|
|
? (c >= 43646 && c <= 43695)
|
|
: (c <= 43697 || (c >= 43701 && c <= 43702)))
|
|
: (c <= 43709 || (c < 43714
|
|
? c == 43712
|
|
: c <= 43714)))
|
|
: (c <= 43741 || (c < 43777
|
|
? (c < 43762
|
|
? (c >= 43744 && c <= 43754)
|
|
: c <= 43764)
|
|
: (c <= 43782 || (c < 43793
|
|
? (c >= 43785 && c <= 43790)
|
|
: c <= 43798)))))))
|
|
: (c <= 43814 || (c < 64287
|
|
? (c < 55216
|
|
? (c < 43888
|
|
? (c < 43824
|
|
? (c >= 43816 && c <= 43822)
|
|
: (c <= 43866 || (c >= 43868 && c <= 43881)))
|
|
: (c <= 44002 || (c < 55203
|
|
? c == 44032
|
|
: c <= 55203)))
|
|
: (c <= 55238 || (c < 64256
|
|
? (c < 63744
|
|
? (c >= 55243 && c <= 55291)
|
|
: (c <= 64109 || (c >= 64112 && c <= 64217)))
|
|
: (c <= 64262 || (c < 64285
|
|
? (c >= 64275 && c <= 64279)
|
|
: c <= 64285)))))
|
|
: (c <= 64296 || (c < 64467
|
|
? (c < 64320
|
|
? (c < 64312
|
|
? (c >= 64298 && c <= 64310)
|
|
: (c <= 64316 || c == 64318))
|
|
: (c <= 64321 || (c < 64326
|
|
? (c >= 64323 && c <= 64324)
|
|
: c <= 64433)))
|
|
: (c <= 64829 || (c < 65008
|
|
? (c < 64914
|
|
? (c >= 64848 && c <= 64911)
|
|
: c <= 64967)
|
|
: (c <= 65019 || (c < 65142
|
|
? (c >= 65136 && c <= 65140)
|
|
: c <= 65276)))))))))
|
|
: (c <= 65338 || (c < 66864
|
|
? (c < 66176
|
|
? (c < 65536
|
|
? (c < 65482
|
|
? (c < 65382
|
|
? (c >= 65345 && c <= 65370)
|
|
: (c <= 65470 || (c >= 65474 && c <= 65479)))
|
|
: (c <= 65487 || (c < 65498
|
|
? (c >= 65490 && c <= 65495)
|
|
: c <= 65500)))
|
|
: (c <= 65547 || (c < 65599
|
|
? (c < 65576
|
|
? (c >= 65549 && c <= 65574)
|
|
: (c <= 65594 || (c >= 65596 && c <= 65597)))
|
|
: (c <= 65613 || (c < 65664
|
|
? (c >= 65616 && c <= 65629)
|
|
: c <= 65786)))))
|
|
: (c <= 66204 || (c < 66464
|
|
? (c < 66370
|
|
? (c < 66304
|
|
? (c >= 66208 && c <= 66256)
|
|
: (c <= 66335 || (c >= 66349 && c <= 66368)))
|
|
: (c <= 66377 || (c < 66432
|
|
? (c >= 66384 && c <= 66421)
|
|
: c <= 66461)))
|
|
: (c <= 66499 || (c < 66736
|
|
? (c < 66560
|
|
? (c >= 66504 && c <= 66511)
|
|
: c <= 66717)
|
|
: (c <= 66771 || (c < 66816
|
|
? (c >= 66776 && c <= 66811)
|
|
: c <= 66855)))))))
|
|
: (c <= 66915 || (c < 67828
|
|
? (c < 67639
|
|
? (c < 67584
|
|
? (c < 67392
|
|
? (c >= 67072 && c <= 67382)
|
|
: (c <= 67413 || (c >= 67424 && c <= 67431)))
|
|
: (c <= 67589 || (c < 67594
|
|
? c == 67592
|
|
: c <= 67637)))
|
|
: (c <= 67640 || (c < 67680
|
|
? (c < 67647
|
|
? c == 67644
|
|
: c <= 67669)
|
|
: (c <= 67702 || (c < 67808
|
|
? (c >= 67712 && c <= 67742)
|
|
: c <= 67826)))))
|
|
: (c <= 67829 || (c < 68117
|
|
? (c < 68030
|
|
? (c < 67872
|
|
? (c >= 67840 && c <= 67861)
|
|
: (c <= 67897 || (c >= 67968 && c <= 68023)))
|
|
: (c <= 68031 || (c < 68112
|
|
? c == 68096
|
|
: c <= 68115)))
|
|
: (c <= 68119 || (c < 68224
|
|
? (c < 68192
|
|
? (c >= 68121 && c <= 68149)
|
|
: c <= 68220)
|
|
: (c <= 68252 || (c < 68297
|
|
? (c >= 68288 && c <= 68295)
|
|
: c <= 68309)))))))))))))));
|
|
}
|
|
|
|
static inline bool sym_identifier_character_set_2(int32_t c) {
|
|
return (c < 6917
|
|
? (c < 2990
|
|
? (c < 2365
|
|
? (c < 1376
|
|
? (c < 750
|
|
? (c < 186
|
|
? (c < 'b'
|
|
? (c < 'A'
|
|
? (c >= '0' && c <= '9')
|
|
: (c <= 'Z' || c == '_'))
|
|
: (c <= 'z' || (c < 181
|
|
? c == 170
|
|
: c <= 181)))
|
|
: (c <= 186 || (c < 710
|
|
? (c < 216
|
|
? (c >= 192 && c <= 214)
|
|
: (c <= 246 || (c >= 248 && c <= 705)))
|
|
: (c <= 721 || (c < 748
|
|
? (c >= 736 && c <= 740)
|
|
: c <= 748)))))
|
|
: (c <= 750 || (c < 908
|
|
? (c < 895
|
|
? (c < 886
|
|
? (c >= 880 && c <= 884)
|
|
: (c <= 887 || (c >= 890 && c <= 893)))
|
|
: (c <= 895 || (c < 904
|
|
? c == 902
|
|
: c <= 906)))
|
|
: (c <= 908 || (c < 1162
|
|
? (c < 931
|
|
? (c >= 910 && c <= 929)
|
|
: (c <= 1013 || (c >= 1015 && c <= 1153)))
|
|
: (c <= 1327 || (c < 1369
|
|
? (c >= 1329 && c <= 1366)
|
|
: c <= 1369)))))))
|
|
: (c <= 1416 || (c < 1969
|
|
? (c < 1765
|
|
? (c < 1646
|
|
? (c < 1519
|
|
? (c >= 1488 && c <= 1514)
|
|
: (c <= 1522 || (c >= 1568 && c <= 1610)))
|
|
: (c <= 1647 || (c < 1749
|
|
? (c >= 1649 && c <= 1747)
|
|
: c <= 1749)))
|
|
: (c <= 1766 || (c < 1808
|
|
? (c < 1786
|
|
? (c >= 1774 && c <= 1775)
|
|
: (c <= 1788 || c == 1791))
|
|
: (c <= 1808 || (c < 1869
|
|
? (c >= 1810 && c <= 1839)
|
|
: c <= 1957)))))
|
|
: (c <= 1969 || (c < 2088
|
|
? (c < 2048
|
|
? (c < 2036
|
|
? (c >= 1994 && c <= 2026)
|
|
: (c <= 2037 || c == 2042))
|
|
: (c <= 2069 || (c < 2084
|
|
? c == 2074
|
|
: c <= 2084)))
|
|
: (c <= 2088 || (c < 2208
|
|
? (c < 2144
|
|
? (c >= 2112 && c <= 2136)
|
|
: c <= 2154)
|
|
: (c <= 2228 || (c < 2308
|
|
? (c >= 2230 && c <= 2247)
|
|
: c <= 2361)))))))))
|
|
: (c <= 2365 || (c < 2707
|
|
? (c < 2544
|
|
? (c < 2474
|
|
? (c < 2437
|
|
? (c < 2392
|
|
? c == 2384
|
|
: (c <= 2401 || (c >= 2417 && c <= 2432)))
|
|
: (c <= 2444 || (c < 2451
|
|
? (c >= 2447 && c <= 2448)
|
|
: c <= 2472)))
|
|
: (c <= 2480 || (c < 2510
|
|
? (c < 2486
|
|
? c == 2482
|
|
: (c <= 2489 || c == 2493))
|
|
: (c <= 2510 || (c < 2527
|
|
? (c >= 2524 && c <= 2525)
|
|
: c <= 2529)))))
|
|
: (c <= 2545 || (c < 2613
|
|
? (c < 2579
|
|
? (c < 2565
|
|
? c == 2556
|
|
: (c <= 2570 || (c >= 2575 && c <= 2576)))
|
|
: (c <= 2600 || (c < 2610
|
|
? (c >= 2602 && c <= 2608)
|
|
: c <= 2611)))
|
|
: (c <= 2614 || (c < 2674
|
|
? (c < 2649
|
|
? (c >= 2616 && c <= 2617)
|
|
: (c <= 2652 || c == 2654))
|
|
: (c <= 2676 || (c < 2703
|
|
? (c >= 2693 && c <= 2701)
|
|
: c <= 2705)))))))
|
|
: (c <= 2728 || (c < 2877
|
|
? (c < 2809
|
|
? (c < 2749
|
|
? (c < 2738
|
|
? (c >= 2730 && c <= 2736)
|
|
: (c <= 2739 || (c >= 2741 && c <= 2745)))
|
|
: (c <= 2749 || (c < 2784
|
|
? c == 2768
|
|
: c <= 2785)))
|
|
: (c <= 2809 || (c < 2858
|
|
? (c < 2831
|
|
? (c >= 2821 && c <= 2828)
|
|
: (c <= 2832 || (c >= 2835 && c <= 2856)))
|
|
: (c <= 2864 || (c < 2869
|
|
? (c >= 2866 && c <= 2867)
|
|
: c <= 2873)))))
|
|
: (c <= 2877 || (c < 2962
|
|
? (c < 2947
|
|
? (c < 2911
|
|
? (c >= 2908 && c <= 2909)
|
|
: (c <= 2913 || c == 2929))
|
|
: (c <= 2947 || (c < 2958
|
|
? (c >= 2949 && c <= 2954)
|
|
: c <= 2960)))
|
|
: (c <= 2965 || (c < 2974
|
|
? (c < 2972
|
|
? (c >= 2969 && c <= 2970)
|
|
: c <= 2972)
|
|
: (c <= 2975 || (c < 2984
|
|
? (c >= 2979 && c <= 2980)
|
|
: c <= 2986)))))))))))
|
|
: (c <= 3001 || (c < 4197
|
|
? (c < 3482
|
|
? (c < 3253
|
|
? (c < 3160
|
|
? (c < 3090
|
|
? (c < 3077
|
|
? c == 3024
|
|
: (c <= 3084 || (c >= 3086 && c <= 3088)))
|
|
: (c <= 3112 || (c < 3133
|
|
? (c >= 3114 && c <= 3129)
|
|
: c <= 3133)))
|
|
: (c <= 3162 || (c < 3214
|
|
? (c < 3200
|
|
? (c >= 3168 && c <= 3169)
|
|
: (c <= 3200 || (c >= 3205 && c <= 3212)))
|
|
: (c <= 3216 || (c < 3242
|
|
? (c >= 3218 && c <= 3240)
|
|
: c <= 3251)))))
|
|
: (c <= 3257 || (c < 3346
|
|
? (c < 3313
|
|
? (c < 3294
|
|
? c == 3261
|
|
: (c <= 3294 || (c >= 3296 && c <= 3297)))
|
|
: (c <= 3314 || (c < 3342
|
|
? (c >= 3332 && c <= 3340)
|
|
: c <= 3344)))
|
|
: (c <= 3386 || (c < 3423
|
|
? (c < 3406
|
|
? c == 3389
|
|
: (c <= 3406 || (c >= 3412 && c <= 3414)))
|
|
: (c <= 3425 || (c < 3461
|
|
? (c >= 3450 && c <= 3455)
|
|
: c <= 3478)))))))
|
|
: (c <= 3505 || (c < 3773
|
|
? (c < 3713
|
|
? (c < 3585
|
|
? (c < 3517
|
|
? (c >= 3507 && c <= 3515)
|
|
: (c <= 3517 || (c >= 3520 && c <= 3526)))
|
|
: (c <= 3632 || (c < 3648
|
|
? (c >= 3634 && c <= 3635)
|
|
: c <= 3654)))
|
|
: (c <= 3714 || (c < 3749
|
|
? (c < 3718
|
|
? c == 3716
|
|
: (c <= 3722 || (c >= 3724 && c <= 3747)))
|
|
: (c <= 3749 || (c < 3762
|
|
? (c >= 3751 && c <= 3760)
|
|
: c <= 3763)))))
|
|
: (c <= 3773 || (c < 3976
|
|
? (c < 3840
|
|
? (c < 3782
|
|
? (c >= 3776 && c <= 3780)
|
|
: (c <= 3782 || (c >= 3804 && c <= 3807)))
|
|
: (c <= 3840 || (c < 3913
|
|
? (c >= 3904 && c <= 3911)
|
|
: c <= 3948)))
|
|
: (c <= 3980 || (c < 4176
|
|
? (c < 4159
|
|
? (c >= 4096 && c <= 4138)
|
|
: c <= 4159)
|
|
: (c <= 4181 || (c < 4193
|
|
? (c >= 4186 && c <= 4189)
|
|
: c <= 4193)))))))))
|
|
: (c <= 4198 || (c < 5121
|
|
? (c < 4746
|
|
? (c < 4304
|
|
? (c < 4256
|
|
? (c < 4213
|
|
? (c >= 4206 && c <= 4208)
|
|
: (c <= 4225 || c == 4238))
|
|
: (c <= 4293 || (c < 4301
|
|
? c == 4295
|
|
: c <= 4301)))
|
|
: (c <= 4346 || (c < 4696
|
|
? (c < 4682
|
|
? (c >= 4348 && c <= 4680)
|
|
: (c <= 4685 || (c >= 4688 && c <= 4694)))
|
|
: (c <= 4696 || (c < 4704
|
|
? (c >= 4698 && c <= 4701)
|
|
: c <= 4744)))))
|
|
: (c <= 4749 || (c < 4824
|
|
? (c < 4800
|
|
? (c < 4786
|
|
? (c >= 4752 && c <= 4784)
|
|
: (c <= 4789 || (c >= 4792 && c <= 4798)))
|
|
: (c <= 4800 || (c < 4808
|
|
? (c >= 4802 && c <= 4805)
|
|
: c <= 4822)))
|
|
: (c <= 4880 || (c < 4992
|
|
? (c < 4888
|
|
? (c >= 4882 && c <= 4885)
|
|
: c <= 4954)
|
|
: (c <= 5007 || (c < 5112
|
|
? (c >= 5024 && c <= 5109)
|
|
: c <= 5117)))))))
|
|
: (c <= 5740 || (c < 6176
|
|
? (c < 5920
|
|
? (c < 5873
|
|
? (c < 5761
|
|
? (c >= 5743 && c <= 5759)
|
|
: (c <= 5786 || (c >= 5792 && c <= 5866)))
|
|
: (c <= 5880 || (c < 5902
|
|
? (c >= 5888 && c <= 5900)
|
|
: c <= 5905)))
|
|
: (c <= 5937 || (c < 6016
|
|
? (c < 5984
|
|
? (c >= 5952 && c <= 5969)
|
|
: (c <= 5996 || (c >= 5998 && c <= 6000)))
|
|
: (c <= 6067 || (c < 6108
|
|
? c == 6103
|
|
: c <= 6108)))))
|
|
: (c <= 6264 || (c < 6512
|
|
? (c < 6320
|
|
? (c < 6279
|
|
? (c >= 6272 && c <= 6276)
|
|
: (c <= 6312 || c == 6314))
|
|
: (c <= 6389 || (c < 6480
|
|
? (c >= 6400 && c <= 6430)
|
|
: c <= 6509)))
|
|
: (c <= 6516 || (c < 6656
|
|
? (c < 6576
|
|
? (c >= 6528 && c <= 6571)
|
|
: c <= 6601)
|
|
: (c <= 6678 || (c < 6823
|
|
? (c >= 6688 && c <= 6740)
|
|
: c <= 6823)))))))))))))
|
|
: (c <= 6963 || (c < 43261
|
|
? (c < 11312
|
|
? (c < 8130
|
|
? (c < 7418
|
|
? (c < 7258
|
|
? (c < 7098
|
|
? (c < 7043
|
|
? (c >= 6981 && c <= 6987)
|
|
: (c <= 7072 || (c >= 7086 && c <= 7087)))
|
|
: (c <= 7141 || (c < 7245
|
|
? (c >= 7168 && c <= 7203)
|
|
: c <= 7247)))
|
|
: (c <= 7293 || (c < 7401
|
|
? (c < 7312
|
|
? (c >= 7296 && c <= 7304)
|
|
: (c <= 7354 || (c >= 7357 && c <= 7359)))
|
|
: (c <= 7404 || (c < 7413
|
|
? (c >= 7406 && c <= 7411)
|
|
: c <= 7414)))))
|
|
: (c <= 7418 || (c < 8025
|
|
? (c < 7968
|
|
? (c < 7680
|
|
? (c >= 7424 && c <= 7615)
|
|
: (c <= 7957 || (c >= 7960 && c <= 7965)))
|
|
: (c <= 8005 || (c < 8016
|
|
? (c >= 8008 && c <= 8013)
|
|
: c <= 8023)))
|
|
: (c <= 8025 || (c < 8064
|
|
? (c < 8029
|
|
? c == 8027
|
|
: (c <= 8029 || (c >= 8031 && c <= 8061)))
|
|
: (c <= 8116 || (c < 8126
|
|
? (c >= 8118 && c <= 8124)
|
|
: c <= 8126)))))))
|
|
: (c <= 8132 || (c < 8458
|
|
? (c < 8255
|
|
? (c < 8160
|
|
? (c < 8144
|
|
? (c >= 8134 && c <= 8140)
|
|
: (c <= 8147 || (c >= 8150 && c <= 8155)))
|
|
: (c <= 8172 || (c < 8182
|
|
? (c >= 8178 && c <= 8180)
|
|
: c <= 8188)))
|
|
: (c <= 8256 || (c < 8336
|
|
? (c < 8305
|
|
? c == 8276
|
|
: (c <= 8305 || c == 8319))
|
|
: (c <= 8348 || (c < 8455
|
|
? c == 8450
|
|
: c <= 8455)))))
|
|
: (c <= 8467 || (c < 8495
|
|
? (c < 8486
|
|
? (c < 8473
|
|
? c == 8469
|
|
: (c <= 8477 || c == 8484))
|
|
: (c <= 8486 || (c < 8490
|
|
? c == 8488
|
|
: c <= 8493)))
|
|
: (c <= 8505 || (c < 8526
|
|
? (c < 8517
|
|
? (c >= 8508 && c <= 8511)
|
|
: c <= 8521)
|
|
: (c <= 8526 || (c < 11264
|
|
? (c >= 8579 && c <= 8580)
|
|
: c <= 11310)))))))))
|
|
: (c <= 11358 || (c < 12593
|
|
? (c < 11712
|
|
? (c < 11568
|
|
? (c < 11520
|
|
? (c < 11499
|
|
? (c >= 11360 && c <= 11492)
|
|
: (c <= 11502 || (c >= 11506 && c <= 11507)))
|
|
: (c <= 11557 || (c < 11565
|
|
? c == 11559
|
|
: c <= 11565)))
|
|
: (c <= 11623 || (c < 11688
|
|
? (c < 11648
|
|
? c == 11631
|
|
: (c <= 11670 || (c >= 11680 && c <= 11686)))
|
|
: (c <= 11694 || (c < 11704
|
|
? (c >= 11696 && c <= 11702)
|
|
: c <= 11710)))))
|
|
: (c <= 11718 || (c < 12347
|
|
? (c < 11823
|
|
? (c < 11728
|
|
? (c >= 11720 && c <= 11726)
|
|
: (c <= 11734 || (c >= 11736 && c <= 11742)))
|
|
: (c <= 11823 || (c < 12337
|
|
? (c >= 12293 && c <= 12294)
|
|
: c <= 12341)))
|
|
: (c <= 12348 || (c < 12449
|
|
? (c < 12445
|
|
? (c >= 12353 && c <= 12438)
|
|
: c <= 12447)
|
|
: (c <= 12538 || (c < 12549
|
|
? (c >= 12540 && c <= 12543)
|
|
: c <= 12591)))))))
|
|
: (c <= 12686 || (c < 42656
|
|
? (c < 40960
|
|
? (c < 19903
|
|
? (c < 12784
|
|
? (c >= 12704 && c <= 12735)
|
|
: (c <= 12799 || c == 13312))
|
|
: (c <= 19903 || (c < 40956
|
|
? c == 19968
|
|
: c <= 40956)))
|
|
: (c <= 42124 || (c < 42538
|
|
? (c < 42240
|
|
? (c >= 42192 && c <= 42237)
|
|
: (c <= 42508 || (c >= 42512 && c <= 42527)))
|
|
: (c <= 42539 || (c < 42623
|
|
? (c >= 42560 && c <= 42606)
|
|
: c <= 42653)))))
|
|
: (c <= 42725 || (c < 43015
|
|
? (c < 42946
|
|
? (c < 42786
|
|
? (c >= 42775 && c <= 42783)
|
|
: (c <= 42888 || (c >= 42891 && c <= 42943)))
|
|
: (c <= 42954 || (c < 43011
|
|
? (c >= 42997 && c <= 43009)
|
|
: c <= 43013)))
|
|
: (c <= 43018 || (c < 43138
|
|
? (c < 43072
|
|
? (c >= 43020 && c <= 43042)
|
|
: c <= 43123)
|
|
: (c <= 43187 || (c < 43259
|
|
? (c >= 43250 && c <= 43255)
|
|
: c <= 43259)))))))))))
|
|
: (c <= 43262 || (c < 65313
|
|
? (c < 43824
|
|
? (c < 43646
|
|
? (c < 43494
|
|
? (c < 43396
|
|
? (c < 43312
|
|
? (c >= 43274 && c <= 43301)
|
|
: (c <= 43334 || (c >= 43360 && c <= 43388)))
|
|
: (c <= 43442 || (c < 43488
|
|
? c == 43471
|
|
: c <= 43492)))
|
|
: (c <= 43503 || (c < 43588
|
|
? (c < 43520
|
|
? (c >= 43514 && c <= 43518)
|
|
: (c <= 43560 || (c >= 43584 && c <= 43586)))
|
|
: (c <= 43595 || (c < 43642
|
|
? (c >= 43616 && c <= 43638)
|
|
: c <= 43642)))))
|
|
: (c <= 43695 || (c < 43744
|
|
? (c < 43712
|
|
? (c < 43701
|
|
? c == 43697
|
|
: (c <= 43702 || (c >= 43705 && c <= 43709)))
|
|
: (c <= 43712 || (c < 43739
|
|
? c == 43714
|
|
: c <= 43741)))
|
|
: (c <= 43754 || (c < 43793
|
|
? (c < 43777
|
|
? (c >= 43762 && c <= 43764)
|
|
: (c <= 43782 || (c >= 43785 && c <= 43790)))
|
|
: (c <= 43798 || (c < 43816
|
|
? (c >= 43808 && c <= 43814)
|
|
: c <= 43822)))))))
|
|
: (c <= 43866 || (c < 64312
|
|
? (c < 63744
|
|
? (c < 55203
|
|
? (c < 43888
|
|
? (c >= 43868 && c <= 43881)
|
|
: (c <= 44002 || c == 44032))
|
|
: (c <= 55203 || (c < 55243
|
|
? (c >= 55216 && c <= 55238)
|
|
: c <= 55291)))
|
|
: (c <= 64109 || (c < 64285
|
|
? (c < 64256
|
|
? (c >= 64112 && c <= 64217)
|
|
: (c <= 64262 || (c >= 64275 && c <= 64279)))
|
|
: (c <= 64285 || (c < 64298
|
|
? (c >= 64287 && c <= 64296)
|
|
: c <= 64310)))))
|
|
: (c <= 64316 || (c < 64914
|
|
? (c < 64326
|
|
? (c < 64320
|
|
? c == 64318
|
|
: (c <= 64321 || (c >= 64323 && c <= 64324)))
|
|
: (c <= 64433 || (c < 64848
|
|
? (c >= 64467 && c <= 64829)
|
|
: c <= 64911)))
|
|
: (c <= 64967 || (c < 65101
|
|
? (c < 65075
|
|
? (c >= 65008 && c <= 65019)
|
|
: c <= 65076)
|
|
: (c <= 65103 || (c < 65142
|
|
? (c >= 65136 && c <= 65140)
|
|
: c <= 65276)))))))))
|
|
: (c <= 65338 || (c < 66816
|
|
? (c < 65664
|
|
? (c < 65498
|
|
? (c < 65474
|
|
? (c < 65345
|
|
? c == 65343
|
|
: (c <= 65370 || (c >= 65382 && c <= 65470)))
|
|
: (c <= 65479 || (c < 65490
|
|
? (c >= 65482 && c <= 65487)
|
|
: c <= 65495)))
|
|
: (c <= 65500 || (c < 65596
|
|
? (c < 65549
|
|
? (c >= 65536 && c <= 65547)
|
|
: (c <= 65574 || (c >= 65576 && c <= 65594)))
|
|
: (c <= 65597 || (c < 65616
|
|
? (c >= 65599 && c <= 65613)
|
|
: c <= 65629)))))
|
|
: (c <= 65786 || (c < 66432
|
|
? (c < 66349
|
|
? (c < 66208
|
|
? (c >= 66176 && c <= 66204)
|
|
: (c <= 66256 || (c >= 66304 && c <= 66335)))
|
|
: (c <= 66368 || (c < 66384
|
|
? (c >= 66370 && c <= 66377)
|
|
: c <= 66421)))
|
|
: (c <= 66461 || (c < 66560
|
|
? (c < 66504
|
|
? (c >= 66464 && c <= 66499)
|
|
: c <= 66511)
|
|
: (c <= 66717 || (c < 66776
|
|
? (c >= 66736 && c <= 66771)
|
|
: c <= 66811)))))))
|
|
: (c <= 66855 || (c < 67828
|
|
? (c < 67594
|
|
? (c < 67424
|
|
? (c < 67072
|
|
? (c >= 66864 && c <= 66915)
|
|
: (c <= 67382 || (c >= 67392 && c <= 67413)))
|
|
: (c <= 67431 || (c < 67592
|
|
? (c >= 67584 && c <= 67589)
|
|
: c <= 67592)))
|
|
: (c <= 67637 || (c < 67680
|
|
? (c < 67644
|
|
? (c >= 67639 && c <= 67640)
|
|
: (c <= 67644 || (c >= 67647 && c <= 67669)))
|
|
: (c <= 67702 || (c < 67808
|
|
? (c >= 67712 && c <= 67742)
|
|
: c <= 67826)))))
|
|
: (c <= 67829 || (c < 68117
|
|
? (c < 68030
|
|
? (c < 67872
|
|
? (c >= 67840 && c <= 67861)
|
|
: (c <= 67897 || (c >= 67968 && c <= 68023)))
|
|
: (c <= 68031 || (c < 68112
|
|
? c == 68096
|
|
: c <= 68115)))
|
|
: (c <= 68119 || (c < 68224
|
|
? (c < 68192
|
|
? (c >= 68121 && c <= 68149)
|
|
: c <= 68220)
|
|
: (c <= 68252 || (c < 68297
|
|
? (c >= 68288 && c <= 68295)
|
|
: c <= 68309)))))))))))))));
|
|
}
|
|
|
|
static inline bool sym_identifier_character_set_3(int32_t c) {
|
|
return (c < 6917
|
|
? (c < 2990
|
|
? (c < 2365
|
|
? (c < 1376
|
|
? (c < 750
|
|
? (c < 186
|
|
? (c < 'a'
|
|
? (c < 'A'
|
|
? (c >= '0' && c <= '9')
|
|
: (c <= 'Z' || c == '_'))
|
|
: (c <= 'z' || (c < 181
|
|
? c == 170
|
|
: c <= 181)))
|
|
: (c <= 186 || (c < 710
|
|
? (c < 216
|
|
? (c >= 192 && c <= 214)
|
|
: (c <= 246 || (c >= 248 && c <= 705)))
|
|
: (c <= 721 || (c < 748
|
|
? (c >= 736 && c <= 740)
|
|
: c <= 748)))))
|
|
: (c <= 750 || (c < 908
|
|
? (c < 895
|
|
? (c < 886
|
|
? (c >= 880 && c <= 884)
|
|
: (c <= 887 || (c >= 890 && c <= 893)))
|
|
: (c <= 895 || (c < 904
|
|
? c == 902
|
|
: c <= 906)))
|
|
: (c <= 908 || (c < 1162
|
|
? (c < 931
|
|
? (c >= 910 && c <= 929)
|
|
: (c <= 1013 || (c >= 1015 && c <= 1153)))
|
|
: (c <= 1327 || (c < 1369
|
|
? (c >= 1329 && c <= 1366)
|
|
: c <= 1369)))))))
|
|
: (c <= 1416 || (c < 1969
|
|
? (c < 1765
|
|
? (c < 1646
|
|
? (c < 1519
|
|
? (c >= 1488 && c <= 1514)
|
|
: (c <= 1522 || (c >= 1568 && c <= 1610)))
|
|
: (c <= 1647 || (c < 1749
|
|
? (c >= 1649 && c <= 1747)
|
|
: c <= 1749)))
|
|
: (c <= 1766 || (c < 1808
|
|
? (c < 1786
|
|
? (c >= 1774 && c <= 1775)
|
|
: (c <= 1788 || c == 1791))
|
|
: (c <= 1808 || (c < 1869
|
|
? (c >= 1810 && c <= 1839)
|
|
: c <= 1957)))))
|
|
: (c <= 1969 || (c < 2088
|
|
? (c < 2048
|
|
? (c < 2036
|
|
? (c >= 1994 && c <= 2026)
|
|
: (c <= 2037 || c == 2042))
|
|
: (c <= 2069 || (c < 2084
|
|
? c == 2074
|
|
: c <= 2084)))
|
|
: (c <= 2088 || (c < 2208
|
|
? (c < 2144
|
|
? (c >= 2112 && c <= 2136)
|
|
: c <= 2154)
|
|
: (c <= 2228 || (c < 2308
|
|
? (c >= 2230 && c <= 2247)
|
|
: c <= 2361)))))))))
|
|
: (c <= 2365 || (c < 2707
|
|
? (c < 2544
|
|
? (c < 2474
|
|
? (c < 2437
|
|
? (c < 2392
|
|
? c == 2384
|
|
: (c <= 2401 || (c >= 2417 && c <= 2432)))
|
|
: (c <= 2444 || (c < 2451
|
|
? (c >= 2447 && c <= 2448)
|
|
: c <= 2472)))
|
|
: (c <= 2480 || (c < 2510
|
|
? (c < 2486
|
|
? c == 2482
|
|
: (c <= 2489 || c == 2493))
|
|
: (c <= 2510 || (c < 2527
|
|
? (c >= 2524 && c <= 2525)
|
|
: c <= 2529)))))
|
|
: (c <= 2545 || (c < 2613
|
|
? (c < 2579
|
|
? (c < 2565
|
|
? c == 2556
|
|
: (c <= 2570 || (c >= 2575 && c <= 2576)))
|
|
: (c <= 2600 || (c < 2610
|
|
? (c >= 2602 && c <= 2608)
|
|
: c <= 2611)))
|
|
: (c <= 2614 || (c < 2674
|
|
? (c < 2649
|
|
? (c >= 2616 && c <= 2617)
|
|
: (c <= 2652 || c == 2654))
|
|
: (c <= 2676 || (c < 2703
|
|
? (c >= 2693 && c <= 2701)
|
|
: c <= 2705)))))))
|
|
: (c <= 2728 || (c < 2877
|
|
? (c < 2809
|
|
? (c < 2749
|
|
? (c < 2738
|
|
? (c >= 2730 && c <= 2736)
|
|
: (c <= 2739 || (c >= 2741 && c <= 2745)))
|
|
: (c <= 2749 || (c < 2784
|
|
? c == 2768
|
|
: c <= 2785)))
|
|
: (c <= 2809 || (c < 2858
|
|
? (c < 2831
|
|
? (c >= 2821 && c <= 2828)
|
|
: (c <= 2832 || (c >= 2835 && c <= 2856)))
|
|
: (c <= 2864 || (c < 2869
|
|
? (c >= 2866 && c <= 2867)
|
|
: c <= 2873)))))
|
|
: (c <= 2877 || (c < 2962
|
|
? (c < 2947
|
|
? (c < 2911
|
|
? (c >= 2908 && c <= 2909)
|
|
: (c <= 2913 || c == 2929))
|
|
: (c <= 2947 || (c < 2958
|
|
? (c >= 2949 && c <= 2954)
|
|
: c <= 2960)))
|
|
: (c <= 2965 || (c < 2974
|
|
? (c < 2972
|
|
? (c >= 2969 && c <= 2970)
|
|
: c <= 2972)
|
|
: (c <= 2975 || (c < 2984
|
|
? (c >= 2979 && c <= 2980)
|
|
: c <= 2986)))))))))))
|
|
: (c <= 3001 || (c < 4197
|
|
? (c < 3482
|
|
? (c < 3253
|
|
? (c < 3160
|
|
? (c < 3090
|
|
? (c < 3077
|
|
? c == 3024
|
|
: (c <= 3084 || (c >= 3086 && c <= 3088)))
|
|
: (c <= 3112 || (c < 3133
|
|
? (c >= 3114 && c <= 3129)
|
|
: c <= 3133)))
|
|
: (c <= 3162 || (c < 3214
|
|
? (c < 3200
|
|
? (c >= 3168 && c <= 3169)
|
|
: (c <= 3200 || (c >= 3205 && c <= 3212)))
|
|
: (c <= 3216 || (c < 3242
|
|
? (c >= 3218 && c <= 3240)
|
|
: c <= 3251)))))
|
|
: (c <= 3257 || (c < 3346
|
|
? (c < 3313
|
|
? (c < 3294
|
|
? c == 3261
|
|
: (c <= 3294 || (c >= 3296 && c <= 3297)))
|
|
: (c <= 3314 || (c < 3342
|
|
? (c >= 3332 && c <= 3340)
|
|
: c <= 3344)))
|
|
: (c <= 3386 || (c < 3423
|
|
? (c < 3406
|
|
? c == 3389
|
|
: (c <= 3406 || (c >= 3412 && c <= 3414)))
|
|
: (c <= 3425 || (c < 3461
|
|
? (c >= 3450 && c <= 3455)
|
|
: c <= 3478)))))))
|
|
: (c <= 3505 || (c < 3773
|
|
? (c < 3713
|
|
? (c < 3585
|
|
? (c < 3517
|
|
? (c >= 3507 && c <= 3515)
|
|
: (c <= 3517 || (c >= 3520 && c <= 3526)))
|
|
: (c <= 3632 || (c < 3648
|
|
? (c >= 3634 && c <= 3635)
|
|
: c <= 3654)))
|
|
: (c <= 3714 || (c < 3749
|
|
? (c < 3718
|
|
? c == 3716
|
|
: (c <= 3722 || (c >= 3724 && c <= 3747)))
|
|
: (c <= 3749 || (c < 3762
|
|
? (c >= 3751 && c <= 3760)
|
|
: c <= 3763)))))
|
|
: (c <= 3773 || (c < 3976
|
|
? (c < 3840
|
|
? (c < 3782
|
|
? (c >= 3776 && c <= 3780)
|
|
: (c <= 3782 || (c >= 3804 && c <= 3807)))
|
|
: (c <= 3840 || (c < 3913
|
|
? (c >= 3904 && c <= 3911)
|
|
: c <= 3948)))
|
|
: (c <= 3980 || (c < 4176
|
|
? (c < 4159
|
|
? (c >= 4096 && c <= 4138)
|
|
: c <= 4159)
|
|
: (c <= 4181 || (c < 4193
|
|
? (c >= 4186 && c <= 4189)
|
|
: c <= 4193)))))))))
|
|
: (c <= 4198 || (c < 5121
|
|
? (c < 4746
|
|
? (c < 4304
|
|
? (c < 4256
|
|
? (c < 4213
|
|
? (c >= 4206 && c <= 4208)
|
|
: (c <= 4225 || c == 4238))
|
|
: (c <= 4293 || (c < 4301
|
|
? c == 4295
|
|
: c <= 4301)))
|
|
: (c <= 4346 || (c < 4696
|
|
? (c < 4682
|
|
? (c >= 4348 && c <= 4680)
|
|
: (c <= 4685 || (c >= 4688 && c <= 4694)))
|
|
: (c <= 4696 || (c < 4704
|
|
? (c >= 4698 && c <= 4701)
|
|
: c <= 4744)))))
|
|
: (c <= 4749 || (c < 4824
|
|
? (c < 4800
|
|
? (c < 4786
|
|
? (c >= 4752 && c <= 4784)
|
|
: (c <= 4789 || (c >= 4792 && c <= 4798)))
|
|
: (c <= 4800 || (c < 4808
|
|
? (c >= 4802 && c <= 4805)
|
|
: c <= 4822)))
|
|
: (c <= 4880 || (c < 4992
|
|
? (c < 4888
|
|
? (c >= 4882 && c <= 4885)
|
|
: c <= 4954)
|
|
: (c <= 5007 || (c < 5112
|
|
? (c >= 5024 && c <= 5109)
|
|
: c <= 5117)))))))
|
|
: (c <= 5740 || (c < 6176
|
|
? (c < 5920
|
|
? (c < 5873
|
|
? (c < 5761
|
|
? (c >= 5743 && c <= 5759)
|
|
: (c <= 5786 || (c >= 5792 && c <= 5866)))
|
|
: (c <= 5880 || (c < 5902
|
|
? (c >= 5888 && c <= 5900)
|
|
: c <= 5905)))
|
|
: (c <= 5937 || (c < 6016
|
|
? (c < 5984
|
|
? (c >= 5952 && c <= 5969)
|
|
: (c <= 5996 || (c >= 5998 && c <= 6000)))
|
|
: (c <= 6067 || (c < 6108
|
|
? c == 6103
|
|
: c <= 6108)))))
|
|
: (c <= 6264 || (c < 6512
|
|
? (c < 6320
|
|
? (c < 6279
|
|
? (c >= 6272 && c <= 6276)
|
|
: (c <= 6312 || c == 6314))
|
|
: (c <= 6389 || (c < 6480
|
|
? (c >= 6400 && c <= 6430)
|
|
: c <= 6509)))
|
|
: (c <= 6516 || (c < 6656
|
|
? (c < 6576
|
|
? (c >= 6528 && c <= 6571)
|
|
: c <= 6601)
|
|
: (c <= 6678 || (c < 6823
|
|
? (c >= 6688 && c <= 6740)
|
|
: c <= 6823)))))))))))))
|
|
: (c <= 6963 || (c < 43261
|
|
? (c < 11312
|
|
? (c < 8130
|
|
? (c < 7418
|
|
? (c < 7258
|
|
? (c < 7098
|
|
? (c < 7043
|
|
? (c >= 6981 && c <= 6987)
|
|
: (c <= 7072 || (c >= 7086 && c <= 7087)))
|
|
: (c <= 7141 || (c < 7245
|
|
? (c >= 7168 && c <= 7203)
|
|
: c <= 7247)))
|
|
: (c <= 7293 || (c < 7401
|
|
? (c < 7312
|
|
? (c >= 7296 && c <= 7304)
|
|
: (c <= 7354 || (c >= 7357 && c <= 7359)))
|
|
: (c <= 7404 || (c < 7413
|
|
? (c >= 7406 && c <= 7411)
|
|
: c <= 7414)))))
|
|
: (c <= 7418 || (c < 8025
|
|
? (c < 7968
|
|
? (c < 7680
|
|
? (c >= 7424 && c <= 7615)
|
|
: (c <= 7957 || (c >= 7960 && c <= 7965)))
|
|
: (c <= 8005 || (c < 8016
|
|
? (c >= 8008 && c <= 8013)
|
|
: c <= 8023)))
|
|
: (c <= 8025 || (c < 8064
|
|
? (c < 8029
|
|
? c == 8027
|
|
: (c <= 8029 || (c >= 8031 && c <= 8061)))
|
|
: (c <= 8116 || (c < 8126
|
|
? (c >= 8118 && c <= 8124)
|
|
: c <= 8126)))))))
|
|
: (c <= 8132 || (c < 8458
|
|
? (c < 8255
|
|
? (c < 8160
|
|
? (c < 8144
|
|
? (c >= 8134 && c <= 8140)
|
|
: (c <= 8147 || (c >= 8150 && c <= 8155)))
|
|
: (c <= 8172 || (c < 8182
|
|
? (c >= 8178 && c <= 8180)
|
|
: c <= 8188)))
|
|
: (c <= 8256 || (c < 8336
|
|
? (c < 8305
|
|
? c == 8276
|
|
: (c <= 8305 || c == 8319))
|
|
: (c <= 8348 || (c < 8455
|
|
? c == 8450
|
|
: c <= 8455)))))
|
|
: (c <= 8467 || (c < 8495
|
|
? (c < 8486
|
|
? (c < 8473
|
|
? c == 8469
|
|
: (c <= 8477 || c == 8484))
|
|
: (c <= 8486 || (c < 8490
|
|
? c == 8488
|
|
: c <= 8493)))
|
|
: (c <= 8505 || (c < 8526
|
|
? (c < 8517
|
|
? (c >= 8508 && c <= 8511)
|
|
: c <= 8521)
|
|
: (c <= 8526 || (c < 11264
|
|
? (c >= 8579 && c <= 8580)
|
|
: c <= 11310)))))))))
|
|
: (c <= 11358 || (c < 12593
|
|
? (c < 11712
|
|
? (c < 11568
|
|
? (c < 11520
|
|
? (c < 11499
|
|
? (c >= 11360 && c <= 11492)
|
|
: (c <= 11502 || (c >= 11506 && c <= 11507)))
|
|
: (c <= 11557 || (c < 11565
|
|
? c == 11559
|
|
: c <= 11565)))
|
|
: (c <= 11623 || (c < 11688
|
|
? (c < 11648
|
|
? c == 11631
|
|
: (c <= 11670 || (c >= 11680 && c <= 11686)))
|
|
: (c <= 11694 || (c < 11704
|
|
? (c >= 11696 && c <= 11702)
|
|
: c <= 11710)))))
|
|
: (c <= 11718 || (c < 12347
|
|
? (c < 11823
|
|
? (c < 11728
|
|
? (c >= 11720 && c <= 11726)
|
|
: (c <= 11734 || (c >= 11736 && c <= 11742)))
|
|
: (c <= 11823 || (c < 12337
|
|
? (c >= 12293 && c <= 12294)
|
|
: c <= 12341)))
|
|
: (c <= 12348 || (c < 12449
|
|
? (c < 12445
|
|
? (c >= 12353 && c <= 12438)
|
|
: c <= 12447)
|
|
: (c <= 12538 || (c < 12549
|
|
? (c >= 12540 && c <= 12543)
|
|
: c <= 12591)))))))
|
|
: (c <= 12686 || (c < 42656
|
|
? (c < 40960
|
|
? (c < 19903
|
|
? (c < 12784
|
|
? (c >= 12704 && c <= 12735)
|
|
: (c <= 12799 || c == 13312))
|
|
: (c <= 19903 || (c < 40956
|
|
? c == 19968
|
|
: c <= 40956)))
|
|
: (c <= 42124 || (c < 42538
|
|
? (c < 42240
|
|
? (c >= 42192 && c <= 42237)
|
|
: (c <= 42508 || (c >= 42512 && c <= 42527)))
|
|
: (c <= 42539 || (c < 42623
|
|
? (c >= 42560 && c <= 42606)
|
|
: c <= 42653)))))
|
|
: (c <= 42725 || (c < 43015
|
|
? (c < 42946
|
|
? (c < 42786
|
|
? (c >= 42775 && c <= 42783)
|
|
: (c <= 42888 || (c >= 42891 && c <= 42943)))
|
|
: (c <= 42954 || (c < 43011
|
|
? (c >= 42997 && c <= 43009)
|
|
: c <= 43013)))
|
|
: (c <= 43018 || (c < 43138
|
|
? (c < 43072
|
|
? (c >= 43020 && c <= 43042)
|
|
: c <= 43123)
|
|
: (c <= 43187 || (c < 43259
|
|
? (c >= 43250 && c <= 43255)
|
|
: c <= 43259)))))))))))
|
|
: (c <= 43262 || (c < 65313
|
|
? (c < 43824
|
|
? (c < 43646
|
|
? (c < 43494
|
|
? (c < 43396
|
|
? (c < 43312
|
|
? (c >= 43274 && c <= 43301)
|
|
: (c <= 43334 || (c >= 43360 && c <= 43388)))
|
|
: (c <= 43442 || (c < 43488
|
|
? c == 43471
|
|
: c <= 43492)))
|
|
: (c <= 43503 || (c < 43588
|
|
? (c < 43520
|
|
? (c >= 43514 && c <= 43518)
|
|
: (c <= 43560 || (c >= 43584 && c <= 43586)))
|
|
: (c <= 43595 || (c < 43642
|
|
? (c >= 43616 && c <= 43638)
|
|
: c <= 43642)))))
|
|
: (c <= 43695 || (c < 43744
|
|
? (c < 43712
|
|
? (c < 43701
|
|
? c == 43697
|
|
: (c <= 43702 || (c >= 43705 && c <= 43709)))
|
|
: (c <= 43712 || (c < 43739
|
|
? c == 43714
|
|
: c <= 43741)))
|
|
: (c <= 43754 || (c < 43793
|
|
? (c < 43777
|
|
? (c >= 43762 && c <= 43764)
|
|
: (c <= 43782 || (c >= 43785 && c <= 43790)))
|
|
: (c <= 43798 || (c < 43816
|
|
? (c >= 43808 && c <= 43814)
|
|
: c <= 43822)))))))
|
|
: (c <= 43866 || (c < 64312
|
|
? (c < 63744
|
|
? (c < 55203
|
|
? (c < 43888
|
|
? (c >= 43868 && c <= 43881)
|
|
: (c <= 44002 || c == 44032))
|
|
: (c <= 55203 || (c < 55243
|
|
? (c >= 55216 && c <= 55238)
|
|
: c <= 55291)))
|
|
: (c <= 64109 || (c < 64285
|
|
? (c < 64256
|
|
? (c >= 64112 && c <= 64217)
|
|
: (c <= 64262 || (c >= 64275 && c <= 64279)))
|
|
: (c <= 64285 || (c < 64298
|
|
? (c >= 64287 && c <= 64296)
|
|
: c <= 64310)))))
|
|
: (c <= 64316 || (c < 64914
|
|
? (c < 64326
|
|
? (c < 64320
|
|
? c == 64318
|
|
: (c <= 64321 || (c >= 64323 && c <= 64324)))
|
|
: (c <= 64433 || (c < 64848
|
|
? (c >= 64467 && c <= 64829)
|
|
: c <= 64911)))
|
|
: (c <= 64967 || (c < 65101
|
|
? (c < 65075
|
|
? (c >= 65008 && c <= 65019)
|
|
: c <= 65076)
|
|
: (c <= 65103 || (c < 65142
|
|
? (c >= 65136 && c <= 65140)
|
|
: c <= 65276)))))))))
|
|
: (c <= 65338 || (c < 66816
|
|
? (c < 65664
|
|
? (c < 65498
|
|
? (c < 65474
|
|
? (c < 65345
|
|
? c == 65343
|
|
: (c <= 65370 || (c >= 65382 && c <= 65470)))
|
|
: (c <= 65479 || (c < 65490
|
|
? (c >= 65482 && c <= 65487)
|
|
: c <= 65495)))
|
|
: (c <= 65500 || (c < 65596
|
|
? (c < 65549
|
|
? (c >= 65536 && c <= 65547)
|
|
: (c <= 65574 || (c >= 65576 && c <= 65594)))
|
|
: (c <= 65597 || (c < 65616
|
|
? (c >= 65599 && c <= 65613)
|
|
: c <= 65629)))))
|
|
: (c <= 65786 || (c < 66432
|
|
? (c < 66349
|
|
? (c < 66208
|
|
? (c >= 66176 && c <= 66204)
|
|
: (c <= 66256 || (c >= 66304 && c <= 66335)))
|
|
: (c <= 66368 || (c < 66384
|
|
? (c >= 66370 && c <= 66377)
|
|
: c <= 66421)))
|
|
: (c <= 66461 || (c < 66560
|
|
? (c < 66504
|
|
? (c >= 66464 && c <= 66499)
|
|
: c <= 66511)
|
|
: (c <= 66717 || (c < 66776
|
|
? (c >= 66736 && c <= 66771)
|
|
: c <= 66811)))))))
|
|
: (c <= 66855 || (c < 67828
|
|
? (c < 67594
|
|
? (c < 67424
|
|
? (c < 67072
|
|
? (c >= 66864 && c <= 66915)
|
|
: (c <= 67382 || (c >= 67392 && c <= 67413)))
|
|
: (c <= 67431 || (c < 67592
|
|
? (c >= 67584 && c <= 67589)
|
|
: c <= 67592)))
|
|
: (c <= 67637 || (c < 67680
|
|
? (c < 67644
|
|
? (c >= 67639 && c <= 67640)
|
|
: (c <= 67644 || (c >= 67647 && c <= 67669)))
|
|
: (c <= 67702 || (c < 67808
|
|
? (c >= 67712 && c <= 67742)
|
|
: c <= 67826)))))
|
|
: (c <= 67829 || (c < 68117
|
|
? (c < 68030
|
|
? (c < 67872
|
|
? (c >= 67840 && c <= 67861)
|
|
: (c <= 67897 || (c >= 67968 && c <= 68023)))
|
|
: (c <= 68031 || (c < 68112
|
|
? c == 68096
|
|
: c <= 68115)))
|
|
: (c <= 68119 || (c < 68224
|
|
? (c < 68192
|
|
? (c >= 68121 && c <= 68149)
|
|
: c <= 68220)
|
|
: (c <= 68252 || (c < 68297
|
|
? (c >= 68288 && c <= 68295)
|
|
: c <= 68309)))))))))))))));
|
|
}
|
|
|
|
static bool ts_lex(TSLexer *lexer, TSStateId state) {
|
|
START_LEXER();
|
|
eof = lexer->eof(lexer);
|
|
switch (state) {
|
|
case 0:
|
|
if (eof) ADVANCE(37);
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '(') ADVANCE(55);
|
|
if (lookahead == ')') ADVANCE(56);
|
|
if (lookahead == '*') ADVANCE(79);
|
|
if (lookahead == ',') ADVANCE(74);
|
|
if (lookahead == '.') ADVANCE(78);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == ':') ADVANCE(76);
|
|
if (lookahead == '=') ADVANCE(39);
|
|
if (lookahead == '?') ADVANCE(86);
|
|
if (lookahead == '[') ADVANCE(73);
|
|
if (lookahead == '\\') ADVANCE(24);
|
|
if (lookahead == ']') ADVANCE(75);
|
|
if (lookahead == 'f') ADVANCE(11);
|
|
if (lookahead == 'i') ADVANCE(14);
|
|
if (lookahead == 'n') ADVANCE(22);
|
|
if (lookahead == 't') ADVANCE(19);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '}') ADVANCE(41);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(35)
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57);
|
|
END_STATE();
|
|
case 1:
|
|
if (lookahead == ' ') ADVANCE(61);
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(65);
|
|
if (lookahead == '/') ADVANCE(62);
|
|
if (lookahead == '\\') ADVANCE(24);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r') SKIP(5)
|
|
if (lookahead != 0) ADVANCE(65);
|
|
END_STATE();
|
|
case 2:
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '(') ADVANCE(55);
|
|
if (lookahead == ')') ADVANCE(56);
|
|
if (lookahead == '*') ADVANCE(79);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == '=') ADVANCE(10);
|
|
if (lookahead == '?') ADVANCE(86);
|
|
if (lookahead == '[') ADVANCE(73);
|
|
if (lookahead == 'f') ADVANCE(43);
|
|
if (lookahead == 'n') ADVANCE(53);
|
|
if (lookahead == 't') ADVANCE(50);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(2)
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57);
|
|
if (sym_identifier_character_set_1(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 3:
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '(') ADVANCE(55);
|
|
if (lookahead == '.') ADVANCE(77);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == ':') ADVANCE(76);
|
|
if (lookahead == '=') ADVANCE(38);
|
|
if (lookahead == '?') ADVANCE(86);
|
|
if (lookahead == '[') ADVANCE(73);
|
|
if (lookahead == ']') ADVANCE(75);
|
|
if (lookahead == 'f') ADVANCE(42);
|
|
if (lookahead == 'n') ADVANCE(53);
|
|
if (lookahead == 't') ADVANCE(50);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '}') ADVANCE(41);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(3)
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57);
|
|
if (sym_identifier_character_set_1(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 4:
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == '=') ADVANCE(38);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(4)
|
|
if (sym_identifier_character_set_1(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 5:
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(5)
|
|
END_STATE();
|
|
case 6:
|
|
if (lookahead == '*') ADVANCE(8);
|
|
if (lookahead == '/') ADVANCE(88);
|
|
END_STATE();
|
|
case 7:
|
|
if (lookahead == '*') ADVANCE(7);
|
|
if (lookahead == '/') ADVANCE(87);
|
|
if (lookahead != 0) ADVANCE(8);
|
|
END_STATE();
|
|
case 8:
|
|
if (lookahead == '*') ADVANCE(7);
|
|
if (lookahead != 0) ADVANCE(8);
|
|
END_STATE();
|
|
case 9:
|
|
if (lookahead == '.') ADVANCE(85);
|
|
END_STATE();
|
|
case 10:
|
|
if (lookahead == '>') ADVANCE(80);
|
|
END_STATE();
|
|
case 11:
|
|
if (lookahead == 'a') ADVANCE(15);
|
|
if (lookahead == 'o') ADVANCE(18);
|
|
END_STATE();
|
|
case 12:
|
|
if (lookahead == 'e') ADVANCE(67);
|
|
END_STATE();
|
|
case 13:
|
|
if (lookahead == 'e') ADVANCE(69);
|
|
END_STATE();
|
|
case 14:
|
|
if (lookahead == 'f') ADVANCE(84);
|
|
if (lookahead == 'n') ADVANCE(83);
|
|
END_STATE();
|
|
case 15:
|
|
if (lookahead == 'l') ADVANCE(20);
|
|
END_STATE();
|
|
case 16:
|
|
if (lookahead == 'l') ADVANCE(71);
|
|
END_STATE();
|
|
case 17:
|
|
if (lookahead == 'l') ADVANCE(16);
|
|
END_STATE();
|
|
case 18:
|
|
if (lookahead == 'r') ADVANCE(81);
|
|
END_STATE();
|
|
case 19:
|
|
if (lookahead == 'r') ADVANCE(21);
|
|
END_STATE();
|
|
case 20:
|
|
if (lookahead == 's') ADVANCE(13);
|
|
END_STATE();
|
|
case 21:
|
|
if (lookahead == 'u') ADVANCE(12);
|
|
END_STATE();
|
|
case 22:
|
|
if (lookahead == 'u') ADVANCE(17);
|
|
END_STATE();
|
|
case 23:
|
|
if (lookahead == '+' ||
|
|
lookahead == '-') ADVANCE(26);
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(59);
|
|
END_STATE();
|
|
case 24:
|
|
if (lookahead == '"' ||
|
|
lookahead == '\\' ||
|
|
lookahead == 'n' ||
|
|
lookahead == 'r' ||
|
|
lookahead == 't') ADVANCE(66);
|
|
if (lookahead == 'U') ADVANCE(34);
|
|
if (lookahead == 'u') ADVANCE(30);
|
|
END_STATE();
|
|
case 25:
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(58);
|
|
END_STATE();
|
|
case 26:
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(59);
|
|
END_STATE();
|
|
case 27:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(66);
|
|
END_STATE();
|
|
case 28:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(27);
|
|
END_STATE();
|
|
case 29:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(28);
|
|
END_STATE();
|
|
case 30:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(29);
|
|
END_STATE();
|
|
case 31:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(30);
|
|
END_STATE();
|
|
case 32:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(31);
|
|
END_STATE();
|
|
case 33:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(32);
|
|
END_STATE();
|
|
case 34:
|
|
if (('0' <= lookahead && lookahead <= '9') ||
|
|
('A' <= lookahead && lookahead <= 'F') ||
|
|
('a' <= lookahead && lookahead <= 'f')) ADVANCE(33);
|
|
END_STATE();
|
|
case 35:
|
|
if (eof) ADVANCE(37);
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '(') ADVANCE(55);
|
|
if (lookahead == ')') ADVANCE(56);
|
|
if (lookahead == '*') ADVANCE(79);
|
|
if (lookahead == ',') ADVANCE(74);
|
|
if (lookahead == '.') ADVANCE(78);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == ':') ADVANCE(76);
|
|
if (lookahead == '=') ADVANCE(39);
|
|
if (lookahead == '?') ADVANCE(86);
|
|
if (lookahead == '[') ADVANCE(73);
|
|
if (lookahead == ']') ADVANCE(75);
|
|
if (lookahead == 'f') ADVANCE(11);
|
|
if (lookahead == 'i') ADVANCE(14);
|
|
if (lookahead == 'n') ADVANCE(22);
|
|
if (lookahead == 't') ADVANCE(19);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '}') ADVANCE(41);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(35)
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57);
|
|
END_STATE();
|
|
case 36:
|
|
if (eof) ADVANCE(37);
|
|
if (lookahead == '"') ADVANCE(60);
|
|
if (lookahead == '#') ADVANCE(88);
|
|
if (lookahead == '(') ADVANCE(55);
|
|
if (lookahead == ')') ADVANCE(56);
|
|
if (lookahead == '*') ADVANCE(79);
|
|
if (lookahead == ',') ADVANCE(74);
|
|
if (lookahead == '.') ADVANCE(78);
|
|
if (lookahead == '/') ADVANCE(6);
|
|
if (lookahead == ':') ADVANCE(76);
|
|
if (lookahead == '=') ADVANCE(39);
|
|
if (lookahead == '?') ADVANCE(86);
|
|
if (lookahead == '[') ADVANCE(73);
|
|
if (lookahead == ']') ADVANCE(75);
|
|
if (lookahead == '{') ADVANCE(40);
|
|
if (lookahead == '}') ADVANCE(41);
|
|
if (lookahead == '\t' ||
|
|
lookahead == '\n' ||
|
|
lookahead == '\r' ||
|
|
lookahead == ' ') SKIP(36)
|
|
if (sym_identifier_character_set_1(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 37:
|
|
ACCEPT_TOKEN(ts_builtin_sym_end);
|
|
END_STATE();
|
|
case 38:
|
|
ACCEPT_TOKEN(anon_sym_EQ);
|
|
END_STATE();
|
|
case 39:
|
|
ACCEPT_TOKEN(anon_sym_EQ);
|
|
if (lookahead == '>') ADVANCE(80);
|
|
END_STATE();
|
|
case 40:
|
|
ACCEPT_TOKEN(anon_sym_LBRACE);
|
|
END_STATE();
|
|
case 41:
|
|
ACCEPT_TOKEN(anon_sym_RBRACE);
|
|
END_STATE();
|
|
case 42:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'a') ADVANCE(46);
|
|
if (lookahead == 'o') ADVANCE(49);
|
|
if (sym_identifier_character_set_2(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 43:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'a') ADVANCE(46);
|
|
if (sym_identifier_character_set_2(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 44:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'e') ADVANCE(68);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 45:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'e') ADVANCE(70);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 46:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'l') ADVANCE(51);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 47:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'l') ADVANCE(72);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 48:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'l') ADVANCE(47);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 49:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'r') ADVANCE(82);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 50:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'r') ADVANCE(52);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 51:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 's') ADVANCE(45);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 52:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'u') ADVANCE(44);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 53:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (lookahead == 'u') ADVANCE(48);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 54:
|
|
ACCEPT_TOKEN(sym_identifier);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 55:
|
|
ACCEPT_TOKEN(anon_sym_LPAREN);
|
|
END_STATE();
|
|
case 56:
|
|
ACCEPT_TOKEN(anon_sym_RPAREN);
|
|
END_STATE();
|
|
case 57:
|
|
ACCEPT_TOKEN(sym_numeric_lit);
|
|
if (lookahead == '.') ADVANCE(25);
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(57);
|
|
END_STATE();
|
|
case 58:
|
|
ACCEPT_TOKEN(sym_numeric_lit);
|
|
if (lookahead == 'E' ||
|
|
lookahead == 'e') ADVANCE(23);
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(58);
|
|
END_STATE();
|
|
case 59:
|
|
ACCEPT_TOKEN(sym_numeric_lit);
|
|
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(59);
|
|
END_STATE();
|
|
case 60:
|
|
ACCEPT_TOKEN(anon_sym_DQUOTE);
|
|
END_STATE();
|
|
case 61:
|
|
ACCEPT_TOKEN(aux_sym_string_lit_token1);
|
|
if (lookahead == ' ') ADVANCE(61);
|
|
if (lookahead == '#') ADVANCE(65);
|
|
if (lookahead == '/') ADVANCE(62);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\t' &&
|
|
lookahead != '\n' &&
|
|
lookahead != '\r' &&
|
|
lookahead != '"' &&
|
|
lookahead != '\\') ADVANCE(65);
|
|
END_STATE();
|
|
case 62:
|
|
ACCEPT_TOKEN(aux_sym_string_lit_token1);
|
|
if (lookahead == '*') ADVANCE(64);
|
|
if (lookahead == '/') ADVANCE(65);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\t' &&
|
|
lookahead != '\n' &&
|
|
lookahead != '\r' &&
|
|
lookahead != '"' &&
|
|
lookahead != '\\') ADVANCE(65);
|
|
END_STATE();
|
|
case 63:
|
|
ACCEPT_TOKEN(aux_sym_string_lit_token1);
|
|
if (lookahead == '*') ADVANCE(63);
|
|
if (lookahead == '/') ADVANCE(65);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\t' &&
|
|
lookahead != '\n' &&
|
|
lookahead != '\r' &&
|
|
lookahead != '"' &&
|
|
lookahead != '\\') ADVANCE(64);
|
|
END_STATE();
|
|
case 64:
|
|
ACCEPT_TOKEN(aux_sym_string_lit_token1);
|
|
if (lookahead == '*') ADVANCE(63);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\t' &&
|
|
lookahead != '\n' &&
|
|
lookahead != '\r' &&
|
|
lookahead != '"' &&
|
|
lookahead != '\\') ADVANCE(64);
|
|
END_STATE();
|
|
case 65:
|
|
ACCEPT_TOKEN(aux_sym_string_lit_token1);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\t' &&
|
|
lookahead != '\n' &&
|
|
lookahead != '\r' &&
|
|
lookahead != '"' &&
|
|
lookahead != '\\') ADVANCE(65);
|
|
END_STATE();
|
|
case 66:
|
|
ACCEPT_TOKEN(sym_escape_sequence);
|
|
END_STATE();
|
|
case 67:
|
|
ACCEPT_TOKEN(anon_sym_true);
|
|
END_STATE();
|
|
case 68:
|
|
ACCEPT_TOKEN(anon_sym_true);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 69:
|
|
ACCEPT_TOKEN(anon_sym_false);
|
|
END_STATE();
|
|
case 70:
|
|
ACCEPT_TOKEN(anon_sym_false);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 71:
|
|
ACCEPT_TOKEN(sym_null_lit);
|
|
END_STATE();
|
|
case 72:
|
|
ACCEPT_TOKEN(sym_null_lit);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 73:
|
|
ACCEPT_TOKEN(anon_sym_LBRACK);
|
|
END_STATE();
|
|
case 74:
|
|
ACCEPT_TOKEN(anon_sym_COMMA);
|
|
END_STATE();
|
|
case 75:
|
|
ACCEPT_TOKEN(anon_sym_RBRACK);
|
|
END_STATE();
|
|
case 76:
|
|
ACCEPT_TOKEN(anon_sym_COLON);
|
|
END_STATE();
|
|
case 77:
|
|
ACCEPT_TOKEN(anon_sym_DOT);
|
|
END_STATE();
|
|
case 78:
|
|
ACCEPT_TOKEN(anon_sym_DOT);
|
|
if (lookahead == '.') ADVANCE(9);
|
|
END_STATE();
|
|
case 79:
|
|
ACCEPT_TOKEN(anon_sym_STAR);
|
|
END_STATE();
|
|
case 80:
|
|
ACCEPT_TOKEN(anon_sym_EQ_GT);
|
|
END_STATE();
|
|
case 81:
|
|
ACCEPT_TOKEN(anon_sym_for);
|
|
END_STATE();
|
|
case 82:
|
|
ACCEPT_TOKEN(anon_sym_for);
|
|
if (sym_identifier_character_set_3(lookahead)) ADVANCE(54);
|
|
END_STATE();
|
|
case 83:
|
|
ACCEPT_TOKEN(anon_sym_in);
|
|
END_STATE();
|
|
case 84:
|
|
ACCEPT_TOKEN(anon_sym_if);
|
|
END_STATE();
|
|
case 85:
|
|
ACCEPT_TOKEN(sym_ellipsis);
|
|
END_STATE();
|
|
case 86:
|
|
ACCEPT_TOKEN(anon_sym_QMARK);
|
|
END_STATE();
|
|
case 87:
|
|
ACCEPT_TOKEN(sym_comment);
|
|
END_STATE();
|
|
case 88:
|
|
ACCEPT_TOKEN(sym_comment);
|
|
if (lookahead != 0 &&
|
|
lookahead != '\n') ADVANCE(88);
|
|
END_STATE();
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
|
|
[0] = {.lex_state = 0},
|
|
[1] = {.lex_state = 36},
|
|
[2] = {.lex_state = 3},
|
|
[3] = {.lex_state = 3},
|
|
[4] = {.lex_state = 3},
|
|
[5] = {.lex_state = 3},
|
|
[6] = {.lex_state = 2},
|
|
[7] = {.lex_state = 2},
|
|
[8] = {.lex_state = 2},
|
|
[9] = {.lex_state = 2},
|
|
[10] = {.lex_state = 2},
|
|
[11] = {.lex_state = 2},
|
|
[12] = {.lex_state = 2},
|
|
[13] = {.lex_state = 2},
|
|
[14] = {.lex_state = 2},
|
|
[15] = {.lex_state = 2},
|
|
[16] = {.lex_state = 2},
|
|
[17] = {.lex_state = 2},
|
|
[18] = {.lex_state = 2},
|
|
[19] = {.lex_state = 2},
|
|
[20] = {.lex_state = 2},
|
|
[21] = {.lex_state = 2},
|
|
[22] = {.lex_state = 2},
|
|
[23] = {.lex_state = 2},
|
|
[24] = {.lex_state = 2},
|
|
[25] = {.lex_state = 2},
|
|
[26] = {.lex_state = 2},
|
|
[27] = {.lex_state = 2},
|
|
[28] = {.lex_state = 2},
|
|
[29] = {.lex_state = 2},
|
|
[30] = {.lex_state = 2},
|
|
[31] = {.lex_state = 2},
|
|
[32] = {.lex_state = 2},
|
|
[33] = {.lex_state = 36},
|
|
[34] = {.lex_state = 36},
|
|
[35] = {.lex_state = 36},
|
|
[36] = {.lex_state = 36},
|
|
[37] = {.lex_state = 36},
|
|
[38] = {.lex_state = 36},
|
|
[39] = {.lex_state = 36},
|
|
[40] = {.lex_state = 36},
|
|
[41] = {.lex_state = 36},
|
|
[42] = {.lex_state = 36},
|
|
[43] = {.lex_state = 36},
|
|
[44] = {.lex_state = 36},
|
|
[45] = {.lex_state = 36},
|
|
[46] = {.lex_state = 36},
|
|
[47] = {.lex_state = 36},
|
|
[48] = {.lex_state = 36},
|
|
[49] = {.lex_state = 36},
|
|
[50] = {.lex_state = 36},
|
|
[51] = {.lex_state = 36},
|
|
[52] = {.lex_state = 36},
|
|
[53] = {.lex_state = 36},
|
|
[54] = {.lex_state = 36},
|
|
[55] = {.lex_state = 36},
|
|
[56] = {.lex_state = 36},
|
|
[57] = {.lex_state = 36},
|
|
[58] = {.lex_state = 36},
|
|
[59] = {.lex_state = 36},
|
|
[60] = {.lex_state = 36},
|
|
[61] = {.lex_state = 36},
|
|
[62] = {.lex_state = 36},
|
|
[63] = {.lex_state = 36},
|
|
[64] = {.lex_state = 36},
|
|
[65] = {.lex_state = 36},
|
|
[66] = {.lex_state = 0},
|
|
[67] = {.lex_state = 36},
|
|
[68] = {.lex_state = 36},
|
|
[69] = {.lex_state = 0},
|
|
[70] = {.lex_state = 0},
|
|
[71] = {.lex_state = 0},
|
|
[72] = {.lex_state = 2},
|
|
[73] = {.lex_state = 2},
|
|
[74] = {.lex_state = 0},
|
|
[75] = {.lex_state = 0},
|
|
[76] = {.lex_state = 0},
|
|
[77] = {.lex_state = 0},
|
|
[78] = {.lex_state = 0},
|
|
[79] = {.lex_state = 0},
|
|
[80] = {.lex_state = 0},
|
|
[81] = {.lex_state = 0},
|
|
[82] = {.lex_state = 0},
|
|
[83] = {.lex_state = 0},
|
|
[84] = {.lex_state = 0},
|
|
[85] = {.lex_state = 0},
|
|
[86] = {.lex_state = 0},
|
|
[87] = {.lex_state = 0},
|
|
[88] = {.lex_state = 0},
|
|
[89] = {.lex_state = 0},
|
|
[90] = {.lex_state = 0},
|
|
[91] = {.lex_state = 0},
|
|
[92] = {.lex_state = 0},
|
|
[93] = {.lex_state = 0},
|
|
[94] = {.lex_state = 0},
|
|
[95] = {.lex_state = 0},
|
|
[96] = {.lex_state = 0},
|
|
[97] = {.lex_state = 0},
|
|
[98] = {.lex_state = 0},
|
|
[99] = {.lex_state = 0},
|
|
[100] = {.lex_state = 0},
|
|
[101] = {.lex_state = 0},
|
|
[102] = {.lex_state = 0},
|
|
[103] = {.lex_state = 36},
|
|
[104] = {.lex_state = 4},
|
|
[105] = {.lex_state = 3},
|
|
[106] = {.lex_state = 36},
|
|
[107] = {.lex_state = 36},
|
|
[108] = {.lex_state = 36},
|
|
[109] = {.lex_state = 0},
|
|
[110] = {.lex_state = 36},
|
|
[111] = {.lex_state = 0},
|
|
[112] = {.lex_state = 0},
|
|
[113] = {.lex_state = 36},
|
|
[114] = {.lex_state = 0},
|
|
[115] = {.lex_state = 0},
|
|
[116] = {.lex_state = 0},
|
|
[117] = {.lex_state = 0},
|
|
[118] = {.lex_state = 1},
|
|
[119] = {.lex_state = 1},
|
|
[120] = {.lex_state = 1},
|
|
[121] = {.lex_state = 0},
|
|
[122] = {.lex_state = 0},
|
|
[123] = {.lex_state = 36},
|
|
[124] = {.lex_state = 1},
|
|
[125] = {.lex_state = 0},
|
|
[126] = {.lex_state = 0},
|
|
[127] = {.lex_state = 0},
|
|
[128] = {.lex_state = 1},
|
|
[129] = {.lex_state = 0},
|
|
[130] = {.lex_state = 3},
|
|
[131] = {.lex_state = 36},
|
|
[132] = {.lex_state = 0},
|
|
[133] = {.lex_state = 0},
|
|
[134] = {.lex_state = 0},
|
|
[135] = {.lex_state = 36},
|
|
[136] = {.lex_state = 0},
|
|
[137] = {.lex_state = 0},
|
|
[138] = {.lex_state = 0},
|
|
[139] = {.lex_state = 36},
|
|
[140] = {.lex_state = 0},
|
|
[141] = {.lex_state = 0},
|
|
[142] = {.lex_state = 0},
|
|
[143] = {.lex_state = 0},
|
|
[144] = {.lex_state = 0},
|
|
[145] = {.lex_state = 36},
|
|
[146] = {.lex_state = 2},
|
|
[147] = {.lex_state = 0},
|
|
[148] = {.lex_state = 0},
|
|
[149] = {.lex_state = 0},
|
|
[150] = {.lex_state = 0},
|
|
[151] = {.lex_state = 2},
|
|
[152] = {.lex_state = 0},
|
|
[153] = {.lex_state = 0},
|
|
[154] = {.lex_state = 0},
|
|
[155] = {.lex_state = 0},
|
|
[156] = {.lex_state = 0},
|
|
[157] = {.lex_state = 36},
|
|
[158] = {.lex_state = 0},
|
|
[159] = {.lex_state = 0},
|
|
[160] = {.lex_state = 36},
|
|
[161] = {.lex_state = 0},
|
|
[162] = {.lex_state = 0},
|
|
[163] = {.lex_state = 0},
|
|
[164] = {.lex_state = 0},
|
|
[165] = {.lex_state = 0},
|
|
[166] = {.lex_state = 0},
|
|
[167] = {.lex_state = 0},
|
|
[168] = {.lex_state = 36},
|
|
[169] = {.lex_state = 0},
|
|
[170] = {.lex_state = 0},
|
|
[171] = {.lex_state = 0},
|
|
[172] = {.lex_state = 36},
|
|
[173] = {.lex_state = 0},
|
|
[174] = {.lex_state = 0},
|
|
[175] = {.lex_state = 0},
|
|
[176] = {.lex_state = 0},
|
|
[177] = {.lex_state = 36},
|
|
[178] = {.lex_state = 0},
|
|
};
|
|
|
|
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
|
|
[0] = {
|
|
[ts_builtin_sym_end] = ACTIONS(1),
|
|
[anon_sym_EQ] = ACTIONS(1),
|
|
[anon_sym_LBRACE] = ACTIONS(1),
|
|
[anon_sym_RBRACE] = ACTIONS(1),
|
|
[anon_sym_LPAREN] = ACTIONS(1),
|
|
[anon_sym_RPAREN] = ACTIONS(1),
|
|
[sym_numeric_lit] = ACTIONS(1),
|
|
[anon_sym_DQUOTE] = ACTIONS(1),
|
|
[sym_escape_sequence] = ACTIONS(1),
|
|
[anon_sym_true] = ACTIONS(1),
|
|
[anon_sym_false] = ACTIONS(1),
|
|
[sym_null_lit] = ACTIONS(1),
|
|
[anon_sym_LBRACK] = ACTIONS(1),
|
|
[anon_sym_COMMA] = ACTIONS(1),
|
|
[anon_sym_RBRACK] = ACTIONS(1),
|
|
[anon_sym_COLON] = ACTIONS(1),
|
|
[anon_sym_DOT] = ACTIONS(1),
|
|
[anon_sym_STAR] = ACTIONS(1),
|
|
[anon_sym_EQ_GT] = ACTIONS(1),
|
|
[anon_sym_for] = ACTIONS(1),
|
|
[anon_sym_in] = ACTIONS(1),
|
|
[anon_sym_if] = ACTIONS(1),
|
|
[sym_ellipsis] = ACTIONS(1),
|
|
[anon_sym_QMARK] = ACTIONS(1),
|
|
[sym_comment] = ACTIONS(3),
|
|
},
|
|
[1] = {
|
|
[sym_config_file] = STATE(178),
|
|
[sym_body] = STATE(176),
|
|
[sym_attribute] = STATE(108),
|
|
[sym_block] = STATE(108),
|
|
[aux_sym_body_repeat1] = STATE(108),
|
|
[sym_identifier] = ACTIONS(5),
|
|
[sym_comment] = ACTIONS(3),
|
|
},
|
|
};
|
|
|
|
static const uint16_t ts_small_parse_table[] = {
|
|
[0] = 20,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(9), 1,
|
|
anon_sym_RBRACE,
|
|
ACTIONS(11), 1,
|
|
sym_identifier,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(25), 1,
|
|
anon_sym_for,
|
|
STATE(29), 1,
|
|
sym_for_intro,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(130), 1,
|
|
sym_expression,
|
|
STATE(142), 1,
|
|
sym_object_elem,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[69] = 20,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(11), 1,
|
|
sym_identifier,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(25), 1,
|
|
anon_sym_for,
|
|
ACTIONS(27), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(24), 1,
|
|
sym_for_intro,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(130), 1,
|
|
sym_expression,
|
|
STATE(141), 1,
|
|
sym_object_elem,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[138] = 19,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(25), 1,
|
|
anon_sym_for,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(31), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(21), 1,
|
|
sym_for_intro,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(127), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[204] = 19,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(25), 1,
|
|
anon_sym_for,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(33), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(26), 1,
|
|
sym_for_intro,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(122), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[270] = 18,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(35), 1,
|
|
anon_sym_RPAREN,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(112), 1,
|
|
sym_expression,
|
|
STATE(173), 1,
|
|
sym_function_arguments,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[333] = 18,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(37), 1,
|
|
anon_sym_RPAREN,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(112), 1,
|
|
sym_expression,
|
|
STATE(161), 1,
|
|
sym_function_arguments,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[396] = 17,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(39), 1,
|
|
anon_sym_STAR,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(148), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[456] = 17,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(41), 1,
|
|
anon_sym_STAR,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(152), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[516] = 17,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(11), 1,
|
|
sym_identifier,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(130), 1,
|
|
sym_expression,
|
|
STATE(150), 1,
|
|
sym_object_elem,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[576] = 17,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(43), 1,
|
|
anon_sym_RPAREN,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(109), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[636] = 17,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
ACTIONS(45), 1,
|
|
anon_sym_RPAREN,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(109), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[696] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(155), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[753] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(156), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[810] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(144), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[867] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(147), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[924] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(47), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(49), 1,
|
|
sym_identifier,
|
|
ACTIONS(51), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(53), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(55), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(59), 1,
|
|
sym_null_lit,
|
|
ACTIONS(61), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(66), 1,
|
|
sym_expr_term,
|
|
STATE(111), 1,
|
|
sym_conditional,
|
|
STATE(115), 1,
|
|
sym_expression,
|
|
ACTIONS(57), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(88), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(91), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(92), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(82), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[981] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(47), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(49), 1,
|
|
sym_identifier,
|
|
ACTIONS(51), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(53), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(55), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(59), 1,
|
|
sym_null_lit,
|
|
ACTIONS(61), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(66), 1,
|
|
sym_expr_term,
|
|
STATE(111), 1,
|
|
sym_conditional,
|
|
STATE(117), 1,
|
|
sym_expression,
|
|
ACTIONS(57), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(88), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(91), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(92), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(82), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1038] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(149), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1095] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(67), 1,
|
|
sym_expression,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1152] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(47), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(49), 1,
|
|
sym_identifier,
|
|
ACTIONS(51), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(53), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(55), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(59), 1,
|
|
sym_null_lit,
|
|
ACTIONS(61), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(66), 1,
|
|
sym_expr_term,
|
|
STATE(111), 1,
|
|
sym_conditional,
|
|
STATE(126), 1,
|
|
sym_expression,
|
|
ACTIONS(57), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(88), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(91), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(92), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(82), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1209] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(154), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1266] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(148), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1323] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(146), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1380] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(123), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1437] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(47), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(49), 1,
|
|
sym_identifier,
|
|
ACTIONS(51), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(53), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(55), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(59), 1,
|
|
sym_null_lit,
|
|
ACTIONS(61), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(66), 1,
|
|
sym_expr_term,
|
|
STATE(111), 1,
|
|
sym_conditional,
|
|
STATE(121), 1,
|
|
sym_expression,
|
|
ACTIONS(57), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(88), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(91), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(92), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(82), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1494] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(152), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1551] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(129), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1608] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(151), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1665] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(47), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(49), 1,
|
|
sym_identifier,
|
|
ACTIONS(51), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(53), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(55), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(59), 1,
|
|
sym_null_lit,
|
|
ACTIONS(61), 1,
|
|
anon_sym_LBRACK,
|
|
STATE(66), 1,
|
|
sym_expr_term,
|
|
STATE(111), 1,
|
|
sym_conditional,
|
|
STATE(114), 1,
|
|
sym_expression,
|
|
ACTIONS(57), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(88), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(91), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(92), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(82), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1722] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(109), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1779] = 16,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(7), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(13), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(15), 1,
|
|
sym_numeric_lit,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(21), 1,
|
|
sym_null_lit,
|
|
ACTIONS(23), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(29), 1,
|
|
sym_identifier,
|
|
STATE(33), 1,
|
|
sym_expr_term,
|
|
STATE(68), 1,
|
|
sym_conditional,
|
|
STATE(132), 1,
|
|
sym_expression,
|
|
ACTIONS(19), 2,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
STATE(45), 2,
|
|
sym_string_lit,
|
|
sym_bool_lit,
|
|
STATE(58), 2,
|
|
sym_for_tuple_expr,
|
|
sym_for_object_expr,
|
|
STATE(65), 2,
|
|
sym_tuple,
|
|
sym_object,
|
|
STATE(54), 5,
|
|
sym_literal_value,
|
|
sym_collection_value,
|
|
sym_for_expr,
|
|
sym_variable_expr,
|
|
sym_function_call,
|
|
[1836] = 7,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(65), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(67), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(69), 1,
|
|
anon_sym_DOT,
|
|
STATE(56), 2,
|
|
sym_attr_splat,
|
|
sym_full_splat,
|
|
STATE(55), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
sym_splat,
|
|
ACTIONS(63), 10,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[1870] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(73), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(75), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(78), 1,
|
|
anon_sym_DOT,
|
|
STATE(35), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(71), 10,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[1900] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(83), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(85), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(88), 1,
|
|
anon_sym_DOT,
|
|
STATE(36), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(81), 10,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[1930] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(93), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(95), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(98), 1,
|
|
anon_sym_DOT,
|
|
STATE(36), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(91), 10,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[1960] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(103), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(105), 1,
|
|
anon_sym_DOT,
|
|
STATE(39), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(101), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[1987] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(110), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(108), 13,
|
|
ts_builtin_sym_end,
|
|
anon_sym_LBRACE,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_DQUOTE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2010] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(114), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(116), 1,
|
|
anon_sym_DOT,
|
|
STATE(41), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(112), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2037] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(121), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(119), 13,
|
|
ts_builtin_sym_end,
|
|
anon_sym_LBRACE,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_DQUOTE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2060] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(125), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(127), 1,
|
|
anon_sym_DOT,
|
|
STATE(41), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(123), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2087] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(134), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(132), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(130), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2111] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(138), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(136), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2132] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(142), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(140), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2153] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(146), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(144), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2174] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(150), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(148), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2195] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(154), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(152), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2216] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(158), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(156), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2237] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(162), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(160), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2258] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(166), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(164), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2279] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(170), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(168), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2300] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(174), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(172), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2321] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(178), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(176), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2342] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(182), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(180), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2363] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(186), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(184), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2384] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(190), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(188), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2405] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(194), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(192), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2426] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(198), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(196), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2447] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(202), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(200), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2468] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(206), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(204), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2489] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(210), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(208), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2510] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(214), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(212), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2531] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(218), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(216), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2552] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(222), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(220), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2573] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(226), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_DOT,
|
|
ACTIONS(224), 11,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_LBRACK,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2594] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(228), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(230), 1,
|
|
anon_sym_DOT,
|
|
STATE(100), 2,
|
|
sym_attr_splat,
|
|
sym_full_splat,
|
|
STATE(80), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
sym_splat,
|
|
ACTIONS(63), 5,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2620] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(234), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(236), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(232), 9,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
[2641] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(65), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(63), 10,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
anon_sym_COLON,
|
|
anon_sym_EQ_GT,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2660] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(239), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(242), 1,
|
|
anon_sym_DOT,
|
|
STATE(70), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(71), 5,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2682] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(245), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(248), 1,
|
|
anon_sym_DOT,
|
|
STATE(71), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(81), 5,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2704] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(251), 1,
|
|
anon_sym_LBRACK,
|
|
ACTIONS(254), 1,
|
|
anon_sym_DOT,
|
|
STATE(71), 3,
|
|
sym_index,
|
|
sym_get_attr,
|
|
aux_sym_full_splat_repeat1,
|
|
ACTIONS(91), 5,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2726] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(259), 4,
|
|
sym_identifier,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
sym_null_lit,
|
|
ACTIONS(257), 5,
|
|
anon_sym_LBRACE,
|
|
anon_sym_LPAREN,
|
|
sym_numeric_lit,
|
|
anon_sym_DQUOTE,
|
|
anon_sym_LBRACK,
|
|
[2743] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(263), 4,
|
|
sym_identifier,
|
|
anon_sym_true,
|
|
anon_sym_false,
|
|
sym_null_lit,
|
|
ACTIONS(261), 5,
|
|
anon_sym_LBRACE,
|
|
anon_sym_LPAREN,
|
|
sym_numeric_lit,
|
|
anon_sym_DQUOTE,
|
|
anon_sym_LBRACK,
|
|
[2760] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(265), 1,
|
|
anon_sym_DOT,
|
|
STATE(75), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(101), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2779] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(268), 1,
|
|
anon_sym_DOT,
|
|
STATE(76), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(112), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2798] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(271), 1,
|
|
anon_sym_DOT,
|
|
STATE(76), 2,
|
|
sym_get_attr,
|
|
aux_sym_attr_splat_repeat1,
|
|
ACTIONS(123), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2817] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(132), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(274), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(130), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2835] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(166), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(164), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2850] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(170), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(168), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2865] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(186), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(184), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2880] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(174), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(172), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2895] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(182), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(180), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2910] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(150), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(148), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2925] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(210), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(208), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2940] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(121), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(119), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2955] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(142), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(140), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2970] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(218), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(216), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[2985] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(226), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(224), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3000] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(154), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(152), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3015] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(214), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(212), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3030] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(146), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(144), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3045] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(198), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(196), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3060] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(222), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(220), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3075] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(138), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(136), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3090] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(110), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(108), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3105] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(162), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(160), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3120] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(178), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(176), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3135] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(158), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(156), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3150] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(194), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(192), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3165] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(190), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(188), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3180] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(202), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(200), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3195] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(206), 1,
|
|
anon_sym_DOT,
|
|
ACTIONS(204), 6,
|
|
anon_sym_RBRACE,
|
|
anon_sym_LBRACK,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3210] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(5), 1,
|
|
sym_identifier,
|
|
ACTIONS(276), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(165), 1,
|
|
sym_body,
|
|
STATE(108), 3,
|
|
sym_attribute,
|
|
sym_block,
|
|
aux_sym_body_repeat1,
|
|
[3228] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(278), 1,
|
|
anon_sym_EQ,
|
|
ACTIONS(280), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(282), 1,
|
|
sym_identifier,
|
|
STATE(113), 2,
|
|
sym_string_lit,
|
|
aux_sym_block_repeat1,
|
|
[3248] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(134), 1,
|
|
anon_sym_LPAREN,
|
|
ACTIONS(284), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_COLON,
|
|
ACTIONS(130), 3,
|
|
anon_sym_LBRACK,
|
|
anon_sym_DOT,
|
|
anon_sym_QMARK,
|
|
[3264] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(289), 1,
|
|
sym_identifier,
|
|
ACTIONS(287), 2,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
STATE(106), 3,
|
|
sym_attribute,
|
|
sym_block,
|
|
aux_sym_body_repeat1,
|
|
[3280] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(5), 1,
|
|
sym_identifier,
|
|
ACTIONS(292), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(169), 1,
|
|
sym_body,
|
|
STATE(108), 3,
|
|
sym_attribute,
|
|
sym_block,
|
|
aux_sym_body_repeat1,
|
|
[3298] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(5), 1,
|
|
sym_identifier,
|
|
ACTIONS(294), 2,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
STATE(106), 3,
|
|
sym_attribute,
|
|
sym_block,
|
|
aux_sym_body_repeat1,
|
|
[3314] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(296), 4,
|
|
anon_sym_RPAREN,
|
|
anon_sym_COMMA,
|
|
anon_sym_RBRACK,
|
|
sym_ellipsis,
|
|
[3327] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(300), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(302), 1,
|
|
sym_identifier,
|
|
ACTIONS(305), 1,
|
|
anon_sym_DQUOTE,
|
|
STATE(110), 2,
|
|
sym_string_lit,
|
|
aux_sym_block_repeat1,
|
|
[3344] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(63), 5,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
anon_sym_QMARK,
|
|
[3355] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(308), 1,
|
|
anon_sym_RPAREN,
|
|
ACTIONS(310), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(312), 1,
|
|
sym_ellipsis,
|
|
STATE(125), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3374] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(17), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(314), 1,
|
|
anon_sym_LBRACE,
|
|
ACTIONS(316), 1,
|
|
sym_identifier,
|
|
STATE(110), 2,
|
|
sym_string_lit,
|
|
aux_sym_block_repeat1,
|
|
[3391] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(318), 1,
|
|
anon_sym_RBRACE,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(322), 1,
|
|
sym_ellipsis,
|
|
ACTIONS(324), 1,
|
|
anon_sym_QMARK,
|
|
STATE(174), 1,
|
|
sym_for_cond,
|
|
[3410] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(326), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(232), 4,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
anon_sym_if,
|
|
sym_ellipsis,
|
|
[3423] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(329), 1,
|
|
anon_sym_COMMA,
|
|
STATE(116), 1,
|
|
aux_sym_tuple_repeat1,
|
|
ACTIONS(296), 3,
|
|
anon_sym_RPAREN,
|
|
anon_sym_RBRACK,
|
|
sym_ellipsis,
|
|
[3438] = 6,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(324), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(332), 1,
|
|
anon_sym_RBRACE,
|
|
ACTIONS(334), 1,
|
|
sym_ellipsis,
|
|
STATE(170), 1,
|
|
sym_for_cond,
|
|
[3457] = 4,
|
|
ACTIONS(336), 1,
|
|
anon_sym_DQUOTE,
|
|
ACTIONS(340), 1,
|
|
sym_comment,
|
|
STATE(128), 1,
|
|
aux_sym_string_lit_repeat1,
|
|
ACTIONS(338), 2,
|
|
aux_sym_string_lit_token1,
|
|
sym_escape_sequence,
|
|
[3471] = 4,
|
|
ACTIONS(340), 1,
|
|
sym_comment,
|
|
ACTIONS(342), 1,
|
|
anon_sym_DQUOTE,
|
|
STATE(128), 1,
|
|
aux_sym_string_lit_repeat1,
|
|
ACTIONS(338), 2,
|
|
aux_sym_string_lit_token1,
|
|
sym_escape_sequence,
|
|
[3485] = 4,
|
|
ACTIONS(340), 1,
|
|
sym_comment,
|
|
ACTIONS(344), 1,
|
|
anon_sym_DQUOTE,
|
|
STATE(119), 1,
|
|
aux_sym_string_lit_repeat1,
|
|
ACTIONS(346), 2,
|
|
aux_sym_string_lit_token1,
|
|
sym_escape_sequence,
|
|
[3499] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(324), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(348), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(166), 1,
|
|
sym_for_cond,
|
|
[3515] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(350), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(352), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(138), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3531] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(354), 3,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
[3543] = 4,
|
|
ACTIONS(340), 1,
|
|
sym_comment,
|
|
ACTIONS(356), 1,
|
|
anon_sym_DQUOTE,
|
|
STATE(118), 1,
|
|
aux_sym_string_lit_repeat1,
|
|
ACTIONS(358), 2,
|
|
aux_sym_string_lit_token1,
|
|
sym_escape_sequence,
|
|
[3557] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(43), 1,
|
|
anon_sym_RPAREN,
|
|
ACTIONS(360), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(362), 1,
|
|
sym_ellipsis,
|
|
STATE(116), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3573] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(324), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(364), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(175), 1,
|
|
sym_for_cond,
|
|
[3589] = 5,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(350), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(366), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(133), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3605] = 4,
|
|
ACTIONS(340), 1,
|
|
sym_comment,
|
|
ACTIONS(368), 1,
|
|
anon_sym_DQUOTE,
|
|
STATE(128), 1,
|
|
aux_sym_string_lit_repeat1,
|
|
ACTIONS(370), 2,
|
|
aux_sym_string_lit_token1,
|
|
sym_escape_sequence,
|
|
[3619] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(373), 2,
|
|
anon_sym_RBRACE,
|
|
anon_sym_RBRACK,
|
|
[3630] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(375), 2,
|
|
anon_sym_EQ,
|
|
anon_sym_COLON,
|
|
[3641] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(377), 3,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
[3650] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(379), 2,
|
|
anon_sym_RBRACE,
|
|
anon_sym_COMMA,
|
|
[3661] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(350), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(381), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(116), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3674] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(383), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(171), 1,
|
|
sym_for_cond,
|
|
[3687] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(385), 3,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
[3696] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(387), 1,
|
|
anon_sym_RBRACE,
|
|
ACTIONS(389), 1,
|
|
anon_sym_COMMA,
|
|
STATE(136), 1,
|
|
aux_sym_object_repeat1,
|
|
[3709] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(320), 1,
|
|
anon_sym_if,
|
|
ACTIONS(392), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(159), 1,
|
|
sym_for_cond,
|
|
[3722] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(350), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(394), 1,
|
|
anon_sym_RBRACK,
|
|
STATE(116), 1,
|
|
aux_sym_tuple_repeat1,
|
|
[3735] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(396), 3,
|
|
ts_builtin_sym_end,
|
|
anon_sym_RBRACE,
|
|
sym_identifier,
|
|
[3744] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(398), 1,
|
|
anon_sym_RBRACE,
|
|
ACTIONS(400), 1,
|
|
anon_sym_COMMA,
|
|
STATE(136), 1,
|
|
aux_sym_object_repeat1,
|
|
[3757] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(400), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(402), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(140), 1,
|
|
aux_sym_object_repeat1,
|
|
[3770] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(400), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(404), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(143), 1,
|
|
aux_sym_object_repeat1,
|
|
[3783] = 4,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(400), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(406), 1,
|
|
anon_sym_RBRACE,
|
|
STATE(136), 1,
|
|
aux_sym_object_repeat1,
|
|
[3796] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(408), 1,
|
|
anon_sym_COLON,
|
|
[3806] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(410), 1,
|
|
sym_identifier,
|
|
ACTIONS(412), 1,
|
|
anon_sym_STAR,
|
|
[3816] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(414), 1,
|
|
anon_sym_EQ_GT,
|
|
[3826] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(416), 1,
|
|
anon_sym_RPAREN,
|
|
[3836] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(418), 1,
|
|
anon_sym_RBRACK,
|
|
[3846] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(420), 1,
|
|
anon_sym_COLON,
|
|
[3856] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(387), 2,
|
|
anon_sym_RBRACE,
|
|
anon_sym_COMMA,
|
|
[3864] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(422), 1,
|
|
anon_sym_EQ_GT,
|
|
[3874] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(424), 1,
|
|
anon_sym_RBRACK,
|
|
[3884] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(426), 1,
|
|
anon_sym_COMMA,
|
|
ACTIONS(428), 1,
|
|
anon_sym_in,
|
|
[3894] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(430), 1,
|
|
anon_sym_COLON,
|
|
[3904] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(432), 1,
|
|
anon_sym_COLON,
|
|
[3914] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(298), 1,
|
|
anon_sym_QMARK,
|
|
ACTIONS(434), 1,
|
|
anon_sym_RPAREN,
|
|
[3924] = 3,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(436), 1,
|
|
sym_identifier,
|
|
ACTIONS(438), 1,
|
|
anon_sym_STAR,
|
|
[3934] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(440), 1,
|
|
anon_sym_RBRACK,
|
|
[3941] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(442), 1,
|
|
anon_sym_RBRACE,
|
|
[3948] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(410), 1,
|
|
sym_identifier,
|
|
[3955] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(444), 1,
|
|
anon_sym_RPAREN,
|
|
[3962] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(446), 1,
|
|
anon_sym_in,
|
|
[3969] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(43), 1,
|
|
anon_sym_RPAREN,
|
|
[3976] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(448), 1,
|
|
anon_sym_RBRACK,
|
|
[3983] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(450), 1,
|
|
anon_sym_RBRACE,
|
|
[3990] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(452), 1,
|
|
anon_sym_RBRACK,
|
|
[3997] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(45), 1,
|
|
anon_sym_RPAREN,
|
|
[4004] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(454), 1,
|
|
sym_identifier,
|
|
[4011] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(276), 1,
|
|
anon_sym_RBRACE,
|
|
[4018] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(383), 1,
|
|
anon_sym_RBRACE,
|
|
[4025] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(456), 1,
|
|
anon_sym_RBRACE,
|
|
[4032] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(458), 1,
|
|
sym_identifier,
|
|
[4039] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(460), 1,
|
|
anon_sym_RPAREN,
|
|
[4046] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(392), 1,
|
|
anon_sym_RBRACE,
|
|
[4053] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(462), 1,
|
|
anon_sym_RBRACK,
|
|
[4060] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(464), 1,
|
|
ts_builtin_sym_end,
|
|
[4067] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(436), 1,
|
|
sym_identifier,
|
|
[4074] = 2,
|
|
ACTIONS(3), 1,
|
|
sym_comment,
|
|
ACTIONS(466), 1,
|
|
ts_builtin_sym_end,
|
|
};
|
|
|
|
static const uint32_t ts_small_parse_table_map[] = {
|
|
[SMALL_STATE(2)] = 0,
|
|
[SMALL_STATE(3)] = 69,
|
|
[SMALL_STATE(4)] = 138,
|
|
[SMALL_STATE(5)] = 204,
|
|
[SMALL_STATE(6)] = 270,
|
|
[SMALL_STATE(7)] = 333,
|
|
[SMALL_STATE(8)] = 396,
|
|
[SMALL_STATE(9)] = 456,
|
|
[SMALL_STATE(10)] = 516,
|
|
[SMALL_STATE(11)] = 576,
|
|
[SMALL_STATE(12)] = 636,
|
|
[SMALL_STATE(13)] = 696,
|
|
[SMALL_STATE(14)] = 753,
|
|
[SMALL_STATE(15)] = 810,
|
|
[SMALL_STATE(16)] = 867,
|
|
[SMALL_STATE(17)] = 924,
|
|
[SMALL_STATE(18)] = 981,
|
|
[SMALL_STATE(19)] = 1038,
|
|
[SMALL_STATE(20)] = 1095,
|
|
[SMALL_STATE(21)] = 1152,
|
|
[SMALL_STATE(22)] = 1209,
|
|
[SMALL_STATE(23)] = 1266,
|
|
[SMALL_STATE(24)] = 1323,
|
|
[SMALL_STATE(25)] = 1380,
|
|
[SMALL_STATE(26)] = 1437,
|
|
[SMALL_STATE(27)] = 1494,
|
|
[SMALL_STATE(28)] = 1551,
|
|
[SMALL_STATE(29)] = 1608,
|
|
[SMALL_STATE(30)] = 1665,
|
|
[SMALL_STATE(31)] = 1722,
|
|
[SMALL_STATE(32)] = 1779,
|
|
[SMALL_STATE(33)] = 1836,
|
|
[SMALL_STATE(34)] = 1870,
|
|
[SMALL_STATE(35)] = 1900,
|
|
[SMALL_STATE(36)] = 1930,
|
|
[SMALL_STATE(37)] = 1960,
|
|
[SMALL_STATE(38)] = 1987,
|
|
[SMALL_STATE(39)] = 2010,
|
|
[SMALL_STATE(40)] = 2037,
|
|
[SMALL_STATE(41)] = 2060,
|
|
[SMALL_STATE(42)] = 2087,
|
|
[SMALL_STATE(43)] = 2111,
|
|
[SMALL_STATE(44)] = 2132,
|
|
[SMALL_STATE(45)] = 2153,
|
|
[SMALL_STATE(46)] = 2174,
|
|
[SMALL_STATE(47)] = 2195,
|
|
[SMALL_STATE(48)] = 2216,
|
|
[SMALL_STATE(49)] = 2237,
|
|
[SMALL_STATE(50)] = 2258,
|
|
[SMALL_STATE(51)] = 2279,
|
|
[SMALL_STATE(52)] = 2300,
|
|
[SMALL_STATE(53)] = 2321,
|
|
[SMALL_STATE(54)] = 2342,
|
|
[SMALL_STATE(55)] = 2363,
|
|
[SMALL_STATE(56)] = 2384,
|
|
[SMALL_STATE(57)] = 2405,
|
|
[SMALL_STATE(58)] = 2426,
|
|
[SMALL_STATE(59)] = 2447,
|
|
[SMALL_STATE(60)] = 2468,
|
|
[SMALL_STATE(61)] = 2489,
|
|
[SMALL_STATE(62)] = 2510,
|
|
[SMALL_STATE(63)] = 2531,
|
|
[SMALL_STATE(64)] = 2552,
|
|
[SMALL_STATE(65)] = 2573,
|
|
[SMALL_STATE(66)] = 2594,
|
|
[SMALL_STATE(67)] = 2620,
|
|
[SMALL_STATE(68)] = 2641,
|
|
[SMALL_STATE(69)] = 2660,
|
|
[SMALL_STATE(70)] = 2682,
|
|
[SMALL_STATE(71)] = 2704,
|
|
[SMALL_STATE(72)] = 2726,
|
|
[SMALL_STATE(73)] = 2743,
|
|
[SMALL_STATE(74)] = 2760,
|
|
[SMALL_STATE(75)] = 2779,
|
|
[SMALL_STATE(76)] = 2798,
|
|
[SMALL_STATE(77)] = 2817,
|
|
[SMALL_STATE(78)] = 2835,
|
|
[SMALL_STATE(79)] = 2850,
|
|
[SMALL_STATE(80)] = 2865,
|
|
[SMALL_STATE(81)] = 2880,
|
|
[SMALL_STATE(82)] = 2895,
|
|
[SMALL_STATE(83)] = 2910,
|
|
[SMALL_STATE(84)] = 2925,
|
|
[SMALL_STATE(85)] = 2940,
|
|
[SMALL_STATE(86)] = 2955,
|
|
[SMALL_STATE(87)] = 2970,
|
|
[SMALL_STATE(88)] = 2985,
|
|
[SMALL_STATE(89)] = 3000,
|
|
[SMALL_STATE(90)] = 3015,
|
|
[SMALL_STATE(91)] = 3030,
|
|
[SMALL_STATE(92)] = 3045,
|
|
[SMALL_STATE(93)] = 3060,
|
|
[SMALL_STATE(94)] = 3075,
|
|
[SMALL_STATE(95)] = 3090,
|
|
[SMALL_STATE(96)] = 3105,
|
|
[SMALL_STATE(97)] = 3120,
|
|
[SMALL_STATE(98)] = 3135,
|
|
[SMALL_STATE(99)] = 3150,
|
|
[SMALL_STATE(100)] = 3165,
|
|
[SMALL_STATE(101)] = 3180,
|
|
[SMALL_STATE(102)] = 3195,
|
|
[SMALL_STATE(103)] = 3210,
|
|
[SMALL_STATE(104)] = 3228,
|
|
[SMALL_STATE(105)] = 3248,
|
|
[SMALL_STATE(106)] = 3264,
|
|
[SMALL_STATE(107)] = 3280,
|
|
[SMALL_STATE(108)] = 3298,
|
|
[SMALL_STATE(109)] = 3314,
|
|
[SMALL_STATE(110)] = 3327,
|
|
[SMALL_STATE(111)] = 3344,
|
|
[SMALL_STATE(112)] = 3355,
|
|
[SMALL_STATE(113)] = 3374,
|
|
[SMALL_STATE(114)] = 3391,
|
|
[SMALL_STATE(115)] = 3410,
|
|
[SMALL_STATE(116)] = 3423,
|
|
[SMALL_STATE(117)] = 3438,
|
|
[SMALL_STATE(118)] = 3457,
|
|
[SMALL_STATE(119)] = 3471,
|
|
[SMALL_STATE(120)] = 3485,
|
|
[SMALL_STATE(121)] = 3499,
|
|
[SMALL_STATE(122)] = 3515,
|
|
[SMALL_STATE(123)] = 3531,
|
|
[SMALL_STATE(124)] = 3543,
|
|
[SMALL_STATE(125)] = 3557,
|
|
[SMALL_STATE(126)] = 3573,
|
|
[SMALL_STATE(127)] = 3589,
|
|
[SMALL_STATE(128)] = 3605,
|
|
[SMALL_STATE(129)] = 3619,
|
|
[SMALL_STATE(130)] = 3630,
|
|
[SMALL_STATE(131)] = 3641,
|
|
[SMALL_STATE(132)] = 3650,
|
|
[SMALL_STATE(133)] = 3661,
|
|
[SMALL_STATE(134)] = 3674,
|
|
[SMALL_STATE(135)] = 3687,
|
|
[SMALL_STATE(136)] = 3696,
|
|
[SMALL_STATE(137)] = 3709,
|
|
[SMALL_STATE(138)] = 3722,
|
|
[SMALL_STATE(139)] = 3735,
|
|
[SMALL_STATE(140)] = 3744,
|
|
[SMALL_STATE(141)] = 3757,
|
|
[SMALL_STATE(142)] = 3770,
|
|
[SMALL_STATE(143)] = 3783,
|
|
[SMALL_STATE(144)] = 3796,
|
|
[SMALL_STATE(145)] = 3806,
|
|
[SMALL_STATE(146)] = 3816,
|
|
[SMALL_STATE(147)] = 3826,
|
|
[SMALL_STATE(148)] = 3836,
|
|
[SMALL_STATE(149)] = 3846,
|
|
[SMALL_STATE(150)] = 3856,
|
|
[SMALL_STATE(151)] = 3864,
|
|
[SMALL_STATE(152)] = 3874,
|
|
[SMALL_STATE(153)] = 3884,
|
|
[SMALL_STATE(154)] = 3894,
|
|
[SMALL_STATE(155)] = 3904,
|
|
[SMALL_STATE(156)] = 3914,
|
|
[SMALL_STATE(157)] = 3924,
|
|
[SMALL_STATE(158)] = 3934,
|
|
[SMALL_STATE(159)] = 3941,
|
|
[SMALL_STATE(160)] = 3948,
|
|
[SMALL_STATE(161)] = 3955,
|
|
[SMALL_STATE(162)] = 3962,
|
|
[SMALL_STATE(163)] = 3969,
|
|
[SMALL_STATE(164)] = 3976,
|
|
[SMALL_STATE(165)] = 3983,
|
|
[SMALL_STATE(166)] = 3990,
|
|
[SMALL_STATE(167)] = 3997,
|
|
[SMALL_STATE(168)] = 4004,
|
|
[SMALL_STATE(169)] = 4011,
|
|
[SMALL_STATE(170)] = 4018,
|
|
[SMALL_STATE(171)] = 4025,
|
|
[SMALL_STATE(172)] = 4032,
|
|
[SMALL_STATE(173)] = 4039,
|
|
[SMALL_STATE(174)] = 4046,
|
|
[SMALL_STATE(175)] = 4053,
|
|
[SMALL_STATE(176)] = 4060,
|
|
[SMALL_STATE(177)] = 4067,
|
|
[SMALL_STATE(178)] = 4074,
|
|
};
|
|
|
|
static const TSParseActionEntry ts_parse_actions[] = {
|
|
[0] = {.entry = {.count = 0, .reusable = false}},
|
|
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
|
|
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
|
|
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
|
|
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
|
|
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
|
|
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
|
|
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
|
|
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
|
|
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
|
|
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
|
|
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45),
|
|
[23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
|
|
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
|
|
[27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
|
|
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42),
|
|
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
|
|
[33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
|
|
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
|
|
[37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
|
|
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
|
|
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
|
|
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 2),
|
|
[45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 3),
|
|
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
|
|
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
|
|
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
|
|
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
|
|
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
|
|
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89),
|
|
[59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
|
|
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
|
|
[63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
|
|
[65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
|
|
[67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
|
|
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
|
|
[71] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 3),
|
|
[73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 3),
|
|
[75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(23),
|
|
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(177),
|
|
[81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_full_splat, 4),
|
|
[83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_full_splat, 4),
|
|
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(23),
|
|
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(177),
|
|
[91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2),
|
|
[93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2),
|
|
[95] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(23),
|
|
[98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(177),
|
|
[101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 2),
|
|
[103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 2),
|
|
[105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(177),
|
|
[108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 3),
|
|
[110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 3),
|
|
[112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attr_splat, 3),
|
|
[114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attr_splat, 3),
|
|
[116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(177),
|
|
[119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_lit, 2),
|
|
[121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_lit, 2),
|
|
[123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attr_splat_repeat1, 2),
|
|
[125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2),
|
|
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(177),
|
|
[130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_expr, 1),
|
|
[132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_expr, 1),
|
|
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
|
|
[136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
|
|
[138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
|
|
[140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 8),
|
|
[142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 8),
|
|
[144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_value, 1),
|
|
[146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_value, 1),
|
|
[148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2),
|
|
[150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2),
|
|
[152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool_lit, 1),
|
|
[154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool_lit, 1),
|
|
[156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 1),
|
|
[158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 1),
|
|
[160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 4),
|
|
[162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 4),
|
|
[164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_tuple_expr, 5),
|
|
[166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_tuple_expr, 5),
|
|
[168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_get_attr, 2),
|
|
[170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_get_attr, 2),
|
|
[172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2),
|
|
[174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2),
|
|
[176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4),
|
|
[178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4),
|
|
[180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_term, 1),
|
|
[182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_term, 1),
|
|
[184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_term, 2),
|
|
[186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_term, 2),
|
|
[188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 1),
|
|
[190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 1),
|
|
[192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4),
|
|
[194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4),
|
|
[196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expr, 1),
|
|
[198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expr, 1),
|
|
[200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3),
|
|
[202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3),
|
|
[204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_term, 3),
|
|
[206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_term, 3),
|
|
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3),
|
|
[210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3),
|
|
[212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 6),
|
|
[214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 6),
|
|
[216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_object_expr, 7),
|
|
[218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_object_expr, 7),
|
|
[220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 1),
|
|
[222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 1),
|
|
[224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_value, 1),
|
|
[226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_value, 1),
|
|
[228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
|
|
[230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
|
|
[232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5),
|
|
[234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5),
|
|
[236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_conditional, 5), SHIFT(19),
|
|
[239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 3), SHIFT(27),
|
|
[242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 3), SHIFT(160),
|
|
[245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_full_splat, 4), SHIFT(27),
|
|
[248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_full_splat, 4), SHIFT(160),
|
|
[251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(27),
|
|
[254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_full_splat_repeat1, 2), SHIFT_REPEAT(160),
|
|
[257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 7),
|
|
[259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 7),
|
|
[261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_intro, 5),
|
|
[263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_intro, 5),
|
|
[265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 2), SHIFT(160),
|
|
[268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_attr_splat, 3), SHIFT(160),
|
|
[271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attr_splat_repeat1, 2), SHIFT_REPEAT(160),
|
|
[274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
|
|
[276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
|
|
[278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
|
|
[280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
|
|
[282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
|
|
[284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_expr, 1), SHIFT(32),
|
|
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2),
|
|
[289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_body_repeat1, 2), SHIFT_REPEAT(104),
|
|
[292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
|
|
[294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 1),
|
|
[296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2),
|
|
[298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
|
|
[300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2),
|
|
[302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(110),
|
|
[305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(120),
|
|
[308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arguments, 1),
|
|
[310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
|
|
[312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
|
|
[314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
|
|
[316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
|
|
[318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
|
|
[320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
|
|
[322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
|
|
[324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
|
|
[326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_conditional, 5), SHIFT(22),
|
|
[329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2), SHIFT_REPEAT(31),
|
|
[332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
|
|
[334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
|
|
[336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95),
|
|
[338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
|
|
[340] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(),
|
|
[342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38),
|
|
[344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
|
|
[346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
|
|
[348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
|
|
[350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
|
|
[352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
|
|
[354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 1),
|
|
[356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
|
|
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
|
|
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
|
|
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
|
|
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
|
|
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
|
|
[368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_lit_repeat1, 2),
|
|
[370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_lit_repeat1, 2), SHIFT_REPEAT(128),
|
|
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_cond, 2),
|
|
[375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
|
|
[377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, .production_id = 1),
|
|
[379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_elem, 3),
|
|
[381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
|
|
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
|
|
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 1),
|
|
[387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2),
|
|
[389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(10),
|
|
[392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
|
|
[394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
|
|
[396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, .production_id = 1),
|
|
[398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
|
|
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
|
|
[402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
|
|
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
|
|
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
|
|
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
|
|
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
|
|
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
|
|
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
|
|
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
|
|
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
|
|
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
|
|
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
|
|
[424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
|
|
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
|
|
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
|
|
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
|
|
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
|
|
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
|
|
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
|
|
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
|
|
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
|
|
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
|
|
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
|
|
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
|
|
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
|
|
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
|
|
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
|
|
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
|
|
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
|
|
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
|
|
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
|
|
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
|
|
[464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config_file, 1),
|
|
[466] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#ifdef _WIN32
|
|
#define extern __declspec(dllexport)
|
|
#endif
|
|
|
|
extern const TSLanguage *tree_sitter_hcl(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,
|
|
.field_names = ts_field_names,
|
|
.field_map_slices = ts_field_map_slices,
|
|
.field_map_entries = ts_field_map_entries,
|
|
.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,
|
|
};
|
|
return &language;
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|