diff --git a/grammar.js b/grammar.js index 2427c7eb..9f1339b7 100644 --- a/grammar.js +++ b/grammar.js @@ -21,7 +21,7 @@ const unicodeValue = unicodeChar, letter = choice(unicodeLetter, '_'), - newline = '\n', + newline = /\n/, terminator = choice(newline, ';'), hexDigit = /[0-9a-fA-F]/, diff --git a/src/grammar.json b/src/grammar.json index b4c3da91..a30bd00e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -18,8 +18,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -43,8 +43,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -188,8 +188,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -257,8 +257,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -392,8 +392,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -970,8 +970,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -1377,8 +1377,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -1400,8 +1400,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -1563,8 +1563,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -1586,8 +1586,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -1989,8 +1989,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", @@ -2015,8 +2015,8 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\n" }, { "type": "STRING", diff --git a/src/node-types.json b/src/node-types.json index ff2c4d85..10ac2934 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2503,10 +2503,6 @@ } } }, - { - "type": "\n", - "named": false - }, { "type": "!", "named": false diff --git a/src/parser.c b/src/parser.c index 28c987fa..210b6c83 100644 --- a/src/parser.c +++ b/src/parser.c @@ -18,7 +18,7 @@ enum { sym_identifier = 1, - anon_sym_LF = 2, + aux_sym_source_file_token1 = 2, anon_sym_SEMI = 3, anon_sym_package = 4, anon_sym_import = 5, @@ -236,7 +236,7 @@ enum { static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_identifier] = "identifier", - [anon_sym_LF] = "\n", + [aux_sym_source_file_token1] = "source_file_token1", [anon_sym_SEMI] = ";", [anon_sym_package] = "package", [anon_sym_import] = "import", @@ -454,7 +454,7 @@ static const char * const ts_symbol_names[] = { static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, [sym_identifier] = sym_identifier, - [anon_sym_LF] = anon_sym_LF, + [aux_sym_source_file_token1] = aux_sym_source_file_token1, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_package] = anon_sym_package, [anon_sym_import] = anon_sym_import, @@ -678,8 +678,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LF] = { - .visible = true, + [aux_sym_source_file_token1] = { + .visible = false, .named = false, }, [anon_sym_SEMI] = { @@ -5468,7 +5468,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_LF); + ACCEPT_TOKEN(aux_sym_source_file_token1); if (lookahead == '\n') ADVANCE(60); END_STATE(); case 61: @@ -10319,7 +10319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(260), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, STATE(240), 2, sym_parameter_list, sym__simple_type, @@ -10399,7 +10399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(288), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, STATE(239), 2, sym_parameter_list, sym__simple_type, @@ -10567,7 +10567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(292), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, STATE(242), 2, sym_parameter_list, sym__simple_type, @@ -11170,7 +11170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(342), 1, sym_identifier, ACTIONS(344), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(348), 1, anon_sym_LPAREN, ACTIONS(350), 1, @@ -11269,7 +11269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_qualified_type, ACTIONS(366), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, STATE(262), 2, sym_parameter_list, sym__simple_type, @@ -27035,7 +27035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_arguments, ACTIONS(618), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(620), 44, anon_sym_SEMI, anon_sym_package, @@ -27085,7 +27085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(631), 1, anon_sym_DOT, ACTIONS(634), 1, @@ -27145,7 +27145,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(631), 1, anon_sym_DOT, ACTIONS(634), 1, @@ -27210,7 +27210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(646), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(648), 44, anon_sym_SEMI, anon_sym_package, @@ -27265,7 +27265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(650), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(652), 44, anon_sym_SEMI, anon_sym_package, @@ -27320,7 +27320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_arguments, ACTIONS(654), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(656), 44, anon_sym_SEMI, anon_sym_package, @@ -27375,7 +27375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_block, ACTIONS(661), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(663), 44, anon_sym_SEMI, anon_sym_package, @@ -27426,7 +27426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(665), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(667), 45, anon_sym_SEMI, anon_sym_package, @@ -27478,7 +27478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(669), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(671), 45, anon_sym_SEMI, anon_sym_package, @@ -27530,7 +27530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(673), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(675), 45, anon_sym_SEMI, anon_sym_package, @@ -27582,7 +27582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(677), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(679), 45, anon_sym_SEMI, anon_sym_package, @@ -27635,7 +27635,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(681), 1, ts_builtin_sym_end, ACTIONS(685), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(687), 1, anon_sym_SEMI, ACTIONS(683), 44, @@ -27688,7 +27688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(690), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(692), 45, anon_sym_SEMI, anon_sym_package, @@ -27740,7 +27740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(694), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(696), 45, anon_sym_SEMI, anon_sym_package, @@ -27792,7 +27792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(698), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(700), 45, anon_sym_SEMI, anon_sym_package, @@ -27844,7 +27844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(702), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(704), 45, anon_sym_SEMI, anon_sym_package, @@ -27896,7 +27896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(706), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(708), 45, anon_sym_SEMI, anon_sym_package, @@ -27948,7 +27948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(654), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(656), 45, anon_sym_SEMI, anon_sym_package, @@ -28000,7 +28000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(710), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(712), 45, anon_sym_SEMI, anon_sym_package, @@ -28052,7 +28052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(714), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(716), 45, anon_sym_SEMI, anon_sym_package, @@ -28104,7 +28104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(718), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(720), 45, anon_sym_SEMI, anon_sym_package, @@ -28156,7 +28156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(722), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(724), 45, anon_sym_SEMI, anon_sym_package, @@ -28208,7 +28208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(726), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, @@ -28260,7 +28260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(730), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(732), 45, anon_sym_SEMI, anon_sym_package, @@ -28312,7 +28312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(734), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(736), 45, anon_sym_SEMI, anon_sym_package, @@ -28364,7 +28364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(738), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(740), 45, anon_sym_SEMI, anon_sym_package, @@ -28416,7 +28416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(742), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(744), 45, anon_sym_SEMI, anon_sym_package, @@ -28468,7 +28468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(746), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(748), 45, anon_sym_SEMI, anon_sym_package, @@ -28520,7 +28520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(750), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(752), 45, anon_sym_SEMI, anon_sym_package, @@ -28571,7 +28571,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(631), 1, anon_sym_DOT, ACTIONS(634), 1, @@ -28630,7 +28630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(754), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(756), 45, anon_sym_SEMI, anon_sym_package, @@ -28682,7 +28682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(758), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(760), 45, anon_sym_SEMI, anon_sym_package, @@ -28734,7 +28734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(762), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(764), 45, anon_sym_SEMI, anon_sym_package, @@ -28786,7 +28786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(766), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(768), 45, anon_sym_SEMI, anon_sym_package, @@ -28838,7 +28838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(770), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(772), 45, anon_sym_SEMI, anon_sym_package, @@ -28890,7 +28890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(774), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(776), 45, anon_sym_SEMI, anon_sym_package, @@ -28942,7 +28942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(778), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(780), 45, anon_sym_SEMI, anon_sym_package, @@ -28994,7 +28994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(782), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(784), 45, anon_sym_SEMI, anon_sym_package, @@ -29046,7 +29046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(786), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(788), 45, anon_sym_SEMI, anon_sym_package, @@ -29098,7 +29098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(790), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(792), 45, anon_sym_SEMI, anon_sym_package, @@ -29150,7 +29150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(794), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(796), 45, anon_sym_SEMI, anon_sym_package, @@ -29202,7 +29202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(798), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(800), 45, anon_sym_SEMI, anon_sym_package, @@ -29254,7 +29254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(802), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(804), 45, anon_sym_SEMI, anon_sym_package, @@ -29306,7 +29306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(806), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(808), 45, anon_sym_SEMI, anon_sym_package, @@ -29358,7 +29358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(810), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(812), 45, anon_sym_SEMI, anon_sym_package, @@ -29410,7 +29410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(814), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(816), 45, anon_sym_SEMI, anon_sym_package, @@ -29462,7 +29462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(726), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, @@ -29513,7 +29513,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(818), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(822), 1, anon_sym_DOT, ACTIONS(824), 1, @@ -29582,7 +29582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(726), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 45, anon_sym_SEMI, anon_sym_package, @@ -29634,7 +29634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(848), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(850), 45, anon_sym_SEMI, anon_sym_package, @@ -29686,7 +29686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(852), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(854), 45, anon_sym_SEMI, anon_sym_package, @@ -29810,7 +29810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(885), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(887), 45, anon_sym_SEMI, anon_sym_package, @@ -29862,7 +29862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(889), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(891), 45, anon_sym_SEMI, anon_sym_package, @@ -29914,7 +29914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(893), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(895), 45, anon_sym_SEMI, anon_sym_package, @@ -29966,7 +29966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(897), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(899), 45, anon_sym_SEMI, anon_sym_package, @@ -30018,7 +30018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(901), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(903), 45, anon_sym_SEMI, anon_sym_package, @@ -30070,7 +30070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(905), 2, ts_builtin_sym_end, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(907), 45, anon_sym_SEMI, anon_sym_package, @@ -30127,7 +30127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(830), 1, anon_sym_LBRACK, ACTIONS(909), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30185,7 +30185,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(844), 1, anon_sym_AMP_AMP, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30243,7 +30243,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(830), 1, anon_sym_LBRACK, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30302,7 +30302,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(830), 1, anon_sym_LBRACK, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30360,7 +30360,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(830), 1, anon_sym_LBRACK, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30468,7 +30468,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(830), 1, anon_sym_LBRACK, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(322), 1, sym_argument_list, STATE(1180), 1, @@ -30518,7 +30518,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(802), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(804), 44, anon_sym_SEMI, anon_sym_DOT, @@ -30637,7 +30637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(947), 1, anon_sym_LPAREN, STATE(322), 1, @@ -30689,7 +30689,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(722), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(724), 44, anon_sym_SEMI, anon_sym_DOT, @@ -30808,7 +30808,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(949), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(951), 43, anon_sym_SEMI, anon_sym_DOT, @@ -30857,7 +30857,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(953), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(955), 43, anon_sym_SEMI, anon_sym_DOT, @@ -30906,7 +30906,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(957), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(959), 43, anon_sym_SEMI, anon_sym_DOT, @@ -30955,7 +30955,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(750), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(752), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31004,7 +31004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(961), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(963), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31053,7 +31053,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(965), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(967), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31102,7 +31102,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(969), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(971), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31151,7 +31151,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(973), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(975), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31200,7 +31200,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(977), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(979), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31249,7 +31249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(981), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(983), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31298,7 +31298,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(985), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(987), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31347,7 +31347,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(989), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(991), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31396,7 +31396,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(993), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(995), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31445,7 +31445,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(997), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(999), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31494,7 +31494,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(629), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31543,7 +31543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1001), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1003), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31592,7 +31592,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1005), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1007), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31641,7 +31641,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1009), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1011), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31757,7 +31757,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1017), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1019), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31806,7 +31806,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1021), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1023), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31855,7 +31855,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1025), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1027), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31904,7 +31904,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1029), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1031), 43, anon_sym_SEMI, anon_sym_DOT, @@ -31953,7 +31953,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1033), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1035), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32002,7 +32002,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1037), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1039), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32051,7 +32051,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1041), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1043), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32100,7 +32100,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1045), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1047), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32149,7 +32149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1049), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1051), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32198,7 +32198,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1053), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1055), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32247,7 +32247,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1057), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1059), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32296,7 +32296,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1061), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1063), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32345,7 +32345,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(690), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(692), 43, anon_sym_SEMI, anon_sym_DOT, @@ -32394,7 +32394,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1065), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1067), 43, anon_sym_SEMI, anon_sym_DOT, @@ -37819,7 +37819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(631), 1, anon_sym_DOT, ACTIONS(634), 1, @@ -38001,7 +38001,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(933), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38051,7 +38051,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1146), 1, sym_identifier, ACTIONS(1148), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1152), 1, anon_sym_DOT, ACTIONS(1154), 1, @@ -38104,7 +38104,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38147,7 +38147,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38229,7 +38229,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38323,7 +38323,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(366), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1146), 1, sym_identifier, ACTIONS(1158), 1, @@ -38383,7 +38383,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(881), 1, anon_sym_chan, ACTIONS(1208), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1212), 1, anon_sym_LPAREN, ACTIONS(1214), 1, @@ -38422,7 +38422,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1094), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38467,7 +38467,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38533,7 +38533,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1222), 1, anon_sym_LT_DASH, ACTIONS(1224), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1228), 1, anon_sym_EQ, STATE(476), 1, @@ -38562,7 +38562,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(913), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38602,7 +38602,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(909), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1128), 1, anon_sym_DOT, ACTIONS(1130), 1, @@ -38773,7 +38773,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1232), 1, anon_sym_LPAREN, STATE(536), 1, @@ -38819,7 +38819,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1144), 1, anon_sym_PIPE_PIPE, ACTIONS(1234), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(536), 1, sym_argument_list, STATE(1156), 1, @@ -38902,7 +38902,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1144), 1, anon_sym_PIPE_PIPE, ACTIONS(1238), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(536), 1, sym_argument_list, STATE(1156), 1, @@ -38946,7 +38946,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1144), 1, anon_sym_PIPE_PIPE, ACTIONS(1242), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(536), 1, sym_argument_list, STATE(1156), 1, @@ -39110,7 +39110,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(965), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(967), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39191,7 +39191,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1009), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1011), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39224,7 +39224,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1033), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1035), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39307,7 +39307,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1061), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1063), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39340,7 +39340,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1057), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1059), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39373,7 +39373,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1053), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1055), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39406,7 +39406,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(722), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(724), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39439,7 +39439,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(985), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(987), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39556,7 +39556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1045), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1047), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39637,7 +39637,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1041), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1043), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39670,7 +39670,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(802), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(804), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39703,7 +39703,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1025), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1027), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39736,7 +39736,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(953), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(955), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39857,7 +39857,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1049), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1051), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39938,7 +39938,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1017), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1019), 27, anon_sym_SEMI, anon_sym_DOT, @@ -39971,7 +39971,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1065), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1067), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40004,7 +40004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1029), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1031), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40085,7 +40085,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1001), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1003), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40118,7 +40118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(997), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(999), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40151,7 +40151,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(993), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(995), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40232,7 +40232,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(989), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(991), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40312,7 +40312,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(973), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(975), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40380,7 +40380,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(961), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(963), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40413,7 +40413,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(981), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(983), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40446,7 +40446,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(969), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(971), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40479,7 +40479,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(957), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(959), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40512,7 +40512,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1037), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1039), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40545,7 +40545,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1021), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1023), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40578,7 +40578,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(949), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(951), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40611,7 +40611,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(977), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(979), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40692,7 +40692,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1005), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1007), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40725,7 +40725,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(750), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(752), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40758,7 +40758,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(690), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(692), 27, anon_sym_SEMI, anon_sym_DOT, @@ -40791,7 +40791,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(627), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(629), 27, anon_sym_SEMI, anon_sym_DOT, @@ -44299,7 +44299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1206), 1, anon_sym_LPAREN, ACTIONS(1473), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(778), 1, sym_qualified_type, ACTIONS(1475), 2, @@ -48889,7 +48889,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(694), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(696), 17, anon_sym_SEMI, anon_sym_LPAREN, @@ -48912,7 +48912,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(673), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(675), 17, anon_sym_SEMI, anon_sym_LPAREN, @@ -48935,7 +48935,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(702), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(704), 17, anon_sym_SEMI, anon_sym_LPAREN, @@ -48958,7 +48958,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1613), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1615), 1, anon_sym_COMMA, STATE(747), 1, @@ -48983,7 +48983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(677), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(679), 17, anon_sym_SEMI, anon_sym_LPAREN, @@ -49006,7 +49006,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1613), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1611), 16, anon_sym_SEMI, anon_sym_LPAREN, @@ -49588,7 +49588,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(618), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1152), 1, anon_sym_DOT, ACTIONS(1682), 1, @@ -49639,7 +49639,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(654), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1682), 1, anon_sym_LBRACK, STATE(800), 1, @@ -49809,7 +49809,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(770), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(772), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49823,7 +49823,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(794), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(796), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49852,7 +49852,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(710), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(712), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49866,7 +49866,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(901), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(903), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49880,7 +49880,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(889), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(891), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49894,7 +49894,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(698), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(700), 8, anon_sym_SEMI, anon_sym_EQ, @@ -49924,7 +49924,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(893), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(895), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49937,7 +49937,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(762), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(764), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49950,7 +49950,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(665), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(667), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49963,7 +49963,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(790), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(792), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49976,7 +49976,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(848), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(850), 7, anon_sym_SEMI, anon_sym_EQ, @@ -49989,7 +49989,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(766), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(768), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50002,7 +50002,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(726), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50015,7 +50015,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(738), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(740), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50028,7 +50028,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(742), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(744), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50041,7 +50041,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(905), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(907), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50054,7 +50054,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(897), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(899), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50079,7 +50079,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(754), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(756), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50092,7 +50092,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(758), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(760), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50105,7 +50105,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(726), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50118,7 +50118,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(726), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(728), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50131,7 +50131,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(814), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(816), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50144,7 +50144,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(654), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(656), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50157,7 +50157,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(810), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(812), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50170,7 +50170,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(786), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(788), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50183,7 +50183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(774), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(776), 7, anon_sym_SEMI, anon_sym_EQ, @@ -50262,7 +50262,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1094), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1745), 1, anon_sym_COMMA, STATE(822), 1, @@ -50322,7 +50322,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1132), 1, anon_sym_COMMA, ACTIONS(1621), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(822), 1, aux_sym_expression_list_repeat1, ACTIONS(1748), 4, @@ -50393,7 +50393,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1206), 1, anon_sym_LPAREN, ACTIONS(1750), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1754), 1, anon_sym_PIPE, STATE(628), 1, @@ -50420,7 +50420,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1756), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1760), 1, sym_raw_string_literal, STATE(1111), 1, @@ -50570,7 +50570,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1774), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1778), 1, anon_sym_else, ACTIONS(1776), 4, @@ -50582,7 +50582,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1780), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1782), 1, anon_sym_SEMI, STATE(859), 1, @@ -50713,7 +50713,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1811), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1813), 1, anon_sym_SEMI, STATE(866), 1, @@ -50741,7 +50741,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1817), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1821), 1, sym_raw_string_literal, STATE(1034), 1, @@ -50792,7 +50792,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1833), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1837), 1, anon_sym_EQ, ACTIONS(1835), 4, @@ -50804,7 +50804,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1839), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1842), 1, anon_sym_SEMI, STATE(866), 1, @@ -50831,7 +50831,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1847), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1851), 1, sym_raw_string_literal, STATE(1097), 1, @@ -50845,7 +50845,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1853), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1857), 1, sym_raw_string_literal, STATE(1037), 1, @@ -50859,7 +50859,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1853), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1859), 1, sym_raw_string_literal, STATE(1033), 1, @@ -50886,7 +50886,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1869), 1, sym_identifier, ACTIONS(1871), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1873), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -50898,7 +50898,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1875), 1, sym_identifier, ACTIONS(1877), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1879), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -50921,7 +50921,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1883), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1887), 1, anon_sym_EQ, ACTIONS(1885), 4, @@ -50946,7 +50946,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1891), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1895), 1, anon_sym_else, ACTIONS(1893), 4, @@ -50960,7 +50960,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1176), 1, anon_sym_DQUOTE, ACTIONS(1897), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1901), 1, sym_raw_string_literal, STATE(1098), 1, @@ -50983,7 +50983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1905), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1907), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -50993,7 +50993,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1909), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1911), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51015,7 +51015,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1918), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1920), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51038,7 +51038,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1922), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1924), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51048,7 +51048,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1926), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1928), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51058,7 +51058,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1930), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1932), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51068,7 +51068,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1934), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1936), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51078,7 +51078,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1938), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1942), 1, anon_sym_PIPE, STATE(889), 1, @@ -51103,7 +51103,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1951), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1955), 1, anon_sym_PIPE, STATE(891), 1, @@ -51115,7 +51115,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1958), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1960), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51125,7 +51125,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1962), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1964), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51135,7 +51135,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1966), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1968), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51158,7 +51158,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1972), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1974), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51181,7 +51181,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1978), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1980), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51203,7 +51203,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(818), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(820), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51213,7 +51213,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1986), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1988), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51249,7 +51249,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1994), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1996), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51259,7 +51259,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1998), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2000), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51269,7 +51269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2002), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2004), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51279,7 +51279,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2006), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2008), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51289,7 +51289,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2010), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1845), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51299,7 +51299,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2012), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2014), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51309,7 +51309,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2016), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2018), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51319,7 +51319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2020), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2024), 1, anon_sym_PIPE, STATE(891), 1, @@ -51331,7 +51331,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2026), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2028), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51366,7 +51366,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2034), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2038), 1, anon_sym_PIPE, STATE(889), 1, @@ -51391,7 +51391,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2040), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2042), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51401,7 +51401,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2044), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2046), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51411,7 +51411,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2048), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2050), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51421,7 +51421,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2052), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2054), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51431,7 +51431,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2056), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2058), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51441,7 +51441,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2060), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2062), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51451,7 +51451,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2064), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2066), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51476,7 +51476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2024), 1, anon_sym_PIPE, ACTIONS(2070), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(911), 1, aux_sym_constraint_elem_repeat1, ACTIONS(2072), 2, @@ -51486,7 +51486,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2074), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2076), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51498,7 +51498,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2038), 1, anon_sym_PIPE, ACTIONS(2078), 1, - anon_sym_LF, + aux_sym_source_file_token1, STATE(915), 1, aux_sym_struct_elem_repeat1, ACTIONS(2080), 2, @@ -51508,7 +51508,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2082), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2084), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51543,7 +51543,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2090), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2092), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51553,7 +51553,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2094), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2096), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51563,7 +51563,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2098), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2100), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51573,7 +51573,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2102), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2104), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51583,7 +51583,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2106), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2108), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51593,7 +51593,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2110), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2112), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51603,7 +51603,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2114), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2116), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51613,7 +51613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2118), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2120), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51623,7 +51623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2122), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2124), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51633,7 +51633,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2126), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2128), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51643,7 +51643,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2130), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2132), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51653,7 +51653,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2134), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2136), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51663,7 +51663,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2138), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2140), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51673,7 +51673,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2142), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2144), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51683,7 +51683,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2146), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2148), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51732,7 +51732,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2156), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2158), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51742,7 +51742,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2160), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2162), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51765,7 +51765,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2166), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2168), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51775,7 +51775,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2170), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2172), 4, anon_sym_SEMI, anon_sym_RBRACE, @@ -51795,7 +51795,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2178), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2181), 1, anon_sym_SEMI, ACTIONS(2184), 1, @@ -51827,7 +51827,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2196), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2198), 1, anon_sym_SEMI, ACTIONS(2200), 1, @@ -51849,7 +51849,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2208), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2210), 1, anon_sym_SEMI, ACTIONS(2212), 1, @@ -51892,7 +51892,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2226), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2228), 1, anon_sym_SEMI, ACTIONS(2230), 1, @@ -51914,7 +51914,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2237), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2239), 1, anon_sym_SEMI, ACTIONS(2241), 1, @@ -51936,7 +51936,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2247), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2249), 1, anon_sym_SEMI, ACTIONS(2251), 1, @@ -51968,7 +51968,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2255), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2257), 1, anon_sym_SEMI, ACTIONS(2259), 1, @@ -52020,7 +52020,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2271), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2273), 1, anon_sym_SEMI, ACTIONS(2275), 1, @@ -52042,7 +52042,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2282), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2284), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52081,7 +52081,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1938), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1940), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52090,7 +52090,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2293), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2295), 1, anon_sym_SEMI, ACTIONS(2297), 1, @@ -52112,7 +52112,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2303), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2305), 1, anon_sym_SEMI, ACTIONS(2307), 1, @@ -52134,7 +52134,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2313), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2315), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52143,7 +52143,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2317), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2319), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52184,7 +52184,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2332), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2334), 1, anon_sym_SEMI, ACTIONS(2336), 1, @@ -52195,7 +52195,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2338), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2340), 1, anon_sym_SEMI, ACTIONS(2342), 1, @@ -52227,7 +52227,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2352), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2354), 1, anon_sym_SEMI, ACTIONS(2356), 1, @@ -52278,7 +52278,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2368), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2371), 1, anon_sym_SEMI, ACTIONS(2374), 1, @@ -52310,7 +52310,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2382), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1754), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52319,7 +52319,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(1951), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(1953), 3, anon_sym_SEMI, anon_sym_RBRACE, @@ -52365,7 +52365,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2392), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52514,7 +52514,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2431), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2433), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52556,7 +52556,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2392), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52564,7 +52564,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2449), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2451), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52590,7 +52590,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2392), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52623,7 +52623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2392), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2394), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52941,7 +52941,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2511), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2374), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -52949,7 +52949,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2513), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2515), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53052,7 +53052,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2545), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2184), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53114,7 +53114,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2555), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2557), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53122,7 +53122,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2559), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2561), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53220,7 +53220,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2580), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2582), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53237,7 +53237,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2586), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2588), 2, anon_sym_SEMI, anon_sym_RBRACE, @@ -53376,14 +53376,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(852), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(854), 1, anon_sym_SEMI, [54533] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(730), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(732), 1, anon_sym_SEMI, [54543] = 3, @@ -53429,14 +53429,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2608), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2610), 1, anon_sym_SEMI, [54607] = 3, ACTIONS(286), 1, sym_comment, ACTIONS(685), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2612), 1, anon_sym_SEMI, [54617] = 3, @@ -53450,7 +53450,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(782), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(784), 1, anon_sym_SEMI, [54637] = 2, @@ -53539,7 +53539,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2630), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2632), 1, anon_sym_SEMI, [54763] = 3, @@ -53636,7 +53636,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2650), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2652), 1, anon_sym_SEMI, [54901] = 2, @@ -53693,7 +53693,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(286), 1, sym_comment, ACTIONS(2664), 1, - anon_sym_LF, + aux_sym_source_file_token1, ACTIONS(2666), 1, anon_sym_SEMI, [54979] = 2,