#include "tree_sitter/parser.h"
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 15
#define STATE_COUNT 228
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 86
#define ALIAS_COUNT 0
#define TOKEN_COUNT 51
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
#define MAX_ALIAS_SEQUENCE_LENGTH 9
#define MAX_RESERVED_WORD_SET_SIZE 0
#define PRODUCTION_ID_COUNT 1
#define SUPERTYPE_COUNT 0
enum ts_symbol_identifiers {
anon_sym_DOT = 1,
anon_sym_module = 2,
anon_sym_LBRACE = 3,
anon_sym_RBRACE_SEMI = 4,
anon_sym_import = 5,
anon_sym_SEMI = 6,
anon_sym_DOT_STAR = 7,
anon_sym_type = 8,
anon_sym_EQ = 9,
anon_sym_newtype = 10,
anon_sym_LT = 11,
anon_sym_COMMA = 12,
anon_sym_GT = 13,
anon_sym_Int8 = 14,
anon_sym_Int16 = 15,
anon_sym_Int32 = 16,
anon_sym_Int64 = 17,
anon_sym_Word8 = 18,
anon_sym_Word16 = 19,
anon_sym_Word32 = 20,
anon_sym_Word64 = 21,
anon_sym_Bool = 22,
anon_sym_Void = 23,
anon_sym_Float = 24,
anon_sym_Double = 25,
anon_sym_String = 26,
anon_sym_Bytes = 27,
anon_sym_Json = 28,
anon_sym_Vector = 29,
anon_sym_StringMap = 30,
anon_sym_Nullable = 31,
anon_sym_TypeToken = 32,
anon_sym_struct = 33,
anon_sym_union = 34,
anon_sym_AT = 35,
anon_sym_annotation = 36,
anon_sym_COLON_COLON = 37,
anon_sym_SLASH_SLASH = 38,
aux_sym_comment_token1 = 39,
anon_sym_SLASH_SLASH_SLASH = 40,
anon_sym_null = 41,
anon_sym_true = 42,
anon_sym_false = 43,
sym_json_number = 44,
sym_json_string = 45,
anon_sym_LBRACK = 46,
anon_sym_RBRACK = 47,
anon_sym_RBRACE = 48,
anon_sym_COLON = 49,
sym_identifier = 50,
sym_source_file = 51,
sym_scoped_name = 52,
sym_definition_preamble = 53,
sym_module_definition = 54,
sym_module_body = 55,
sym_import_declaration = 56,
sym_import_path = 57,
sym_type_definition = 58,
sym_newtype_definition = 59,
sym_type_name = 60,
sym_type_parameters = 61,
sym_type_expression = 62,
sym_type_arguments = 63,
sym_primitive_type = 64,
sym_struct_definition = 65,
sym_union_definition = 66,
sym_field_block = 67,
sym_field = 68,
sym_annotation = 69,
sym_annotation_declaration = 70,
sym_field_reference = 71,
sym_comment = 72,
sym_docstring = 73,
sym_json_value = 74,
sym_json_array = 75,
sym_json_object = 76,
sym_json_object_pair = 77,
aux_sym_scoped_name_repeat1 = 78,
aux_sym_definition_preamble_repeat1 = 79,
aux_sym_module_body_repeat1 = 80,
aux_sym_type_parameters_repeat1 = 81,
aux_sym_type_arguments_repeat1 = 82,
aux_sym_field_block_repeat1 = 83,
aux_sym_json_array_repeat1 = 84,
aux_sym_json_object_repeat1 = 85,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[anon_sym_DOT] = ".",
[anon_sym_module] = "module",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE_SEMI] = "};",
[anon_sym_import] = "import",
[anon_sym_SEMI] = ";",
[anon_sym_DOT_STAR] = ".*",
[anon_sym_type] = "type",
[anon_sym_EQ] = "=",
[anon_sym_newtype] = "newtype",
[anon_sym_LT] = "<",
[anon_sym_COMMA] = ",",
[anon_sym_GT] = ">",
[anon_sym_Int8] = "Int8",
[anon_sym_Int16] = "Int16",
[anon_sym_Int32] = "Int32",
[anon_sym_Int64] = "Int64",
[anon_sym_Word8] = "Word8",
[anon_sym_Word16] = "Word16",
[anon_sym_Word32] = "Word32",
[anon_sym_Word64] = "Word64",
[anon_sym_Bool] = "Bool",
[anon_sym_Void] = "Void",
[anon_sym_Float] = "Float",
[anon_sym_Double] = "Double",
[anon_sym_String] = "String",
[anon_sym_Bytes] = "Bytes",
[anon_sym_Json] = "Json",
[anon_sym_Vector] = "Vector",
[anon_sym_StringMap] = "StringMap",
[anon_sym_Nullable] = "Nullable",
[anon_sym_TypeToken] = "TypeToken",
[anon_sym_struct] = "struct",
[anon_sym_union] = "union",
[anon_sym_AT] = "@",
[anon_sym_annotation] = "annotation",
[anon_sym_COLON_COLON] = "::",
[anon_sym_SLASH_SLASH] = "//",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_SLASH_SLASH_SLASH] = "///",
[anon_sym_null] = "null",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[sym_json_number] = "json_number",
[sym_json_string] = "json_string",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
[anon_sym_RBRACE] = "}",
[anon_sym_COLON] = ":",
[sym_identifier] = "identifier",
[sym_source_file] = "source_file",
[sym_scoped_name] = "scoped_name",
[sym_definition_preamble] = "definition_preamble",
[sym_module_definition] = "module_definition",
[sym_module_body] = "module_body",
[sym_import_declaration] = "import_declaration",
[sym_import_path] = "import_path",
[sym_type_definition] = "type_definition",
[sym_newtype_definition] = "newtype_definition",
[sym_type_name] = "type_name",
[sym_type_parameters] = "type_parameters",
[sym_type_expression] = "type_expression",
[sym_type_arguments] = "type_arguments",
[sym_primitive_type] = "primitive_type",
[sym_struct_definition] = "struct_definition",
[sym_union_definition] = "union_definition",
[sym_field_block] = "field_block",
[sym_field] = "field",
[sym_annotation] = "annotation",
[sym_annotation_declaration] = "annotation_declaration",
[sym_field_reference] = "field_reference",
[sym_comment] = "comment",
[sym_docstring] = "docstring",
[sym_json_value] = "json_value",
[sym_json_array] = "json_array",
[sym_json_object] = "json_object",
[sym_json_object_pair] = "json_object_pair",
[aux_sym_scoped_name_repeat1] = "scoped_name_repeat1",
[aux_sym_definition_preamble_repeat1] = "definition_preamble_repeat1",
[aux_sym_module_body_repeat1] = "module_body_repeat1",
[aux_sym_type_parameters_repeat1] = "type_parameters_repeat1",
[aux_sym_type_arguments_repeat1] = "type_arguments_repeat1",
[aux_sym_field_block_repeat1] = "field_block_repeat1",
[aux_sym_json_array_repeat1] = "json_array_repeat1",
[aux_sym_json_object_repeat1] = "json_object_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[anon_sym_DOT] = anon_sym_DOT,
[anon_sym_module] = anon_sym_module,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE_SEMI] = anon_sym_RBRACE_SEMI,
[anon_sym_import] = anon_sym_import,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_DOT_STAR] = anon_sym_DOT_STAR,
[anon_sym_type] = anon_sym_type,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_newtype] = anon_sym_newtype,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_Int8] = anon_sym_Int8,
[anon_sym_Int16] = anon_sym_Int16,
[anon_sym_Int32] = anon_sym_Int32,
[anon_sym_Int64] = anon_sym_Int64,
[anon_sym_Word8] = anon_sym_Word8,
[anon_sym_Word16] = anon_sym_Word16,
[anon_sym_Word32] = anon_sym_Word32,
[anon_sym_Word64] = anon_sym_Word64,
[anon_sym_Bool] = anon_sym_Bool,
[anon_sym_Void] = anon_sym_Void,
[anon_sym_Float] = anon_sym_Float,
[anon_sym_Double] = anon_sym_Double,
[anon_sym_String] = anon_sym_String,
[anon_sym_Bytes] = anon_sym_Bytes,
[anon_sym_Json] = anon_sym_Json,
[anon_sym_Vector] = anon_sym_Vector,
[anon_sym_StringMap] = anon_sym_StringMap,
[anon_sym_Nullable] = anon_sym_Nullable,
[anon_sym_TypeToken] = anon_sym_TypeToken,
[anon_sym_struct] = anon_sym_struct,
[anon_sym_union] = anon_sym_union,
[anon_sym_AT] = anon_sym_AT,
[anon_sym_annotation] = anon_sym_annotation,
[anon_sym_COLON_COLON] = anon_sym_COLON_COLON,
[anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_SLASH_SLASH_SLASH] = anon_sym_SLASH_SLASH_SLASH,
[anon_sym_null] = anon_sym_null,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[sym_json_number] = sym_json_number,
[sym_json_string] = sym_json_string,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_COLON] = anon_sym_COLON,
[sym_identifier] = sym_identifier,
[sym_source_file] = sym_source_file,
[sym_scoped_name] = sym_scoped_name,
[sym_definition_preamble] = sym_definition_preamble,
[sym_module_definition] = sym_module_definition,
[sym_module_body] = sym_module_body,
[sym_import_declaration] = sym_import_declaration,
[sym_import_path] = sym_import_path,
[sym_type_definition] = sym_type_definition,
[sym_newtype_definition] = sym_newtype_definition,
[sym_type_name] = sym_type_name,
[sym_type_parameters] = sym_type_parameters,
[sym_type_expression] = sym_type_expression,
[sym_type_arguments] = sym_type_arguments,
[sym_primitive_type] = sym_primitive_type,
[sym_struct_definition] = sym_struct_definition,
[sym_union_definition] = sym_union_definition,
[sym_field_block] = sym_field_block,
[sym_field] = sym_field,
[sym_annotation] = sym_annotation,
[sym_annotation_declaration] = sym_annotation_declaration,
[sym_field_reference] = sym_field_reference,
[sym_comment] = sym_comment,
[sym_docstring] = sym_docstring,
[sym_json_value] = sym_json_value,
[sym_json_array] = sym_json_array,
[sym_json_object] = sym_json_object,
[sym_json_object_pair] = sym_json_object_pair,
[aux_sym_scoped_name_repeat1] = aux_sym_scoped_name_repeat1,
[aux_sym_definition_preamble_repeat1] = aux_sym_definition_preamble_repeat1,
[aux_sym_module_body_repeat1] = aux_sym_module_body_repeat1,
[aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1,
[aux_sym_type_arguments_repeat1] = aux_sym_type_arguments_repeat1,
[aux_sym_field_block_repeat1] = aux_sym_field_block_repeat1,
[aux_sym_json_array_repeat1] = aux_sym_json_array_repeat1,
[aux_sym_json_object_repeat1] = aux_sym_json_object_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[anon_sym_module] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_import] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_type] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_newtype] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_Int8] = {
.visible = true,
.named = false,
},
[anon_sym_Int16] = {
.visible = true,
.named = false,
},
[anon_sym_Int32] = {
.visible = true,
.named = false,
},
[anon_sym_Int64] = {
.visible = true,
.named = false,
},
[anon_sym_Word8] = {
.visible = true,
.named = false,
},
[anon_sym_Word16] = {
.visible = true,
.named = false,
},
[anon_sym_Word32] = {
.visible = true,
.named = false,
},
[anon_sym_Word64] = {
.visible = true,
.named = false,
},
[anon_sym_Bool] = {
.visible = true,
.named = false,
},
[anon_sym_Void] = {
.visible = true,
.named = false,
},
[anon_sym_Float] = {
.visible = true,
.named = false,
},
[anon_sym_Double] = {
.visible = true,
.named = false,
},
[anon_sym_String] = {
.visible = true,
.named = false,
},
[anon_sym_Bytes] = {
.visible = true,
.named = false,
},
[anon_sym_Json] = {
.visible = true,
.named = false,
},
[anon_sym_Vector] = {
.visible = true,
.named = false,
},
[anon_sym_StringMap] = {
.visible = true,
.named = false,
},
[anon_sym_Nullable] = {
.visible = true,
.named = false,
},
[anon_sym_TypeToken] = {
.visible = true,
.named = false,
},
[anon_sym_struct] = {
.visible = true,
.named = false,
},
[anon_sym_union] = {
.visible = true,
.named = false,
},
[anon_sym_AT] = {
.visible = true,
.named = false,
},
[anon_sym_annotation] = {
.visible = true,
.named = false,
},
[anon_sym_COLON_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH_SLASH] = {
.visible = true,
.named = false,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_SLASH_SLASH_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_null] = {
.visible = true,
.named = false,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[sym_json_number] = {
.visible = true,
.named = true,
},
[sym_json_string] = {
.visible = true,
.named = true,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym_source_file] = {
.visible = true,
.named = true,
},
[sym_scoped_name] = {
.visible = true,
.named = true,
},
[sym_definition_preamble] = {
.visible = true,
.named = true,
},
[sym_module_definition] = {
.visible = true,
.named = true,
},
[sym_module_body] = {
.visible = true,
.named = true,
},
[sym_import_declaration] = {
.visible = true,
.named = true,
},
[sym_import_path] = {
.visible = true,
.named = true,
},
[sym_type_definition] = {
.visible = true,
.named = true,
},
[sym_newtype_definition] = {
.visible = true,
.named = true,
},
[sym_type_name] = {
.visible = true,
.named = true,
},
[sym_type_parameters] = {
.visible = true,
.named = true,
},
[sym_type_expression] = {
.visible = true,
.named = true,
},
[sym_type_arguments] = {
.visible = true,
.named = true,
},
[sym_primitive_type] = {
.visible = true,
.named = true,
},
[sym_struct_definition] = {
.visible = true,
.named = true,
},
[sym_union_definition] = {
.visible = true,
.named = true,
},
[sym_field_block] = {
.visible = true,
.named = true,
},
[sym_field] = {
.visible = true,
.named = true,
},
[sym_annotation] = {
.visible = true,
.named = true,
},
[sym_annotation_declaration] = {
.visible = true,
.named = true,
},
[sym_field_reference] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_docstring] = {
.visible = true,
.named = true,
},
[sym_json_value] = {
.visible = true,
.named = true,
},
[sym_json_array] = {
.visible = true,
.named = true,
},
[sym_json_object] = {
.visible = true,
.named = true,
},
[sym_json_object_pair] = {
.visible = true,
.named = true,
},
[aux_sym_scoped_name_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_definition_preamble_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_module_body_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_type_parameters_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_type_arguments_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_field_block_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_json_array_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_json_object_repeat1] = {
.visible = false,
.named = false,
},
};
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 const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
[5] = 5,
[6] = 6,
[7] = 7,
[8] = 8,
[9] = 9,
[10] = 10,
[11] = 11,
[12] = 12,
[13] = 13,
[14] = 14,
[15] = 15,
[16] = 16,
[17] = 17,
[18] = 18,
[19] = 19,
[20] = 20,
[21] = 21,
[22] = 22,
[23] = 23,
[24] = 24,
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
[29] = 29,
[30] = 30,
[31] = 31,
[32] = 32,
[33] = 33,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 5,
[40] = 7,
[41] = 8,
[42] = 6,
[43] = 9,
[44] = 44,
[45] = 10,
[46] = 7,
[47] = 11,
[48] = 8,
[49] = 6,
[50] = 44,
[51] = 44,
[52] = 52,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 9,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
[64] = 8,
[65] = 6,
[66] = 66,
[67] = 67,
[68] = 68,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
[74] = 74,
[75] = 75,
[76] = 76,
[77] = 77,
[78] = 78,
[79] = 79,
[80] = 80,
[81] = 81,
[82] = 82,
[83] = 83,
[84] = 84,
[85] = 85,
[86] = 86,
[87] = 7,
[88] = 88,
[89] = 27,
[90] = 26,
[91] = 34,
[92] = 28,
[93] = 35,
[94] = 30,
[95] = 9,
[96] = 31,
[97] = 33,
[98] = 29,
[99] = 32,
[100] = 100,
[101] = 101,
[102] = 102,
[103] = 103,
[104] = 104,
[105] = 105,
[106] = 106,
[107] = 107,
[108] = 108,
[109] = 109,
[110] = 110,
[111] = 28,
[112] = 112,
[113] = 30,
[114] = 31,
[115] = 32,
[116] = 33,
[117] = 34,
[118] = 35,
[119] = 119,
[120] = 120,
[121] = 121,
[122] = 122,
[123] = 123,
[124] = 124,
[125] = 125,
[126] = 119,
[127] = 127,
[128] = 128,
[129] = 129,
[130] = 130,
[131] = 131,
[132] = 132,
[133] = 133,
[134] = 134,
[135] = 135,
[136] = 136,
[137] = 137,
[138] = 138,
[139] = 138,
[140] = 140,
[141] = 130,
[142] = 132,
[143] = 140,
[144] = 144,
[145] = 138,
[146] = 130,
[147] = 132,
[148] = 140,
[149] = 119,
[150] = 150,
[151] = 151,
[152] = 152,
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
[159] = 159,
[160] = 160,
[161] = 161,
[162] = 162,
[163] = 163,
[164] = 164,
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 171,
[172] = 172,
[173] = 173,
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 178,
[179] = 179,
[180] = 180,
[181] = 181,
[182] = 182,
[183] = 183,
[184] = 184,
[185] = 181,
[186] = 186,
[187] = 187,
[188] = 188,
[189] = 189,
[190] = 190,
[191] = 191,
[192] = 192,
[193] = 193,
[194] = 194,
[195] = 195,
[196] = 196,
[197] = 197,
[198] = 198,
[199] = 199,
[200] = 200,
[201] = 201,
[202] = 202,
[203] = 203,
[204] = 204,
[205] = 205,
[206] = 206,
[207] = 207,
[208] = 208,
[209] = 209,
[210] = 189,
[211] = 211,
[212] = 212,
[213] = 213,
[214] = 214,
[215] = 215,
[216] = 216,
[217] = 217,
[218] = 211,
[219] = 219,
[220] = 211,
[221] = 221,
[222] = 222,
[223] = 223,
[224] = 224,
[225] = 211,
[226] = 226,
[227] = 227,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(129);
ADVANCE_MAP(
'"', 3,
',', 142,
'-', 10,
'.', 131,
'/', 8,
'0', 200,
':', 209,
';', 136,
'<', 141,
'=', 139,
'>', 143,
'@', 184,
'B', 78,
'D', 75,
'F', 57,
'I', 70,
'J', 99,
'N', 113,
'S', 100,
'T', 118,
'V', 34,
'W', 77,
'[', 205,
']', 206,
'a', 71,
'f', 22,
'i', 63,
'm', 73,
'n', 36,
's', 106,
't', 92,
'u', 69,
'{', 133,
'}', 207,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(0);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(201);
END_STATE();
case 1:
ADVANCE_MAP(
'"', 3,
'-', 10,
'.', 130,
'/', 8,
'0', 200,
'@', 184,
'B', 258,
'D', 256,
'F', 245,
'I', 252,
'J', 268,
'N', 276,
'S', 270,
'T', 279,
'V', 228,
'W', 257,
'[', 205,
'f', 221,
'n', 278,
't', 266,
'{', 133,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(1);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(201);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 2:
ADVANCE_MAP(
'"', 3,
'-', 10,
'.', 130,
'/', 9,
'0', 200,
'[', 205,
']', 206,
'a', 71,
'f', 22,
'm', 73,
'n', 36,
's', 106,
't', 92,
'u', 69,
'{', 133,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(2);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(201);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(204);
if (lookahead == '\\') ADVANCE(111);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
if (lookahead == '*') ADVANCE(137);
END_STATE();
case 5:
ADVANCE_MAP(
',', 142,
'.', 131,
'/', 9,
':', 19,
';', 136,
'<', 141,
'=', 139,
'>', 143,
'{', 133,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(5);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 6:
ADVANCE_MAP(
'/', 8,
'@', 184,
'B', 258,
'D', 256,
'F', 245,
'I', 252,
'J', 268,
'N', 276,
'S', 270,
'T', 279,
'V', 228,
'W', 257,
'}', 20,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(6);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 7:
ADVANCE_MAP(
'/', 8,
'@', 184,
'a', 71,
'i', 63,
'n', 35,
's', 106,
't', 119,
'u', 69,
'}', 20,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(7);
END_STATE();
case 8:
if (lookahead == '/') ADVANCE(188);
END_STATE();
case 9:
if (lookahead == '/') ADVANCE(187);
END_STATE();
case 10:
if (lookahead == '0') ADVANCE(200);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(201);
END_STATE();
case 11:
if (lookahead == '1') ADVANCE(17);
if (lookahead == '3') ADVANCE(13);
if (lookahead == '6') ADVANCE(15);
if (lookahead == '8') ADVANCE(144);
END_STATE();
case 12:
if (lookahead == '1') ADVANCE(18);
if (lookahead == '3') ADVANCE(14);
if (lookahead == '6') ADVANCE(16);
if (lookahead == '8') ADVANCE(152);
END_STATE();
case 13:
if (lookahead == '2') ADVANCE(148);
END_STATE();
case 14:
if (lookahead == '2') ADVANCE(156);
END_STATE();
case 15:
if (lookahead == '4') ADVANCE(150);
END_STATE();
case 16:
if (lookahead == '4') ADVANCE(158);
END_STATE();
case 17:
if (lookahead == '6') ADVANCE(146);
END_STATE();
case 18:
if (lookahead == '6') ADVANCE(154);
END_STATE();
case 19:
if (lookahead == ':') ADVANCE(186);
END_STATE();
case 20:
if (lookahead == ';') ADVANCE(134);
END_STATE();
case 21:
if (lookahead == 'T') ADVANCE(74);
END_STATE();
case 22:
if (lookahead == 'a') ADVANCE(55);
END_STATE();
case 23:
if (lookahead == 'a') ADVANCE(86);
END_STATE();
case 24:
if (lookahead == 'a') ADVANCE(103);
END_STATE();
case 25:
if (lookahead == 'a') ADVANCE(108);
END_STATE();
case 26:
if (lookahead == 'a') ADVANCE(28);
END_STATE();
case 27:
if (lookahead == 'b') ADVANCE(60);
END_STATE();
case 28:
if (lookahead == 'b') ADVANCE(62);
END_STATE();
case 29:
if (lookahead == 'c') ADVANCE(109);
END_STATE();
case 30:
if (lookahead == 'c') ADVANCE(105);
END_STATE();
case 31:
if (lookahead == 'd') ADVANCE(162);
END_STATE();
case 32:
if (lookahead == 'd') ADVANCE(12);
END_STATE();
case 33:
if (lookahead == 'd') ADVANCE(115);
END_STATE();
case 34:
if (lookahead == 'e') ADVANCE(29);
if (lookahead == 'o') ADVANCE(48);
END_STATE();
case 35:
if (lookahead == 'e') ADVANCE(117);
END_STATE();
case 36:
if (lookahead == 'e') ADVANCE(117);
if (lookahead == 'u') ADVANCE(59);
END_STATE();
case 37:
if (lookahead == 'e') ADVANCE(21);
END_STATE();
case 38:
if (lookahead == 'e') ADVANCE(196);
END_STATE();
case 39:
if (lookahead == 'e') ADVANCE(138);
END_STATE();
case 40:
if (lookahead == 'e') ADVANCE(198);
END_STATE();
case 41:
if (lookahead == 'e') ADVANCE(166);
END_STATE();
case 42:
if (lookahead == 'e') ADVANCE(132);
END_STATE();
case 43:
if (lookahead == 'e') ADVANCE(140);
END_STATE();
case 44:
if (lookahead == 'e') ADVANCE(178);
END_STATE();
case 45:
if (lookahead == 'e') ADVANCE(97);
END_STATE();
case 46:
if (lookahead == 'e') ADVANCE(67);
END_STATE();
case 47:
if (lookahead == 'g') ADVANCE(169);
END_STATE();
case 48:
if (lookahead == 'i') ADVANCE(31);
END_STATE();
case 49:
if (lookahead == 'i') ADVANCE(65);
END_STATE();
case 50:
if (lookahead == 'i') ADVANCE(83);
END_STATE();
case 51:
if (lookahead == 'i') ADVANCE(85);
END_STATE();
case 52:
if (lookahead == 'k') ADVANCE(46);
END_STATE();
case 53:
if (lookahead == 'l') ADVANCE(160);
END_STATE();
case 54:
if (lookahead == 'l') ADVANCE(194);
END_STATE();
case 55:
if (lookahead == 'l') ADVANCE(98);
END_STATE();
case 56:
if (lookahead == 'l') ADVANCE(26);
END_STATE();
case 57:
if (lookahead == 'l') ADVANCE(76);
END_STATE();
case 58:
if (lookahead == 'l') ADVANCE(56);
END_STATE();
case 59:
if (lookahead == 'l') ADVANCE(54);
END_STATE();
case 60:
if (lookahead == 'l') ADVANCE(41);
END_STATE();
case 61:
if (lookahead == 'l') ADVANCE(42);
END_STATE();
case 62:
if (lookahead == 'l') ADVANCE(44);
END_STATE();
case 63:
if (lookahead == 'm') ADVANCE(90);
END_STATE();
case 64:
if (lookahead == 'n') ADVANCE(172);
END_STATE();
case 65:
if (lookahead == 'n') ADVANCE(47);
END_STATE();
case 66:
if (lookahead == 'n') ADVANCE(183);
END_STATE();
case 67:
if (lookahead == 'n') ADVANCE(180);
END_STATE();
case 68:
if (lookahead == 'n') ADVANCE(185);
END_STATE();
case 69:
if (lookahead == 'n') ADVANCE(50);
END_STATE();
case 70:
if (lookahead == 'n') ADVANCE(102);
END_STATE();
case 71:
if (lookahead == 'n') ADVANCE(72);
END_STATE();
case 72:
if (lookahead == 'n') ADVANCE(84);
END_STATE();
case 73:
if (lookahead == 'o') ADVANCE(33);
END_STATE();
case 74:
if (lookahead == 'o') ADVANCE(52);
END_STATE();
case 75:
if (lookahead == 'o') ADVANCE(112);
END_STATE();
case 76:
if (lookahead == 'o') ADVANCE(24);
END_STATE();
case 77:
if (lookahead == 'o') ADVANCE(94);
END_STATE();
case 78:
if (lookahead == 'o') ADVANCE(79);
if (lookahead == 'y') ADVANCE(101);
END_STATE();
case 79:
if (lookahead == 'o') ADVANCE(53);
END_STATE();
case 80:
if (lookahead == 'o') ADVANCE(96);
END_STATE();
case 81:
if (lookahead == 'o') ADVANCE(64);
END_STATE();
case 82:
if (lookahead == 'o') ADVANCE(91);
END_STATE();
case 83:
if (lookahead == 'o') ADVANCE(66);
END_STATE();
case 84:
if (lookahead == 'o') ADVANCE(107);
END_STATE();
case 85:
if (lookahead == 'o') ADVANCE(68);
END_STATE();
case 86:
if (lookahead == 'p') ADVANCE(176);
END_STATE();
case 87:
if (lookahead == 'p') ADVANCE(37);
END_STATE();
case 88:
if (lookahead == 'p') ADVANCE(39);
END_STATE();
case 89:
if (lookahead == 'p') ADVANCE(43);
END_STATE();
case 90:
if (lookahead == 'p') ADVANCE(80);
END_STATE();
case 91:
if (lookahead == 'r') ADVANCE(174);
END_STATE();
case 92:
if (lookahead == 'r') ADVANCE(114);
if (lookahead == 'y') ADVANCE(88);
END_STATE();
case 93:
if (lookahead == 'r') ADVANCE(49);
END_STATE();
case 94:
if (lookahead == 'r') ADVANCE(32);
END_STATE();
case 95:
if (lookahead == 'r') ADVANCE(116);
END_STATE();
case 96:
if (lookahead == 'r') ADVANCE(104);
END_STATE();
case 97:
if (lookahead == 's') ADVANCE(170);
END_STATE();
case 98:
if (lookahead == 's') ADVANCE(40);
END_STATE();
case 99:
if (lookahead == 's') ADVANCE(81);
END_STATE();
case 100:
if (lookahead == 't') ADVANCE(93);
END_STATE();
case 101:
if (lookahead == 't') ADVANCE(45);
END_STATE();
case 102:
if (lookahead == 't') ADVANCE(11);
END_STATE();
case 103:
if (lookahead == 't') ADVANCE(164);
END_STATE();
case 104:
if (lookahead == 't') ADVANCE(135);
END_STATE();
case 105:
if (lookahead == 't') ADVANCE(182);
END_STATE();
case 106:
if (lookahead == 't') ADVANCE(95);
END_STATE();
case 107:
if (lookahead == 't') ADVANCE(25);
END_STATE();
case 108:
if (lookahead == 't') ADVANCE(51);
END_STATE();
case 109:
if (lookahead == 't') ADVANCE(82);
END_STATE();
case 110:
if (lookahead == 't') ADVANCE(120);
END_STATE();
case 111:
ADVANCE_MAP(
'u', 127,
'"', 3,
'/', 3,
'\\', 3,
'b', 3,
'f', 3,
'n', 3,
'r', 3,
't', 3,
);
END_STATE();
case 112:
if (lookahead == 'u') ADVANCE(27);
END_STATE();
case 113:
if (lookahead == 'u') ADVANCE(58);
END_STATE();
case 114:
if (lookahead == 'u') ADVANCE(38);
END_STATE();
case 115:
if (lookahead == 'u') ADVANCE(61);
END_STATE();
case 116:
if (lookahead == 'u') ADVANCE(30);
END_STATE();
case 117:
if (lookahead == 'w') ADVANCE(110);
END_STATE();
case 118:
if (lookahead == 'y') ADVANCE(87);
END_STATE();
case 119:
if (lookahead == 'y') ADVANCE(88);
END_STATE();
case 120:
if (lookahead == 'y') ADVANCE(89);
END_STATE();
case 121:
if (lookahead == '+' ||
lookahead == '-') ADVANCE(123);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203);
END_STATE();
case 122:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202);
END_STATE();
case 123:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203);
END_STATE();
case 124:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(3);
END_STATE();
case 125:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(124);
END_STATE();
case 126:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(125);
END_STATE();
case 127:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(126);
END_STATE();
case 128:
if (eof) ADVANCE(129);
ADVANCE_MAP(
'"', 3,
',', 142,
'.', 4,
'/', 9,
':', 208,
';', 136,
'<', 141,
'=', 139,
'>', 143,
'B', 258,
'D', 256,
'F', 245,
'I', 252,
'J', 268,
'N', 276,
'S', 270,
'T', 279,
'V', 228,
'W', 257,
']', 206,
'{', 133,
'}', 207,
);
if (('\t' <= lookahead && lookahead <= '\r') ||
lookahead == ' ') SKIP(128);
if (('A' <= lookahead && lookahead <= 'Z') ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 129:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 130:
ACCEPT_TOKEN(anon_sym_DOT);
END_STATE();
case 131:
ACCEPT_TOKEN(anon_sym_DOT);
if (lookahead == '*') ADVANCE(137);
END_STATE();
case 132:
ACCEPT_TOKEN(anon_sym_module);
END_STATE();
case 133:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 134:
ACCEPT_TOKEN(anon_sym_RBRACE_SEMI);
END_STATE();
case 135:
ACCEPT_TOKEN(anon_sym_import);
END_STATE();
case 136:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 137:
ACCEPT_TOKEN(anon_sym_DOT_STAR);
END_STATE();
case 138:
ACCEPT_TOKEN(anon_sym_type);
END_STATE();
case 139:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
case 140:
ACCEPT_TOKEN(anon_sym_newtype);
END_STATE();
case 141:
ACCEPT_TOKEN(anon_sym_LT);
END_STATE();
case 142:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 143:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 144:
ACCEPT_TOKEN(anon_sym_Int8);
END_STATE();
case 145:
ACCEPT_TOKEN(anon_sym_Int8);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 146:
ACCEPT_TOKEN(anon_sym_Int16);
END_STATE();
case 147:
ACCEPT_TOKEN(anon_sym_Int16);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 148:
ACCEPT_TOKEN(anon_sym_Int32);
END_STATE();
case 149:
ACCEPT_TOKEN(anon_sym_Int32);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 150:
ACCEPT_TOKEN(anon_sym_Int64);
END_STATE();
case 151:
ACCEPT_TOKEN(anon_sym_Int64);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 152:
ACCEPT_TOKEN(anon_sym_Word8);
END_STATE();
case 153:
ACCEPT_TOKEN(anon_sym_Word8);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 154:
ACCEPT_TOKEN(anon_sym_Word16);
END_STATE();
case 155:
ACCEPT_TOKEN(anon_sym_Word16);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 156:
ACCEPT_TOKEN(anon_sym_Word32);
END_STATE();
case 157:
ACCEPT_TOKEN(anon_sym_Word32);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 158:
ACCEPT_TOKEN(anon_sym_Word64);
END_STATE();
case 159:
ACCEPT_TOKEN(anon_sym_Word64);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 160:
ACCEPT_TOKEN(anon_sym_Bool);
END_STATE();
case 161:
ACCEPT_TOKEN(anon_sym_Bool);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 162:
ACCEPT_TOKEN(anon_sym_Void);
END_STATE();
case 163:
ACCEPT_TOKEN(anon_sym_Void);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 164:
ACCEPT_TOKEN(anon_sym_Float);
END_STATE();
case 165:
ACCEPT_TOKEN(anon_sym_Float);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 166:
ACCEPT_TOKEN(anon_sym_Double);
END_STATE();
case 167:
ACCEPT_TOKEN(anon_sym_Double);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 168:
ACCEPT_TOKEN(anon_sym_String);
if (lookahead == 'M') ADVANCE(219);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 169:
ACCEPT_TOKEN(anon_sym_String);
if (lookahead == 'M') ADVANCE(23);
END_STATE();
case 170:
ACCEPT_TOKEN(anon_sym_Bytes);
END_STATE();
case 171:
ACCEPT_TOKEN(anon_sym_Bytes);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 172:
ACCEPT_TOKEN(anon_sym_Json);
END_STATE();
case 173:
ACCEPT_TOKEN(anon_sym_Json);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 174:
ACCEPT_TOKEN(anon_sym_Vector);
END_STATE();
case 175:
ACCEPT_TOKEN(anon_sym_Vector);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 176:
ACCEPT_TOKEN(anon_sym_StringMap);
END_STATE();
case 177:
ACCEPT_TOKEN(anon_sym_StringMap);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 178:
ACCEPT_TOKEN(anon_sym_Nullable);
END_STATE();
case 179:
ACCEPT_TOKEN(anon_sym_Nullable);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 180:
ACCEPT_TOKEN(anon_sym_TypeToken);
END_STATE();
case 181:
ACCEPT_TOKEN(anon_sym_TypeToken);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 182:
ACCEPT_TOKEN(anon_sym_struct);
END_STATE();
case 183:
ACCEPT_TOKEN(anon_sym_union);
END_STATE();
case 184:
ACCEPT_TOKEN(anon_sym_AT);
END_STATE();
case 185:
ACCEPT_TOKEN(anon_sym_annotation);
END_STATE();
case 186:
ACCEPT_TOKEN(anon_sym_COLON_COLON);
END_STATE();
case 187:
ACCEPT_TOKEN(anon_sym_SLASH_SLASH);
END_STATE();
case 188:
ACCEPT_TOKEN(anon_sym_SLASH_SLASH);
if (lookahead == '/') ADVANCE(193);
END_STATE();
case 189:
ACCEPT_TOKEN(anon_sym_SLASH_SLASH);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(192);
END_STATE();
case 190:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '/') ADVANCE(191);
if (lookahead == '\t' ||
(0x0b <= lookahead && lookahead <= '\r') ||
lookahead == ' ') ADVANCE(190);
if (lookahead != 0 &&
(lookahead < '\t' || '\r' < lookahead)) ADVANCE(192);
END_STATE();
case 191:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '/') ADVANCE(189);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(192);
END_STATE();
case 192:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(192);
END_STATE();
case 193:
ACCEPT_TOKEN(anon_sym_SLASH_SLASH_SLASH);
END_STATE();
case 194:
ACCEPT_TOKEN(anon_sym_null);
END_STATE();
case 195:
ACCEPT_TOKEN(anon_sym_null);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 196:
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 197:
ACCEPT_TOKEN(anon_sym_true);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 198:
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 199:
ACCEPT_TOKEN(anon_sym_false);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 200:
ACCEPT_TOKEN(sym_json_number);
if (lookahead == '.') ADVANCE(122);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(121);
END_STATE();
case 201:
ACCEPT_TOKEN(sym_json_number);
if (lookahead == '.') ADVANCE(122);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(121);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201);
END_STATE();
case 202:
ACCEPT_TOKEN(sym_json_number);
if (lookahead == 'E' ||
lookahead == 'e') ADVANCE(121);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(202);
END_STATE();
case 203:
ACCEPT_TOKEN(sym_json_number);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203);
END_STATE();
case 204:
ACCEPT_TOKEN(sym_json_string);
END_STATE();
case 205:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 206:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 207:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 208:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 209:
ACCEPT_TOKEN(anon_sym_COLON);
if (lookahead == ':') ADVANCE(186);
END_STATE();
case 210:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '1') ADVANCE(216);
if (lookahead == '3') ADVANCE(212);
if (lookahead == '6') ADVANCE(214);
if (lookahead == '8') ADVANCE(145);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 211:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '1') ADVANCE(217);
if (lookahead == '3') ADVANCE(213);
if (lookahead == '6') ADVANCE(215);
if (lookahead == '8') ADVANCE(153);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 212:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '2') ADVANCE(149);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 213:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '2') ADVANCE(157);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 214:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '4') ADVANCE(151);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 215:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '4') ADVANCE(159);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 216:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '6') ADVANCE(147);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 217:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '6') ADVANCE(155);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 218:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'T') ADVANCE(254);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 219:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'a') ADVANCE(261);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 220:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'a') ADVANCE(273);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 221:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'a') ADVANCE(243);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 222:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'a') ADVANCE(224);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 223:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'b') ADVANCE(244);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 224:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'b') ADVANCE(247);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 225:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'c') ADVANCE(274);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 226:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'd') ADVANCE(163);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 227:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'd') ADVANCE(211);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 228:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(225);
if (lookahead == 'o') ADVANCE(237);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 229:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(218);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 230:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(167);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 231:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(179);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 232:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(197);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 233:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(199);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 234:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(267);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 235:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(251);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 236:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'g') ADVANCE(168);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 237:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'i') ADVANCE(226);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 238:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'i') ADVANCE(250);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 239:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'k') ADVANCE(235);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 240:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(161);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 241:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(195);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 242:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(222);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 243:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(269);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 244:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(230);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 245:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(253);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 246:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(242);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 247:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(231);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 248:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(241);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 249:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(173);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 250:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(236);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 251:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(181);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 252:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(272);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 253:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(220);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 254:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(239);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 255:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(249);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 256:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(275);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 257:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(265);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 258:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(259);
if (lookahead == 'y') ADVANCE(271);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 259:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(240);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 260:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'o') ADVANCE(263);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 261:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'p') ADVANCE(177);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 262:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'p') ADVANCE(229);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 263:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'r') ADVANCE(175);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 264:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'r') ADVANCE(238);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 265:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'r') ADVANCE(227);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 266:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'r') ADVANCE(277);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 267:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(171);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 268:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(255);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 269:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(233);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 270:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 't') ADVANCE(264);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 271:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 't') ADVANCE(234);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 272:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 't') ADVANCE(210);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 273:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 't') ADVANCE(165);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 274:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 't') ADVANCE(260);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 275:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'u') ADVANCE(223);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 276:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'u') ADVANCE(246);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 277:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'u') ADVANCE(232);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 278:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'u') ADVANCE(248);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 279:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(262);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
case 280:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(280);
END_STATE();
default:
return false;
}
}
static const TSLexerMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 0},
[2] = {.lex_state = 6},
[3] = {.lex_state = 6},
[4] = {.lex_state = 6},
[5] = {.lex_state = 1},
[6] = {.lex_state = 1},
[7] = {.lex_state = 1},
[8] = {.lex_state = 1},
[9] = {.lex_state = 1},
[10] = {.lex_state = 6},
[11] = {.lex_state = 6},
[12] = {.lex_state = 6},
[13] = {.lex_state = 128},
[14] = {.lex_state = 128},
[15] = {.lex_state = 6},
[16] = {.lex_state = 128},
[17] = {.lex_state = 128},
[18] = {.lex_state = 6},
[19] = {.lex_state = 128},
[20] = {.lex_state = 128},
[21] = {.lex_state = 6},
[22] = {.lex_state = 128},
[23] = {.lex_state = 128},
[24] = {.lex_state = 128},
[25] = {.lex_state = 6},
[26] = {.lex_state = 6},
[27] = {.lex_state = 6},
[28] = {.lex_state = 6},
[29] = {.lex_state = 6},
[30] = {.lex_state = 6},
[31] = {.lex_state = 6},
[32] = {.lex_state = 6},
[33] = {.lex_state = 6},
[34] = {.lex_state = 6},
[35] = {.lex_state = 6},
[36] = {.lex_state = 7},
[37] = {.lex_state = 7},
[38] = {.lex_state = 7},
[39] = {.lex_state = 0},
[40] = {.lex_state = 0},
[41] = {.lex_state = 0},
[42] = {.lex_state = 0},
[43] = {.lex_state = 0},
[44] = {.lex_state = 2},
[45] = {.lex_state = 0},
[46] = {.lex_state = 5},
[47] = {.lex_state = 0},
[48] = {.lex_state = 5},
[49] = {.lex_state = 5},
[50] = {.lex_state = 2},
[51] = {.lex_state = 2},
[52] = {.lex_state = 2},
[53] = {.lex_state = 2},
[54] = {.lex_state = 2},
[55] = {.lex_state = 2},
[56] = {.lex_state = 2},
[57] = {.lex_state = 2},
[58] = {.lex_state = 2},
[59] = {.lex_state = 5},
[60] = {.lex_state = 2},
[61] = {.lex_state = 2},
[62] = {.lex_state = 2},
[63] = {.lex_state = 2},
[64] = {.lex_state = 2},
[65] = {.lex_state = 2},
[66] = {.lex_state = 7},
[67] = {.lex_state = 7},
[68] = {.lex_state = 7},
[69] = {.lex_state = 7},
[70] = {.lex_state = 7},
[71] = {.lex_state = 7},
[72] = {.lex_state = 7},
[73] = {.lex_state = 7},
[74] = {.lex_state = 7},
[75] = {.lex_state = 7},
[76] = {.lex_state = 7},
[77] = {.lex_state = 7},
[78] = {.lex_state = 7},
[79] = {.lex_state = 7},
[80] = {.lex_state = 7},
[81] = {.lex_state = 7},
[82] = {.lex_state = 7},
[83] = {.lex_state = 7},
[84] = {.lex_state = 7},
[85] = {.lex_state = 7},
[86] = {.lex_state = 7},
[87] = {.lex_state = 2},
[88] = {.lex_state = 7},
[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 = 2},
[96] = {.lex_state = 0},
[97] = {.lex_state = 0},
[98] = {.lex_state = 0},
[99] = {.lex_state = 0},
[100] = {.lex_state = 5},
[101] = {.lex_state = 5},
[102] = {.lex_state = 2},
[103] = {.lex_state = 5},
[104] = {.lex_state = 5},
[105] = {.lex_state = 5},
[106] = {.lex_state = 5},
[107] = {.lex_state = 5},
[108] = {.lex_state = 128},
[109] = {.lex_state = 128},
[110] = {.lex_state = 128},
[111] = {.lex_state = 128},
[112] = {.lex_state = 128},
[113] = {.lex_state = 128},
[114] = {.lex_state = 128},
[115] = {.lex_state = 128},
[116] = {.lex_state = 128},
[117] = {.lex_state = 128},
[118] = {.lex_state = 128},
[119] = {.lex_state = 128},
[120] = {.lex_state = 128},
[121] = {.lex_state = 128},
[122] = {.lex_state = 128},
[123] = {.lex_state = 128},
[124] = {.lex_state = 128},
[125] = {.lex_state = 128},
[126] = {.lex_state = 128},
[127] = {.lex_state = 128},
[128] = {.lex_state = 128},
[129] = {.lex_state = 5},
[130] = {.lex_state = 128},
[131] = {.lex_state = 5},
[132] = {.lex_state = 128},
[133] = {.lex_state = 5},
[134] = {.lex_state = 128},
[135] = {.lex_state = 128},
[136] = {.lex_state = 128},
[137] = {.lex_state = 128},
[138] = {.lex_state = 128},
[139] = {.lex_state = 128},
[140] = {.lex_state = 128},
[141] = {.lex_state = 128},
[142] = {.lex_state = 128},
[143] = {.lex_state = 128},
[144] = {.lex_state = 128},
[145] = {.lex_state = 128},
[146] = {.lex_state = 128},
[147] = {.lex_state = 128},
[148] = {.lex_state = 128},
[149] = {.lex_state = 128},
[150] = {.lex_state = 128},
[151] = {.lex_state = 128},
[152] = {.lex_state = 5},
[153] = {.lex_state = 128},
[154] = {.lex_state = 5},
[155] = {.lex_state = 128},
[156] = {.lex_state = 128},
[157] = {.lex_state = 5},
[158] = {.lex_state = 128},
[159] = {.lex_state = 128},
[160] = {.lex_state = 128},
[161] = {.lex_state = 5},
[162] = {.lex_state = 128},
[163] = {.lex_state = 128},
[164] = {.lex_state = 5},
[165] = {.lex_state = 128},
[166] = {.lex_state = 5},
[167] = {.lex_state = 128},
[168] = {.lex_state = 128},
[169] = {.lex_state = 128},
[170] = {.lex_state = 128},
[171] = {.lex_state = 5},
[172] = {.lex_state = 5},
[173] = {.lex_state = 5},
[174] = {.lex_state = 5},
[175] = {.lex_state = 5},
[176] = {.lex_state = 5},
[177] = {.lex_state = 5},
[178] = {.lex_state = 128},
[179] = {.lex_state = 128},
[180] = {.lex_state = 5},
[181] = {.lex_state = 5},
[182] = {.lex_state = 128},
[183] = {.lex_state = 128},
[184] = {.lex_state = 5},
[185] = {.lex_state = 5},
[186] = {.lex_state = 5},
[187] = {.lex_state = 128},
[188] = {.lex_state = 128},
[189] = {.lex_state = 190},
[190] = {.lex_state = 128},
[191] = {.lex_state = 5},
[192] = {.lex_state = 5},
[193] = {.lex_state = 128},
[194] = {.lex_state = 128},
[195] = {.lex_state = 190},
[196] = {.lex_state = 128},
[197] = {.lex_state = 128},
[198] = {.lex_state = 128},
[199] = {.lex_state = 128},
[200] = {.lex_state = 128},
[201] = {.lex_state = 128},
[202] = {.lex_state = 128},
[203] = {.lex_state = 128},
[204] = {.lex_state = 128},
[205] = {.lex_state = 128},
[206] = {.lex_state = 128},
[207] = {.lex_state = 128},
[208] = {.lex_state = 128},
[209] = {.lex_state = 128},
[210] = {.lex_state = 190},
[211] = {.lex_state = 5},
[212] = {.lex_state = 128},
[213] = {.lex_state = 2},
[214] = {.lex_state = 128},
[215] = {.lex_state = 5},
[216] = {.lex_state = 128},
[217] = {.lex_state = 128},
[218] = {.lex_state = 5},
[219] = {.lex_state = 128},
[220] = {.lex_state = 5},
[221] = {.lex_state = 5},
[222] = {.lex_state = 128},
[223] = {.lex_state = 128},
[224] = {.lex_state = 128},
[225] = {.lex_state = 5},
[226] = {.lex_state = 5},
[227] = {(TSStateId)(-1),},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[STATE(0)] = {
[sym_comment] = STATE(0),
[ts_builtin_sym_end] = ACTIONS(1),
[anon_sym_DOT] = ACTIONS(1),
[anon_sym_module] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_import] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_DOT_STAR] = ACTIONS(1),
[anon_sym_type] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_newtype] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_Int8] = ACTIONS(1),
[anon_sym_Int16] = ACTIONS(1),
[anon_sym_Int32] = ACTIONS(1),
[anon_sym_Int64] = ACTIONS(1),
[anon_sym_Word8] = ACTIONS(1),
[anon_sym_Word16] = ACTIONS(1),
[anon_sym_Word32] = ACTIONS(1),
[anon_sym_Word64] = ACTIONS(1),
[anon_sym_Bool] = ACTIONS(1),
[anon_sym_Void] = ACTIONS(1),
[anon_sym_Float] = ACTIONS(1),
[anon_sym_Double] = ACTIONS(1),
[anon_sym_String] = ACTIONS(1),
[anon_sym_Bytes] = ACTIONS(1),
[anon_sym_Json] = ACTIONS(1),
[anon_sym_Vector] = ACTIONS(1),
[anon_sym_StringMap] = ACTIONS(1),
[anon_sym_Nullable] = ACTIONS(1),
[anon_sym_TypeToken] = ACTIONS(1),
[anon_sym_struct] = ACTIONS(1),
[anon_sym_union] = ACTIONS(1),
[anon_sym_AT] = ACTIONS(1),
[anon_sym_annotation] = ACTIONS(1),
[anon_sym_COLON_COLON] = ACTIONS(1),
[anon_sym_SLASH_SLASH] = ACTIONS(3),
[anon_sym_SLASH_SLASH_SLASH] = ACTIONS(1),
[anon_sym_null] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[sym_json_number] = ACTIONS(1),
[sym_json_string] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
},
[STATE(1)] = {
[sym_source_file] = STATE(207),
[sym_definition_preamble] = STATE(213),
[sym_module_definition] = STATE(200),
[sym_annotation] = STATE(90),
[sym_comment] = STATE(1),
[sym_docstring] = STATE(90),
[aux_sym_definition_preamble_repeat1] = STATE(45),
[anon_sym_module] = ACTIONS(5),
[anon_sym_AT] = ACTIONS(7),
[anon_sym_SLASH_SLASH] = ACTIONS(3),
[anon_sym_SLASH_SLASH_SLASH] = ACTIONS(9),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 16,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(11), 1,
anon_sym_RBRACE_SEMI,
ACTIONS(17), 1,
anon_sym_AT,
ACTIONS(19), 1,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(21), 1,
sym_identifier,
STATE(2), 1,
sym_comment,
STATE(4), 1,
aux_sym_field_block_repeat1,
STATE(10), 1,
aux_sym_definition_preamble_repeat1,
STATE(23), 1,
sym_definition_preamble,
STATE(25), 1,
sym_field,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(221), 1,
sym_type_expression,
STATE(26), 2,
sym_annotation,
sym_docstring,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[67] = 16,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(17), 1,
anon_sym_AT,
ACTIONS(19), 1,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(23), 1,
anon_sym_RBRACE_SEMI,
STATE(2), 1,
aux_sym_field_block_repeat1,
STATE(3), 1,
sym_comment,
STATE(10), 1,
aux_sym_definition_preamble_repeat1,
STATE(23), 1,
sym_definition_preamble,
STATE(25), 1,
sym_field,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(221), 1,
sym_type_expression,
STATE(26), 2,
sym_annotation,
sym_docstring,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[134] = 15,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(25), 1,
anon_sym_RBRACE_SEMI,
ACTIONS(33), 1,
anon_sym_AT,
ACTIONS(36), 1,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(39), 1,
sym_identifier,
STATE(10), 1,
aux_sym_definition_preamble_repeat1,
STATE(23), 1,
sym_definition_preamble,
STATE(25), 1,
sym_field,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(221), 1,
sym_type_expression,
STATE(4), 2,
sym_comment,
aux_sym_field_block_repeat1,
STATE(26), 2,
sym_annotation,
sym_docstring,
ACTIONS(30), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(27), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[199] = 10,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(42), 1,
anon_sym_LBRACE,
ACTIONS(52), 1,
anon_sym_LBRACK,
STATE(5), 1,
sym_comment,
STATE(29), 1,
sym_json_value,
ACTIONS(46), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(50), 2,
sym_json_number,
sym_json_string,
STATE(28), 2,
sym_json_array,
sym_json_object,
ACTIONS(48), 3,
anon_sym_null,
anon_sym_true,
anon_sym_false,
ACTIONS(44), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[254] = 5,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(54), 1,
anon_sym_DOT,
STATE(6), 2,
sym_comment,
aux_sym_scoped_name_repeat1,
ACTIONS(57), 6,
anon_sym_LBRACE,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
ACTIONS(59), 23,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_identifier,
[298] = 6,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(61), 1,
anon_sym_DOT,
STATE(7), 1,
sym_comment,
STATE(8), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(63), 6,
anon_sym_LBRACE,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
ACTIONS(65), 23,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_identifier,
[344] = 6,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(61), 1,
anon_sym_DOT,
STATE(6), 1,
aux_sym_scoped_name_repeat1,
STATE(8), 1,
sym_comment,
ACTIONS(67), 6,
anon_sym_LBRACE,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
ACTIONS(69), 23,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_identifier,
[390] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(9), 1,
sym_comment,
ACTIONS(57), 7,
anon_sym_DOT,
anon_sym_LBRACE,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
ACTIONS(59), 23,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_identifier,
[431] = 7,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(17), 1,
anon_sym_AT,
ACTIONS(19), 1,
anon_sym_SLASH_SLASH_SLASH,
STATE(10), 1,
sym_comment,
STATE(11), 1,
aux_sym_definition_preamble_repeat1,
STATE(26), 2,
sym_annotation,
sym_docstring,
ACTIONS(71), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[473] = 6,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(75), 1,
anon_sym_AT,
ACTIONS(78), 1,
anon_sym_SLASH_SLASH_SLASH,
STATE(11), 2,
sym_comment,
aux_sym_definition_preamble_repeat1,
STATE(26), 2,
sym_annotation,
sym_docstring,
ACTIONS(73), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[513] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(12), 1,
sym_comment,
ACTIONS(81), 3,
anon_sym_RBRACE_SEMI,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(83), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[547] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(13), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(151), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[589] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(14), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(127), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[631] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(15), 1,
sym_comment,
ACTIONS(87), 3,
anon_sym_RBRACE_SEMI,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(89), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[665] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(16), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(199), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[707] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(17), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(158), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[749] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(18), 1,
sym_comment,
ACTIONS(91), 3,
anon_sym_RBRACE_SEMI,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(93), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[783] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(19), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(179), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[825] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(20), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(194), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[867] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(21), 1,
sym_comment,
ACTIONS(95), 3,
anon_sym_RBRACE_SEMI,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(97), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[901] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(22), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(222), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[943] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(23), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(191), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[985] = 8,
ACTIONS(21), 1,
sym_identifier,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(24), 1,
sym_comment,
STATE(100), 1,
sym_scoped_name,
STATE(103), 1,
sym_primitive_type,
STATE(169), 1,
sym_type_expression,
ACTIONS(15), 4,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
ACTIONS(13), 15,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
[1027] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(25), 1,
sym_comment,
ACTIONS(99), 3,
anon_sym_RBRACE_SEMI,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(101), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1061] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(26), 1,
sym_comment,
ACTIONS(105), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(103), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1094] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(27), 1,
sym_comment,
ACTIONS(109), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(107), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1127] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(28), 1,
sym_comment,
ACTIONS(113), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(111), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1160] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(29), 1,
sym_comment,
ACTIONS(117), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(115), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1193] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(30), 1,
sym_comment,
ACTIONS(121), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(119), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1226] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(31), 1,
sym_comment,
ACTIONS(125), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(123), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1259] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(32), 1,
sym_comment,
ACTIONS(129), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(127), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1292] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(33), 1,
sym_comment,
ACTIONS(133), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(131), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1325] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(34), 1,
sym_comment,
ACTIONS(137), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(135), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1358] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(35), 1,
sym_comment,
ACTIONS(141), 2,
anon_sym_AT,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(139), 20,
anon_sym_Int8,
anon_sym_Int16,
anon_sym_Int32,
anon_sym_Int64,
anon_sym_Word8,
anon_sym_Word16,
anon_sym_Word32,
anon_sym_Word64,
anon_sym_Bool,
anon_sym_Void,
anon_sym_Float,
anon_sym_Double,
anon_sym_String,
anon_sym_Bytes,
anon_sym_Json,
anon_sym_Vector,
anon_sym_StringMap,
anon_sym_Nullable,
anon_sym_TypeToken,
sym_identifier,
[1391] = 15,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(143), 1,
anon_sym_RBRACE_SEMI,
ACTIONS(145), 1,
anon_sym_import,
ACTIONS(148), 1,
anon_sym_type,
ACTIONS(151), 1,
anon_sym_newtype,
ACTIONS(154), 1,
anon_sym_struct,
ACTIONS(157), 1,
anon_sym_union,
ACTIONS(160), 1,
anon_sym_AT,
ACTIONS(163), 1,
anon_sym_annotation,
ACTIONS(166), 1,
anon_sym_SLASH_SLASH_SLASH,
STATE(45), 1,
aux_sym_definition_preamble_repeat1,
STATE(102), 1,
sym_definition_preamble,
STATE(36), 2,
sym_comment,
aux_sym_module_body_repeat1,
STATE(90), 2,
sym_annotation,
sym_docstring,
STATE(81), 6,
sym_import_declaration,
sym_type_definition,
sym_newtype_definition,
sym_struct_definition,
sym_union_definition,
sym_annotation_declaration,
[1444] = 16,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(7), 1,
anon_sym_AT,
ACTIONS(9), 1,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(169), 1,
anon_sym_RBRACE_SEMI,
ACTIONS(171), 1,
anon_sym_import,
ACTIONS(173), 1,
anon_sym_type,
ACTIONS(175), 1,
anon_sym_newtype,
ACTIONS(177), 1,
anon_sym_struct,
ACTIONS(179), 1,
anon_sym_union,
ACTIONS(181), 1,
anon_sym_annotation,
STATE(37), 1,
sym_comment,
STATE(38), 1,
aux_sym_module_body_repeat1,
STATE(45), 1,
aux_sym_definition_preamble_repeat1,
STATE(102), 1,
sym_definition_preamble,
STATE(90), 2,
sym_annotation,
sym_docstring,
STATE(81), 6,
sym_import_declaration,
sym_type_definition,
sym_newtype_definition,
sym_struct_definition,
sym_union_definition,
sym_annotation_declaration,
[1499] = 16,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(7), 1,
anon_sym_AT,
ACTIONS(9), 1,
anon_sym_SLASH_SLASH_SLASH,
ACTIONS(171), 1,
anon_sym_import,
ACTIONS(173), 1,
anon_sym_type,
ACTIONS(175), 1,
anon_sym_newtype,
ACTIONS(177), 1,
anon_sym_struct,
ACTIONS(179), 1,
anon_sym_union,
ACTIONS(181), 1,
anon_sym_annotation,
ACTIONS(183), 1,
anon_sym_RBRACE_SEMI,
STATE(36), 1,
aux_sym_module_body_repeat1,
STATE(38), 1,
sym_comment,
STATE(45), 1,
aux_sym_definition_preamble_repeat1,
STATE(102), 1,
sym_definition_preamble,
STATE(90), 2,
sym_annotation,
sym_docstring,
STATE(81), 6,
sym_import_declaration,
sym_type_definition,
sym_newtype_definition,
sym_struct_definition,
sym_union_definition,
sym_annotation_declaration,
[1554] = 8,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(185), 1,
anon_sym_LBRACE,
ACTIONS(189), 1,
anon_sym_LBRACK,
STATE(39), 1,
sym_comment,
STATE(98), 1,
sym_json_value,
STATE(92), 2,
sym_json_array,
sym_json_object,
ACTIONS(187), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
ACTIONS(46), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[1591] = 5,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(191), 1,
anon_sym_DOT,
STATE(40), 1,
sym_comment,
STATE(41), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(63), 15,
anon_sym_module,
anon_sym_LBRACE,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[1621] = 5,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(191), 1,
anon_sym_DOT,
STATE(41), 1,
sym_comment,
STATE(42), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(67), 15,
anon_sym_module,
anon_sym_LBRACE,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[1651] = 4,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(193), 1,
anon_sym_DOT,
STATE(42), 2,
sym_comment,
aux_sym_scoped_name_repeat1,
ACTIONS(57), 15,
anon_sym_module,
anon_sym_LBRACE,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[1679] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(43), 1,
sym_comment,
ACTIONS(57), 16,
anon_sym_DOT,
anon_sym_module,
anon_sym_LBRACE,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[1704] = 8,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
ACTIONS(202), 1,
anon_sym_RBRACK,
STATE(44), 1,
sym_comment,
STATE(132), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1734] = 7,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(7), 1,
anon_sym_AT,
ACTIONS(9), 1,
anon_sym_SLASH_SLASH_SLASH,
STATE(45), 1,
sym_comment,
STATE(47), 1,
aux_sym_definition_preamble_repeat1,
STATE(90), 2,
sym_annotation,
sym_docstring,
ACTIONS(204), 6,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_annotation,
[1762] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(206), 1,
anon_sym_DOT,
STATE(46), 1,
sym_comment,
STATE(48), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(63), 9,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DOT_STAR,
anon_sym_EQ,
anon_sym_LT,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_COLON_COLON,
sym_identifier,
[1786] = 6,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(210), 1,
anon_sym_AT,
ACTIONS(213), 1,
anon_sym_SLASH_SLASH_SLASH,
STATE(47), 2,
sym_comment,
aux_sym_definition_preamble_repeat1,
STATE(90), 2,
sym_annotation,
sym_docstring,
ACTIONS(208), 6,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_annotation,
[1812] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(206), 1,
anon_sym_DOT,
STATE(48), 1,
sym_comment,
STATE(49), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(67), 9,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DOT_STAR,
anon_sym_EQ,
anon_sym_LT,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_COLON_COLON,
sym_identifier,
[1836] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(216), 1,
anon_sym_DOT,
STATE(49), 2,
sym_comment,
aux_sym_scoped_name_repeat1,
ACTIONS(57), 9,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DOT_STAR,
anon_sym_EQ,
anon_sym_LT,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_COLON_COLON,
sym_identifier,
[1858] = 8,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
ACTIONS(219), 1,
anon_sym_RBRACK,
STATE(50), 1,
sym_comment,
STATE(142), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1888] = 8,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
ACTIONS(221), 1,
anon_sym_RBRACK,
STATE(51), 1,
sym_comment,
STATE(147), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1918] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(52), 1,
sym_comment,
STATE(190), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1945] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(53), 1,
sym_comment,
STATE(201), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1972] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(54), 1,
sym_comment,
STATE(216), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[1999] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(55), 1,
sym_comment,
STATE(155), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2026] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(56), 1,
sym_comment,
STATE(163), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2053] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(57), 1,
sym_comment,
STATE(196), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2080] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(58), 1,
sym_comment,
STATE(198), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2107] = 4,
ACTIONS(59), 1,
anon_sym_DOT,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(59), 1,
sym_comment,
ACTIONS(57), 9,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DOT_STAR,
anon_sym_EQ,
anon_sym_LT,
anon_sym_COMMA,
anon_sym_GT,
anon_sym_COLON_COLON,
sym_identifier,
[2128] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(60), 1,
sym_comment,
STATE(205), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2155] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(61), 1,
sym_comment,
STATE(203), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2182] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(62), 1,
sym_comment,
STATE(212), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2209] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(196), 1,
anon_sym_LBRACE,
ACTIONS(200), 1,
anon_sym_LBRACK,
STATE(63), 1,
sym_comment,
STATE(219), 1,
sym_json_value,
STATE(111), 2,
sym_json_array,
sym_json_object,
ACTIONS(198), 5,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
[2236] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(223), 1,
anon_sym_DOT,
STATE(64), 1,
sym_comment,
STATE(65), 1,
aux_sym_scoped_name_repeat1,
ACTIONS(67), 7,
anon_sym_LBRACE,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[2258] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(225), 1,
anon_sym_DOT,
STATE(65), 2,
sym_comment,
aux_sym_scoped_name_repeat1,
ACTIONS(57), 7,
anon_sym_LBRACE,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[2278] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(66), 1,
sym_comment,
ACTIONS(228), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2296] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(67), 1,
sym_comment,
ACTIONS(230), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2314] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(68), 1,
sym_comment,
ACTIONS(232), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2332] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(69), 1,
sym_comment,
ACTIONS(234), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2350] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(70), 1,
sym_comment,
ACTIONS(236), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2368] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(71), 1,
sym_comment,
ACTIONS(238), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2386] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(72), 1,
sym_comment,
ACTIONS(240), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2404] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(73), 1,
sym_comment,
ACTIONS(242), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2422] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(74), 1,
sym_comment,
ACTIONS(244), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2440] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(75), 1,
sym_comment,
ACTIONS(246), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2458] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(76), 1,
sym_comment,
ACTIONS(248), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2476] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(77), 1,
sym_comment,
ACTIONS(250), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2494] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(78), 1,
sym_comment,
ACTIONS(252), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2512] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(79), 1,
sym_comment,
ACTIONS(254), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2530] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(80), 1,
sym_comment,
ACTIONS(256), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2548] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(81), 1,
sym_comment,
ACTIONS(258), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2566] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(82), 1,
sym_comment,
ACTIONS(260), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2584] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(83), 1,
sym_comment,
ACTIONS(262), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2602] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(84), 1,
sym_comment,
ACTIONS(264), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2620] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(85), 1,
sym_comment,
ACTIONS(266), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2638] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(86), 1,
sym_comment,
ACTIONS(268), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2656] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(223), 1,
anon_sym_DOT,
STATE(64), 1,
aux_sym_scoped_name_repeat1,
STATE(87), 1,
sym_comment,
ACTIONS(63), 7,
anon_sym_LBRACE,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[2678] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(88), 1,
sym_comment,
ACTIONS(270), 9,
anon_sym_RBRACE_SEMI,
anon_sym_import,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2696] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(89), 1,
sym_comment,
ACTIONS(109), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2713] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(90), 1,
sym_comment,
ACTIONS(105), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2730] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(91), 1,
sym_comment,
ACTIONS(137), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2747] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(92), 1,
sym_comment,
ACTIONS(113), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2764] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(93), 1,
sym_comment,
ACTIONS(141), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2781] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(94), 1,
sym_comment,
ACTIONS(121), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2798] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(95), 1,
sym_comment,
ACTIONS(57), 8,
anon_sym_DOT,
anon_sym_LBRACE,
anon_sym_null,
anon_sym_true,
anon_sym_false,
sym_json_number,
sym_json_string,
anon_sym_LBRACK,
[2815] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(96), 1,
sym_comment,
ACTIONS(125), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2832] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(97), 1,
sym_comment,
ACTIONS(133), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2849] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(98), 1,
sym_comment,
ACTIONS(117), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2866] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
STATE(99), 1,
sym_comment,
ACTIONS(129), 8,
anon_sym_module,
anon_sym_type,
anon_sym_newtype,
anon_sym_struct,
anon_sym_union,
anon_sym_AT,
anon_sym_annotation,
anon_sym_SLASH_SLASH_SLASH,
[2883] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(274), 1,
anon_sym_LT,
STATE(100), 1,
sym_comment,
STATE(104), 1,
sym_type_arguments,
ACTIONS(272), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2903] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(101), 1,
sym_comment,
ACTIONS(276), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2917] = 7,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(278), 1,
anon_sym_type,
ACTIONS(280), 1,
anon_sym_newtype,
ACTIONS(282), 1,
anon_sym_struct,
ACTIONS(284), 1,
anon_sym_union,
ACTIONS(286), 1,
anon_sym_annotation,
STATE(102), 1,
sym_comment,
[2939] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(103), 1,
sym_comment,
ACTIONS(272), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2953] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(104), 1,
sym_comment,
ACTIONS(288), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2967] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(105), 1,
sym_comment,
ACTIONS(290), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2981] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(106), 1,
sym_comment,
ACTIONS(292), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[2995] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(107), 1,
sym_comment,
ACTIONS(294), 5,
anon_sym_SEMI,
anon_sym_EQ,
anon_sym_COMMA,
anon_sym_GT,
sym_identifier,
[3009] = 6,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
ACTIONS(298), 1,
anon_sym_LT,
STATE(69), 1,
sym_field_block,
STATE(108), 1,
sym_comment,
STATE(159), 1,
sym_type_parameters,
[3028] = 6,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
ACTIONS(298), 1,
anon_sym_LT,
STATE(67), 1,
sym_field_block,
STATE(109), 1,
sym_comment,
STATE(162), 1,
sym_type_parameters,
[3047] = 6,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
ACTIONS(298), 1,
anon_sym_LT,
STATE(70), 1,
sym_field_block,
STATE(110), 1,
sym_comment,
STATE(160), 1,
sym_type_parameters,
[3066] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(111), 1,
sym_comment,
ACTIONS(113), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3079] = 6,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
ACTIONS(298), 1,
anon_sym_LT,
STATE(66), 1,
sym_field_block,
STATE(112), 1,
sym_comment,
STATE(153), 1,
sym_type_parameters,
[3098] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(113), 1,
sym_comment,
ACTIONS(121), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3111] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(114), 1,
sym_comment,
ACTIONS(125), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3124] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(115), 1,
sym_comment,
ACTIONS(129), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3137] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(116), 1,
sym_comment,
ACTIONS(133), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3150] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(117), 1,
sym_comment,
ACTIONS(137), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3163] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(118), 1,
sym_comment,
ACTIONS(141), 4,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_RBRACE,
[3176] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(302), 1,
anon_sym_RBRACK,
STATE(119), 1,
sym_comment,
STATE(122), 1,
aux_sym_json_array_repeat1,
[3192] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(298), 1,
anon_sym_LT,
ACTIONS(304), 1,
anon_sym_EQ,
STATE(120), 1,
sym_comment,
STATE(224), 1,
sym_type_parameters,
[3208] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(121), 1,
sym_comment,
ACTIONS(306), 3,
anon_sym_LBRACE,
anon_sym_EQ,
anon_sym_LT,
[3220] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(308), 1,
anon_sym_COMMA,
ACTIONS(311), 1,
anon_sym_RBRACK,
STATE(122), 2,
sym_comment,
aux_sym_json_array_repeat1,
[3234] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(298), 1,
anon_sym_LT,
ACTIONS(313), 1,
anon_sym_EQ,
STATE(123), 1,
sym_comment,
STATE(193), 1,
sym_type_parameters,
[3250] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(298), 1,
anon_sym_LT,
ACTIONS(315), 1,
anon_sym_EQ,
STATE(124), 1,
sym_comment,
STATE(206), 1,
sym_type_parameters,
[3266] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(317), 1,
anon_sym_COMMA,
ACTIONS(320), 1,
anon_sym_GT,
STATE(125), 2,
sym_comment,
aux_sym_type_arguments_repeat1,
[3280] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(322), 1,
anon_sym_RBRACK,
STATE(122), 1,
aux_sym_json_array_repeat1,
STATE(126), 1,
sym_comment,
[3296] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(324), 1,
anon_sym_COMMA,
ACTIONS(326), 1,
anon_sym_GT,
STATE(127), 1,
sym_comment,
STATE(136), 1,
aux_sym_type_arguments_repeat1,
[3312] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(328), 1,
anon_sym_COMMA,
ACTIONS(331), 1,
anon_sym_GT,
STATE(128), 2,
sym_comment,
aux_sym_type_parameters_repeat1,
[3326] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(333), 1,
sym_identifier,
STATE(129), 1,
sym_comment,
STATE(165), 1,
sym_scoped_name,
STATE(214), 1,
sym_import_path,
[3342] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(337), 1,
anon_sym_RBRACE,
STATE(130), 1,
sym_comment,
STATE(140), 1,
aux_sym_json_object_repeat1,
[3358] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(339), 1,
anon_sym_COLON_COLON,
ACTIONS(341), 1,
sym_identifier,
STATE(62), 1,
sym_scoped_name,
STATE(131), 1,
sym_comment,
[3374] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(343), 1,
anon_sym_RBRACK,
STATE(126), 1,
aux_sym_json_array_repeat1,
STATE(132), 1,
sym_comment,
[3390] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(341), 1,
sym_identifier,
ACTIONS(345), 1,
anon_sym_COLON_COLON,
STATE(61), 1,
sym_scoped_name,
STATE(133), 1,
sym_comment,
[3406] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(347), 1,
anon_sym_COMMA,
ACTIONS(349), 1,
anon_sym_GT,
STATE(134), 1,
sym_comment,
STATE(135), 1,
aux_sym_type_parameters_repeat1,
[3422] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(347), 1,
anon_sym_COMMA,
ACTIONS(351), 1,
anon_sym_GT,
STATE(128), 1,
aux_sym_type_parameters_repeat1,
STATE(135), 1,
sym_comment,
[3438] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(324), 1,
anon_sym_COMMA,
ACTIONS(353), 1,
anon_sym_GT,
STATE(125), 1,
aux_sym_type_arguments_repeat1,
STATE(136), 1,
sym_comment,
[3454] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(298), 1,
anon_sym_LT,
ACTIONS(355), 1,
anon_sym_EQ,
STATE(137), 1,
sym_comment,
STATE(208), 1,
sym_type_parameters,
[3470] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(357), 1,
sym_json_string,
ACTIONS(359), 1,
anon_sym_RBRACE,
STATE(130), 1,
sym_json_object_pair,
STATE(138), 1,
sym_comment,
[3486] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(357), 1,
sym_json_string,
ACTIONS(361), 1,
anon_sym_RBRACE,
STATE(139), 1,
sym_comment,
STATE(141), 1,
sym_json_object_pair,
[3502] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(363), 1,
anon_sym_RBRACE,
STATE(140), 1,
sym_comment,
STATE(144), 1,
aux_sym_json_object_repeat1,
[3518] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(365), 1,
anon_sym_RBRACE,
STATE(141), 1,
sym_comment,
STATE(143), 1,
aux_sym_json_object_repeat1,
[3534] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(367), 1,
anon_sym_RBRACK,
STATE(119), 1,
aux_sym_json_array_repeat1,
STATE(142), 1,
sym_comment,
[3550] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(369), 1,
anon_sym_RBRACE,
STATE(143), 1,
sym_comment,
STATE(144), 1,
aux_sym_json_object_repeat1,
[3566] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(371), 1,
anon_sym_COMMA,
ACTIONS(374), 1,
anon_sym_RBRACE,
STATE(144), 2,
sym_comment,
aux_sym_json_object_repeat1,
[3580] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(357), 1,
sym_json_string,
ACTIONS(376), 1,
anon_sym_RBRACE,
STATE(145), 1,
sym_comment,
STATE(146), 1,
sym_json_object_pair,
[3596] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(378), 1,
anon_sym_RBRACE,
STATE(146), 1,
sym_comment,
STATE(148), 1,
aux_sym_json_object_repeat1,
[3612] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(380), 1,
anon_sym_RBRACK,
STATE(147), 1,
sym_comment,
STATE(149), 1,
aux_sym_json_array_repeat1,
[3628] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(335), 1,
anon_sym_COMMA,
ACTIONS(382), 1,
anon_sym_RBRACE,
STATE(144), 1,
aux_sym_json_object_repeat1,
STATE(148), 1,
sym_comment,
[3644] = 5,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(300), 1,
anon_sym_COMMA,
ACTIONS(384), 1,
anon_sym_RBRACK,
STATE(122), 1,
aux_sym_json_array_repeat1,
STATE(149), 1,
sym_comment,
[3660] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(386), 1,
anon_sym_LBRACE,
STATE(150), 1,
sym_comment,
STATE(217), 1,
sym_module_body,
[3673] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(388), 1,
anon_sym_SEMI,
ACTIONS(390), 1,
anon_sym_EQ,
STATE(151), 1,
sym_comment,
[3686] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(109), 1,
sym_type_name,
STATE(152), 1,
sym_comment,
[3699] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
STATE(69), 1,
sym_field_block,
STATE(153), 1,
sym_comment,
[3712] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(333), 1,
sym_identifier,
STATE(133), 1,
sym_scoped_name,
STATE(154), 1,
sym_comment,
[3725] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(155), 1,
sym_comment,
ACTIONS(394), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
[3736] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(156), 1,
sym_comment,
ACTIONS(374), 2,
anon_sym_COMMA,
anon_sym_RBRACE,
[3747] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(341), 1,
sym_identifier,
STATE(60), 1,
sym_scoped_name,
STATE(157), 1,
sym_comment,
[3760] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(158), 1,
sym_comment,
ACTIONS(320), 2,
anon_sym_COMMA,
anon_sym_GT,
[3771] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
STATE(75), 1,
sym_field_block,
STATE(159), 1,
sym_comment,
[3784] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
STATE(76), 1,
sym_field_block,
STATE(160), 1,
sym_comment,
[3797] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(396), 1,
sym_identifier,
STATE(161), 1,
sym_comment,
STATE(180), 1,
sym_field_reference,
[3810] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(296), 1,
anon_sym_LBRACE,
STATE(70), 1,
sym_field_block,
STATE(162), 1,
sym_comment,
[3823] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(163), 1,
sym_comment,
ACTIONS(311), 2,
anon_sym_COMMA,
anon_sym_RBRACK,
[3834] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(396), 1,
sym_identifier,
STATE(157), 1,
sym_field_reference,
STATE(164), 1,
sym_comment,
[3847] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(398), 1,
anon_sym_SEMI,
ACTIONS(400), 1,
anon_sym_DOT_STAR,
STATE(165), 1,
sym_comment,
[3860] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(124), 1,
sym_type_name,
STATE(166), 1,
sym_comment,
[3873] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(274), 1,
anon_sym_LT,
STATE(107), 1,
sym_type_arguments,
STATE(167), 1,
sym_comment,
[3886] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(386), 1,
anon_sym_LBRACE,
STATE(168), 1,
sym_comment,
STATE(209), 1,
sym_module_body,
[3899] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(402), 1,
anon_sym_SEMI,
ACTIONS(404), 1,
anon_sym_EQ,
STATE(169), 1,
sym_comment,
[3912] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(406), 1,
anon_sym_SEMI,
ACTIONS(408), 1,
anon_sym_EQ,
STATE(170), 1,
sym_comment,
[3925] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(333), 1,
sym_identifier,
STATE(168), 1,
sym_scoped_name,
STATE(171), 1,
sym_comment,
[3938] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(137), 1,
sym_type_name,
STATE(172), 1,
sym_comment,
[3951] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(120), 1,
sym_type_name,
STATE(173), 1,
sym_comment,
[3964] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(108), 1,
sym_type_name,
STATE(174), 1,
sym_comment,
[3977] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(110), 1,
sym_type_name,
STATE(175), 1,
sym_comment,
[3990] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(333), 1,
sym_identifier,
STATE(131), 1,
sym_scoped_name,
STATE(176), 1,
sym_comment,
[4003] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(333), 1,
sym_identifier,
STATE(150), 1,
sym_scoped_name,
STATE(177), 1,
sym_comment,
[4016] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(357), 1,
sym_json_string,
STATE(156), 1,
sym_json_object_pair,
STATE(178), 1,
sym_comment,
[4029] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(410), 1,
anon_sym_SEMI,
ACTIONS(412), 1,
anon_sym_EQ,
STATE(179), 1,
sym_comment,
[4042] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(341), 1,
sym_identifier,
STATE(54), 1,
sym_scoped_name,
STATE(180), 1,
sym_comment,
[4055] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(414), 1,
sym_identifier,
STATE(5), 1,
sym_scoped_name,
STATE(181), 1,
sym_comment,
[4068] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(182), 1,
sym_comment,
ACTIONS(331), 2,
anon_sym_COMMA,
anon_sym_GT,
[4079] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(183), 1,
sym_comment,
ACTIONS(416), 2,
anon_sym_LBRACE,
anon_sym_EQ,
[4090] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(112), 1,
sym_type_name,
STATE(184), 1,
sym_comment,
[4103] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(418), 1,
sym_identifier,
STATE(39), 1,
sym_scoped_name,
STATE(185), 1,
sym_comment,
[4116] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(392), 1,
sym_identifier,
STATE(123), 1,
sym_type_name,
STATE(186), 1,
sym_comment,
[4129] = 4,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(420), 1,
anon_sym_SEMI,
ACTIONS(422), 1,
anon_sym_EQ,
STATE(187), 1,
sym_comment,
[4142] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
STATE(188), 1,
sym_comment,
ACTIONS(424), 2,
anon_sym_LBRACE,
anon_sym_EQ,
[4153] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(426), 1,
aux_sym_comment_token1,
STATE(189), 1,
sym_comment,
[4163] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(428), 1,
anon_sym_SEMI,
STATE(190), 1,
sym_comment,
[4173] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(430), 1,
sym_identifier,
STATE(191), 1,
sym_comment,
[4183] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(432), 1,
sym_identifier,
STATE(192), 1,
sym_comment,
[4193] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(355), 1,
anon_sym_EQ,
STATE(193), 1,
sym_comment,
[4203] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(434), 1,
anon_sym_SEMI,
STATE(194), 1,
sym_comment,
[4213] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(436), 1,
aux_sym_comment_token1,
STATE(195), 1,
sym_comment,
[4223] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(438), 1,
anon_sym_SEMI,
STATE(196), 1,
sym_comment,
[4233] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(440), 1,
anon_sym_COLON,
STATE(197), 1,
sym_comment,
[4243] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(442), 1,
anon_sym_SEMI,
STATE(198), 1,
sym_comment,
[4253] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(444), 1,
anon_sym_SEMI,
STATE(199), 1,
sym_comment,
[4263] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(446), 1,
ts_builtin_sym_end,
STATE(200), 1,
sym_comment,
[4273] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(448), 1,
anon_sym_SEMI,
STATE(201), 1,
sym_comment,
[4283] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(450), 1,
ts_builtin_sym_end,
STATE(202), 1,
sym_comment,
[4293] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(452), 1,
anon_sym_SEMI,
STATE(203), 1,
sym_comment,
[4303] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(454), 1,
ts_builtin_sym_end,
STATE(204), 1,
sym_comment,
[4313] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(456), 1,
anon_sym_SEMI,
STATE(205), 1,
sym_comment,
[4323] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(304), 1,
anon_sym_EQ,
STATE(206), 1,
sym_comment,
[4333] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(458), 1,
ts_builtin_sym_end,
STATE(207), 1,
sym_comment,
[4343] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(460), 1,
anon_sym_EQ,
STATE(208), 1,
sym_comment,
[4353] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(462), 1,
ts_builtin_sym_end,
STATE(209), 1,
sym_comment,
[4363] = 3,
ACTIONS(3), 1,
anon_sym_SLASH_SLASH,
ACTIONS(464), 1,
aux_sym_comment_token1,
STATE(210), 1,
sym_comment,
[4373] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(466), 1,
sym_identifier,
STATE(211), 1,
sym_comment,
[4383] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(468), 1,
anon_sym_SEMI,
STATE(212), 1,
sym_comment,
[4393] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(470), 1,
anon_sym_module,
STATE(213), 1,
sym_comment,
[4403] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(472), 1,
anon_sym_SEMI,
STATE(214), 1,
sym_comment,
[4413] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(474), 1,
sym_identifier,
STATE(215), 1,
sym_comment,
[4423] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(476), 1,
anon_sym_SEMI,
STATE(216), 1,
sym_comment,
[4433] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(478), 1,
ts_builtin_sym_end,
STATE(217), 1,
sym_comment,
[4443] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(480), 1,
sym_identifier,
STATE(218), 1,
sym_comment,
[4453] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(388), 1,
anon_sym_SEMI,
STATE(219), 1,
sym_comment,
[4463] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(482), 1,
sym_identifier,
STATE(220), 1,
sym_comment,
[4473] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(484), 1,
sym_identifier,
STATE(221), 1,
sym_comment,
[4483] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(486), 1,
anon_sym_SEMI,
STATE(222), 1,
sym_comment,
[4493] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(488), 1,
anon_sym_SEMI,
STATE(223), 1,
sym_comment,
[4503] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(490), 1,
anon_sym_EQ,
STATE(224), 1,
sym_comment,
[4513] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(492), 1,
sym_identifier,
STATE(225), 1,
sym_comment,
[4523] = 3,
ACTIONS(85), 1,
anon_sym_SLASH_SLASH,
ACTIONS(494), 1,
sym_identifier,
STATE(226), 1,
sym_comment,
[4533] = 1,
ACTIONS(496), 1,
ts_builtin_sym_end,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 67,
[SMALL_STATE(4)] = 134,
[SMALL_STATE(5)] = 199,
[SMALL_STATE(6)] = 254,
[SMALL_STATE(7)] = 298,
[SMALL_STATE(8)] = 344,
[SMALL_STATE(9)] = 390,
[SMALL_STATE(10)] = 431,
[SMALL_STATE(11)] = 473,
[SMALL_STATE(12)] = 513,
[SMALL_STATE(13)] = 547,
[SMALL_STATE(14)] = 589,
[SMALL_STATE(15)] = 631,
[SMALL_STATE(16)] = 665,
[SMALL_STATE(17)] = 707,
[SMALL_STATE(18)] = 749,
[SMALL_STATE(19)] = 783,
[SMALL_STATE(20)] = 825,
[SMALL_STATE(21)] = 867,
[SMALL_STATE(22)] = 901,
[SMALL_STATE(23)] = 943,
[SMALL_STATE(24)] = 985,
[SMALL_STATE(25)] = 1027,
[SMALL_STATE(26)] = 1061,
[SMALL_STATE(27)] = 1094,
[SMALL_STATE(28)] = 1127,
[SMALL_STATE(29)] = 1160,
[SMALL_STATE(30)] = 1193,
[SMALL_STATE(31)] = 1226,
[SMALL_STATE(32)] = 1259,
[SMALL_STATE(33)] = 1292,
[SMALL_STATE(34)] = 1325,
[SMALL_STATE(35)] = 1358,
[SMALL_STATE(36)] = 1391,
[SMALL_STATE(37)] = 1444,
[SMALL_STATE(38)] = 1499,
[SMALL_STATE(39)] = 1554,
[SMALL_STATE(40)] = 1591,
[SMALL_STATE(41)] = 1621,
[SMALL_STATE(42)] = 1651,
[SMALL_STATE(43)] = 1679,
[SMALL_STATE(44)] = 1704,
[SMALL_STATE(45)] = 1734,
[SMALL_STATE(46)] = 1762,
[SMALL_STATE(47)] = 1786,
[SMALL_STATE(48)] = 1812,
[SMALL_STATE(49)] = 1836,
[SMALL_STATE(50)] = 1858,
[SMALL_STATE(51)] = 1888,
[SMALL_STATE(52)] = 1918,
[SMALL_STATE(53)] = 1945,
[SMALL_STATE(54)] = 1972,
[SMALL_STATE(55)] = 1999,
[SMALL_STATE(56)] = 2026,
[SMALL_STATE(57)] = 2053,
[SMALL_STATE(58)] = 2080,
[SMALL_STATE(59)] = 2107,
[SMALL_STATE(60)] = 2128,
[SMALL_STATE(61)] = 2155,
[SMALL_STATE(62)] = 2182,
[SMALL_STATE(63)] = 2209,
[SMALL_STATE(64)] = 2236,
[SMALL_STATE(65)] = 2258,
[SMALL_STATE(66)] = 2278,
[SMALL_STATE(67)] = 2296,
[SMALL_STATE(68)] = 2314,
[SMALL_STATE(69)] = 2332,
[SMALL_STATE(70)] = 2350,
[SMALL_STATE(71)] = 2368,
[SMALL_STATE(72)] = 2386,
[SMALL_STATE(73)] = 2404,
[SMALL_STATE(74)] = 2422,
[SMALL_STATE(75)] = 2440,
[SMALL_STATE(76)] = 2458,
[SMALL_STATE(77)] = 2476,
[SMALL_STATE(78)] = 2494,
[SMALL_STATE(79)] = 2512,
[SMALL_STATE(80)] = 2530,
[SMALL_STATE(81)] = 2548,
[SMALL_STATE(82)] = 2566,
[SMALL_STATE(83)] = 2584,
[SMALL_STATE(84)] = 2602,
[SMALL_STATE(85)] = 2620,
[SMALL_STATE(86)] = 2638,
[SMALL_STATE(87)] = 2656,
[SMALL_STATE(88)] = 2678,
[SMALL_STATE(89)] = 2696,
[SMALL_STATE(90)] = 2713,
[SMALL_STATE(91)] = 2730,
[SMALL_STATE(92)] = 2747,
[SMALL_STATE(93)] = 2764,
[SMALL_STATE(94)] = 2781,
[SMALL_STATE(95)] = 2798,
[SMALL_STATE(96)] = 2815,
[SMALL_STATE(97)] = 2832,
[SMALL_STATE(98)] = 2849,
[SMALL_STATE(99)] = 2866,
[SMALL_STATE(100)] = 2883,
[SMALL_STATE(101)] = 2903,
[SMALL_STATE(102)] = 2917,
[SMALL_STATE(103)] = 2939,
[SMALL_STATE(104)] = 2953,
[SMALL_STATE(105)] = 2967,
[SMALL_STATE(106)] = 2981,
[SMALL_STATE(107)] = 2995,
[SMALL_STATE(108)] = 3009,
[SMALL_STATE(109)] = 3028,
[SMALL_STATE(110)] = 3047,
[SMALL_STATE(111)] = 3066,
[SMALL_STATE(112)] = 3079,
[SMALL_STATE(113)] = 3098,
[SMALL_STATE(114)] = 3111,
[SMALL_STATE(115)] = 3124,
[SMALL_STATE(116)] = 3137,
[SMALL_STATE(117)] = 3150,
[SMALL_STATE(118)] = 3163,
[SMALL_STATE(119)] = 3176,
[SMALL_STATE(120)] = 3192,
[SMALL_STATE(121)] = 3208,
[SMALL_STATE(122)] = 3220,
[SMALL_STATE(123)] = 3234,
[SMALL_STATE(124)] = 3250,
[SMALL_STATE(125)] = 3266,
[SMALL_STATE(126)] = 3280,
[SMALL_STATE(127)] = 3296,
[SMALL_STATE(128)] = 3312,
[SMALL_STATE(129)] = 3326,
[SMALL_STATE(130)] = 3342,
[SMALL_STATE(131)] = 3358,
[SMALL_STATE(132)] = 3374,
[SMALL_STATE(133)] = 3390,
[SMALL_STATE(134)] = 3406,
[SMALL_STATE(135)] = 3422,
[SMALL_STATE(136)] = 3438,
[SMALL_STATE(137)] = 3454,
[SMALL_STATE(138)] = 3470,
[SMALL_STATE(139)] = 3486,
[SMALL_STATE(140)] = 3502,
[SMALL_STATE(141)] = 3518,
[SMALL_STATE(142)] = 3534,
[SMALL_STATE(143)] = 3550,
[SMALL_STATE(144)] = 3566,
[SMALL_STATE(145)] = 3580,
[SMALL_STATE(146)] = 3596,
[SMALL_STATE(147)] = 3612,
[SMALL_STATE(148)] = 3628,
[SMALL_STATE(149)] = 3644,
[SMALL_STATE(150)] = 3660,
[SMALL_STATE(151)] = 3673,
[SMALL_STATE(152)] = 3686,
[SMALL_STATE(153)] = 3699,
[SMALL_STATE(154)] = 3712,
[SMALL_STATE(155)] = 3725,
[SMALL_STATE(156)] = 3736,
[SMALL_STATE(157)] = 3747,
[SMALL_STATE(158)] = 3760,
[SMALL_STATE(159)] = 3771,
[SMALL_STATE(160)] = 3784,
[SMALL_STATE(161)] = 3797,
[SMALL_STATE(162)] = 3810,
[SMALL_STATE(163)] = 3823,
[SMALL_STATE(164)] = 3834,
[SMALL_STATE(165)] = 3847,
[SMALL_STATE(166)] = 3860,
[SMALL_STATE(167)] = 3873,
[SMALL_STATE(168)] = 3886,
[SMALL_STATE(169)] = 3899,
[SMALL_STATE(170)] = 3912,
[SMALL_STATE(171)] = 3925,
[SMALL_STATE(172)] = 3938,
[SMALL_STATE(173)] = 3951,
[SMALL_STATE(174)] = 3964,
[SMALL_STATE(175)] = 3977,
[SMALL_STATE(176)] = 3990,
[SMALL_STATE(177)] = 4003,
[SMALL_STATE(178)] = 4016,
[SMALL_STATE(179)] = 4029,
[SMALL_STATE(180)] = 4042,
[SMALL_STATE(181)] = 4055,
[SMALL_STATE(182)] = 4068,
[SMALL_STATE(183)] = 4079,
[SMALL_STATE(184)] = 4090,
[SMALL_STATE(185)] = 4103,
[SMALL_STATE(186)] = 4116,
[SMALL_STATE(187)] = 4129,
[SMALL_STATE(188)] = 4142,
[SMALL_STATE(189)] = 4153,
[SMALL_STATE(190)] = 4163,
[SMALL_STATE(191)] = 4173,
[SMALL_STATE(192)] = 4183,
[SMALL_STATE(193)] = 4193,
[SMALL_STATE(194)] = 4203,
[SMALL_STATE(195)] = 4213,
[SMALL_STATE(196)] = 4223,
[SMALL_STATE(197)] = 4233,
[SMALL_STATE(198)] = 4243,
[SMALL_STATE(199)] = 4253,
[SMALL_STATE(200)] = 4263,
[SMALL_STATE(201)] = 4273,
[SMALL_STATE(202)] = 4283,
[SMALL_STATE(203)] = 4293,
[SMALL_STATE(204)] = 4303,
[SMALL_STATE(205)] = 4313,
[SMALL_STATE(206)] = 4323,
[SMALL_STATE(207)] = 4333,
[SMALL_STATE(208)] = 4343,
[SMALL_STATE(209)] = 4353,
[SMALL_STATE(210)] = 4363,
[SMALL_STATE(211)] = 4373,
[SMALL_STATE(212)] = 4383,
[SMALL_STATE(213)] = 4393,
[SMALL_STATE(214)] = 4403,
[SMALL_STATE(215)] = 4413,
[SMALL_STATE(216)] = 4423,
[SMALL_STATE(217)] = 4433,
[SMALL_STATE(218)] = 4443,
[SMALL_STATE(219)] = 4453,
[SMALL_STATE(220)] = 4463,
[SMALL_STATE(221)] = 4473,
[SMALL_STATE(222)] = 4483,
[SMALL_STATE(223)] = 4493,
[SMALL_STATE(224)] = 4503,
[SMALL_STATE(225)] = 4513,
[SMALL_STATE(226)] = 4523,
[SMALL_STATE(227)] = 4533,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[25] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0),
[27] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0), SHIFT_REPEAT(106),
[30] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0), SHIFT_REPEAT(167),
[33] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0), SHIFT_REPEAT(181),
[36] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0), SHIFT_REPEAT(210),
[39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_field_block_repeat1, 2, 0, 0), SHIFT_REPEAT(46),
[42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[44] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 2, 0, 0),
[46] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0),
[48] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28),
[50] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0), SHIFT_REPEAT(225),
[57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0),
[59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_name, 1, 0, 0),
[65] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_name, 1, 0, 0),
[67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_name, 2, 0, 0),
[69] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_name, 2, 0, 0),
[71] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_definition_preamble, 1, 0, 0),
[73] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0),
[75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0), SHIFT_REPEAT(181),
[78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0), SHIFT_REPEAT(210),
[81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 4, 0, 0),
[83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field, 4, 0, 0),
[85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 6, 0, 0),
[89] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field, 6, 0, 0),
[91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 3, 0, 0),
[93] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field, 3, 0, 0),
[95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field, 5, 0, 0),
[97] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field, 5, 0, 0),
[99] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_block_repeat1, 1, 0, 0),
[101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_block_repeat1, 1, 0, 0),
[103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_definition_preamble_repeat1, 1, 0, 0),
[105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 1, 0, 0),
[107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_docstring, 2, 0, 0),
[109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_docstring, 2, 0, 0),
[111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_value, 1, 0, 0),
[113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_value, 1, 0, 0),
[115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0),
[117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0),
[119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_object, 2, 0, 0),
[121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_object, 2, 0, 0),
[123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_array, 2, 0, 0),
[125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_array, 2, 0, 0),
[127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_object, 3, 0, 0),
[129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_object, 3, 0, 0),
[131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_array, 3, 0, 0),
[133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_array, 3, 0, 0),
[135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_object, 4, 0, 0),
[137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_object, 4, 0, 0),
[139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_json_array, 4, 0, 0),
[141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_array, 4, 0, 0),
[143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0),
[145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(129),
[148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(186),
[151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(166),
[154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(184),
[157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(152),
[160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(185),
[163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(154),
[166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 2, 0, 0), SHIFT_REPEAT(189),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0), SHIFT_REPEAT(211),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_definition_preamble, 1, 0, 0),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0),
[210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0), SHIFT_REPEAT(185),
[213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_definition_preamble_repeat1, 2, 0, 0), SHIFT_REPEAT(189),
[216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0), SHIFT_REPEAT(220),
[219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_scoped_name_repeat1, 2, 0, 0), SHIFT_REPEAT(218),
[228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 3, 0, 0),
[230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_definition, 3, 0, 0),
[232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_block, 2, 0, 0),
[234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 4, 0, 0),
[236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_definition, 4, 0, 0),
[238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 0),
[240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newtype_definition, 5, 0, 0),
[242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_block, 3, 0, 0),
[244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_declaration, 5, 0, 0),
[246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_definition, 5, 0, 0),
[248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_definition, 5, 0, 0),
[250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 0),
[252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newtype_definition, 6, 0, 0),
[254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_declaration, 6, 0, 0),
[256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newtype_definition, 7, 0, 0),
[258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_body_repeat1, 1, 0, 0),
[260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_declaration, 7, 0, 0),
[262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, 0, 0),
[264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newtype_definition, 8, 0, 0),
[266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_declaration, 8, 0, 0),
[268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_newtype_definition, 9, 0, 0),
[270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 0),
[272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, 0, 0),
[274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0),
[278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, 0, 0),
[290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0),
[292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1, 0, 0),
[294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2, 0, 0),
[296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0),
[308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_array_repeat1, 2, 0, 0), SHIFT_REPEAT(56),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_json_array_repeat1, 2, 0, 0),
[313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(17),
[320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0),
[322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(215),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0),
[333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_object_repeat1, 2, 0, 0), SHIFT_REPEAT(178),
[374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_json_object_repeat1, 2, 0, 0),
[376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_object_pair, 3, 0, 0),
[396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 1, 0, 0),
[400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0),
[426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_reference, 1, 0, 0),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 3, 0, 0),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_body, 2, 0, 0),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[458] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 4, 0, 0),
[464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 3, 0, 0),
[480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 2, 0, 0),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef TREE_SITTER_HIDE_SYMBOLS
#define TS_PUBLIC
#elif defined(_WIN32)
#define TS_PUBLIC __declspec(dllexport)
#else
#define TS_PUBLIC __attribute__((visibility("default")))
#endif
TS_PUBLIC const TSLanguage *tree_sitter_adl(void) {
static const TSLanguage language = {
.abi_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,
.supertype_count = SUPERTYPE_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = (const void*)ts_lex_modes,
.lex_fn = ts_lex,
.primary_state_ids = ts_primary_state_ids,
.name = "adl",
.max_reserved_word_set_size = 0,
.metadata = {
.major_version = 0,
.minor_version = 4,
.patch_version = 1,
},
};
return &language;
}
#ifdef __cplusplus
}
#endif